edit 20160718: Improved the bot & made it available on github. Check this: more info.
######################################
Q: so what do you do in your leisure time?
A: i play games
Q: wtf man, you are a grown up!
A: actually it is just an free-to-play idle-game
Q: this is even worse. you find satisfaction in collecting money and distributing upgrades and waiting for them to arrive in dribs and drabs?
A: actually i wrote a clicker-bot to gain 1 million-clicks-achivement xD
game: url
intention:
* interruptible, because from time to time I have to change the playlist on that system; ends after 10h because system will suspend then itself; click-rate is highest possible without “input overflow”
* improvable by “just pause the function instead of interrupting the whole execution”
script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
HotKeySet("+v", "captureV") HotKeySet("{F5}", "quit") ; brief: interupts and exits script Func quit() Exit EndFunc ; brief: if caps+v is pressed, then emit 360000 LMB-clicks at the current position Func captureV() ; 10 hours of clicking For $i = 0 To 360000 Step 1 MouseClick("left") Sleep(100) Next EndFunc ; body While 1 Sleep(100) WEnd |
Leave a Reply
You must be logged in to post a comment.