Simba Code:
case random(100) of
begin
0..10: begin
mouseOffClient(OFF_CLIENT_RANDOM);
wait(randomRange(18000, 27000));
walkbank();
end;
end;
declares a case statement with 100 cases
says the the following routines are to be done in cases 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, and 10 out of 100 (10% chance)
(you could also do single numbers, like 1: 2: or 3: )
and then we just stick your antiban inside that case, and boom it only runs 10% of the time
the other 90% (which would be 11..100: ) is never specificed, so if the case random(100) happens to land on something outside of 0..10, it'll just skip the entire thing