
Originally Posted by
Gruntzer
first of all
thank you for the tremendous effort that you are doing to upkeep this amazing work
after trying the script for around an hour, I had to shut it down, there is a suspicious delay that occurs between actions, such as, when it jumps from one platform to another it has a bot like delay, it just sits there for few seconds before it goes for the next platform obstacle, solving this issue would make this script/bot and easy 10/10
That sounds like the anti-ban is initiating some AFK or losing focus. The output box in Simba should say if that's the case. If the anti-ban is occurring too frequently for your preference then you could change that at, I believe, line 92:
Simba Code:
procedure TScript.SetupAntiban();
begin
Antiban.Skills += ERSSKILL.AGILITY;
Antiban.AddTask((ONE_MINUTE*1), @Mouse.RandomMovement);
Antiban.AddTask((ONE_MINUTE*6), @Antiban.RandomRotate);
Antiban.AddTask((ONE_MINUTE*5), @Self.DoLoseFocus);
Antiban.AddTask((ONE_MINUTE*5), @Antiban.HoverMSNPCs);
Antiban.AddTask((ONE_MINUTE*4), @Antiban.HoverMSPlayers);
Antiban.AddTask((ONE_MINUTE*20), @Antiban.HoverSkills);
Antiban.AddBreak(ONE_MINUTE*25, ONE_SECOND*40, 0.2, 0.0);
if BREAKAFTER <> '' then
Antiban.AddBreak(ONE_MINUTE*StrToInt(BREAKAFTER),ONE_MINUTE*StrToInt(BREAKFOR), 0.2, 1.0);
end;