Sounds good mate. What you could do to reduce the chance of that anti-ban being called is go to the Antiban procedure itself (line 818 I believe?) and modify the part where it calls "CheckMovingObjs", it should look like this:
Simba Code:
6..14:
begin
CheckMovingObjs(True);
Result := True;
end;
Keep the 6, but change the 14 to maybe..10? Anything above 6 but lower than 15. Also, whatever you change that second number to, be sure to modify the anti-ban below it. As you see how it is now:
Simba Code:
6..14:
begin
CheckMovingObjs(True);
Result := True;
end;
15..300:
begin
Wait(RandomRange(250, 350));
Exit;
end;
So if you changed the 14 to 10 you'd also need to change the 15 to 11, get what I'm saying?
Simba Code:
6..10:
begin
CheckMovingObjs(True);
Result := True;
end;
11..300:
begin
Wait(RandomRange(250, 350));
Exit;
end;