Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  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. #IfWinActive ahk_exe NGUIdle.exe
  15.  
  16. SC029::
  17. Send {Left}
  18. Sleep 50
  19. Send {Right}
  20. Return
  21.  
  22. p::
  23. Send {a Down}
  24. Sleep 50
  25. Click
  26. Sleep 50
  27. Send {a Up}
  28. Return
  29.  
  30. $Left::
  31. Send {Ctrl Down}
  32. Sleep 50
  33. Click
  34. Sleep 50
  35. Send {Ctrl Up}
  36. Return
  37.  
  38. MButton::d
  39.  
  40. XButton1::
  41. Send {Left}
  42. Sleep 50
  43. Send {Right}
  44. Return
  45.  
  46. $+a::
  47. MouseGetPos, XAxis, YAxis
  48. Sleep 10
  49. Click 338, 226
  50. Sleep 10
  51. MouseMove %XAxis%, %YAxis%, 0
  52. Return
  53.  
  54. $+b::
  55. MouseGetPos, XAxis, YAxis
  56. Sleep 10
  57. Click 338, 266
  58. Sleep 10
  59. MouseMove %XAxis%, %YAxis%, 0
  60. Return
  61.  
  62. $^q::
  63. MouseGetPos, XAxis, YAxis
  64. Sleep 10
  65. Click Right 1109, 337
  66. Sleep 10
  67. MouseMove %XAxis%, %YAxis%, 0
  68. Return
  69.  
  70. $^d::
  71. MouseGetPos, XAxis, YAxis
  72. Sleep 10
  73. Click Right 1416, 336
  74. Sleep 10
  75. MouseMove %XAxis%, %YAxis%, 0
  76. Return
  77.  
  78.  
  79. $+q::Left
  80. $+d::Right
  81.  
  82. a::q
  83. q::a
  84. z::w
  85. w::z
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement