I would like to create a script, within a given coordinate space, a "box", and the script randomly selects a coordinate within that box, and clicks with the left button.
That would be the idea, but it doesn't work:
if_not 202, 30 3355443 wait 1000 set #random_x random 560 597 set #random_y random 512 594 mouse_left #random_x #random_y wait 1000 end_if
I want to avoid always clicking in the same place, if condition X happens, is this possible?
|