Hi all, I trimmed some fat off a few wait timers. Will it increase my risk to get banned much? The script runs fine and the game keeps up with it (no unresponded clicks due to reduced timers).
I changed this:
to this:Code:if BankScreen then begin Wait(RandomRange(200, 300)); DepositAll; Withdraw(1, 0, 14); Wait(RandomRange(200, 300)); Withdraw(0, 0, 14); Wait(RandomRange(200, 300)); CloseBank; Wait(RandomRange(500, 700)); end; end; procedure Mix; begin InvMouse(14, 3); ClickMouse2(True); Wait(RandomRange(600, 700)); InvMouse(15, 3); ClickMouse2(True);
Code:if BankScreen then begin Wait(RandomRange(50, 100)); DepositAll; Withdraw(1, 0, 14); Wait(RandomRange(70, 130)); Withdraw(0, 0, 14); Wait(RandomRange(70, 130)); CloseBank; Wait(RandomRange(50, 100)); end; end; procedure Mix; begin InvMouse(14, 3); ClickMouse2(True); Wait(RandomRange(50, 100)); InvMouse(15, 3); ClickMouse2(True);


Reply With Quote








