Hey, i'm working on a script that will be repeating certain functions over and over for the majority of the time. To throw in some variety i'd like to have little anti bans go off in between the various repeating steps.
For ex
Simba Code:
MMouse(622, 228,Random(15),Random(20));
//antiban ( goes off at a rate of 1 in 50 times or so)
wait(10+Random(5));
ClickMouse2(mouse_left);
//antiban
wait(10+Random(5));
MMouse(163, 66,Random(19),Random(12));
ClickMouse2(mouse_right)
//antiban
wait(10+Random(5));
P07_ChooseOptionMulti(['all']);
So would there be a way to make these go off randomly and not anywhere near every loop time? Id like them to go off at different spots because if it hit at the same time over and over it would be counterproductive, but having it go off at each spot during one random loop would also hurt it.
Does this even make sense, and would anyone know how to do this?