I'm currently working on an Auto fighter script. It will be my first script that will be public...(other ones were just simple auto talker/casters).
anyways I have a problem with my procedure
SCAR Code:Procedure Fight;
var
x,y : Integer;
InFight : boolean;
begin
repeat
if FindObjCustom(x,y,[CreatureName],[CreatureColor1],10) then
begin
AntiBan;
AntiRandoms;
Mouse(x,y,5,5,False);
if IsUpText(CreatureName) then
begin
ChooseOption('ttack');
repeat
Wait(800 + random(200));
until(InFight = False);
end;
end;
end;
[Error] (16284:1): Identifier expected in script
the error is on the last end; line
Here is the rest of the script but it is far from complete
also any suggestions would be great



Reply With Quote







