Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. IdleClickerState := 0
  2.  
  3. while (1) {
  4. if (Mod(IdleClickerState, 2) == 0) {
  5. SetControlDelay -1
  6. ControlClick,, BlueStacks,,WheelUp,3,NA
  7. }
  8. Sleep 5000
  9. }
  10.  
  11. ;Ctrl-D will activate or deactivate this script, it is activated by default
  12. ^D::
  13. if (Mod(++IdleClickerState, 2) == 0)
  14. MsgBox Activated, you can go afk now. If the window keeps getting focussed, minimize BlueStacks or reload this script.
  15. else
  16. MsgBox Deactivated
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement