sosaited
Joined: 24 Feb 2005 Posts: 233
|
Posted: Sat Apr 30, 2005 11:50 am Post subject: |
|
|
you could use RANDOM command to generate a random number (from 15 to 20 ) or whatever you want something like this:
| Code: | Loop
{
Random, v_minutes, 15, 20 ; set this to minimum value and max value
v_msec := (v_minutes*60*1000)
Sleep, %v_msec%
MouseClick,...... ; MouseClick
} |
|
|