SCAR Code:
procedure SetRetaliateMode;
begin
if not (LoggedIn) then exit;
gametab(1);
if GetColor(610,390) = 1908610 then exit else mouse(610+random(20),390+random(10),0,0,true);
end;
end;
SCAR Code:
procedure SetRetaliateMode;
begin
if not (LoggedIn) then exit;
gametab(1);
if GetColor(610,390) = 1908610 then
exit
else
mouse(610+random(20),390+random(10),0,0,true);
//end; you had this end too much.
end;
you had an end too much Camo.
ps: This s why standarts are important, it makes you see where something has gone wrong easier.
~RM