SCAR Code:
procedure RandomAntiban;
begin
if (Random(100) < 10) then begin
FindNormalRandoms;
i := Random(10);
case i of
1: Wait(1000+Random(1000));
2: PickUpMouse;
3: HoverSkill('random', False);
4: HoverSkill('magic', False);
5: ClickNorth(true);
6: SleepAndMoveMouse(2000 + random(1000));
end;
end;
end;
SCAR Code:
procedure RandomAntiban;
begin
case random(100) of
1: Wait(1000+Random(1000));
2: PickUpMouse;
3: HoverSkill('random', False);
4: HoverSkill('magic', False);
5: ClickNorth(true);
6: SleepAndMoveMouse(2000 + random(1000));
end;
end;
then you can take out the "i" variable will add more suggestions