problem is, i want it to do antiban everytime it kills the NPC 3 times.
and than after another 3 it will repeat the antiban and so on.
for some reason when it kills 2 it will do antiban and than kill another and do a other antiban on the 3rd 1 it killed instead of the 2nd.
what do i need to do
Code:
SCAR Code:Killed:= Killed+ 1;
begin
if Killed > 2 then
case Random(3) of
0: WhileFight;
1: MyAntiBan;
2: ChangeMouseSpeed;
end;
do i have to do this instead:
SCAR Code:Killed:= Killed+ 1;
begin
if Killed > 2 then
Killed :=0;
case Random(3) of
0: WhileFight;
1: MyAntiBan;
2: ChangeMouseSpeed;
end;
thanks.





Reply With Quote


