|
Post by truckiefd on Jul 23, 2016 9:08:25 GMT
To accept gifts.... too many to do manually.
Script needs to:
Upon start of script, delay 30 seconds... to give time to open gift area.
Then click in exact spot ( blank code will suffice, I'll enter x and y) 2000 times at 1 second intervals.
This will allow opening of 1000 gifts
|
|
Kako
Contributors
Posts: 105
|
Post by Kako on Jul 23, 2016 14:46:34 GMT
Well, that would be something like sleep(30)
for i=0, 2000 do click(Location(200, 300)) sleep(1) end A bit of searching around on this forum and some Lua websites would have gotten you that within minutes... Also, take a look at tinotk's Auto Clicker
|
|