;Very very basic Bing Rewards AutoHotkey Auto Clicking Script ;This is for use with clicking the related images links ;AutoHotkey: http://q.gs/67WBw ;Please read the user's tutorial before implementing this script q & p:: ;when you press and p together Loop 30 ;the script will loop thirty times (= 15 clicks) { Click ;clicks where ever the mouse is currently at Sleep, 30000 ;the script then rests for 30 seconds before repeating ;you can edit this to whatever you want, where 1000 = 1 second } return ;the script then ends ;make sure once you have done all the clicks, you exit AutoHotkey ;as the q button will not work until you do ;Happy earning!