Guest User

Untitled

a guest
Aug 10th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;
  2. ; AutoHotkey Version: 1.x
  3. ; Language:       English
  4. ; Platform:       Win9x/NT
  5. ; Author:         A.N.Other <myemail@nowhere.com>
  6. ;
  7. ; Script Function:
  8. ;   Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
  9. ;
  10.  
  11. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  12. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  13. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  14.  
  15. aktiv = false
  16.  
  17. ^!s::
  18. aktiv = true
  19.  
  20.  
  21. while aktiv = true
  22. {
  23.     Click 901, 713
  24.     Send lol,{Enter}
  25.     Sleep 500
  26.     Click 918, 601
  27.     Sleep 30000
  28.     Click 928, 657
  29.     Sleep 500
  30. }
  31.  
  32. return
Add Comment
Please, Sign In to add comment