Advertisement
tabnation

game commonds ?s

Mar 3rd, 2021
2,733
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. ;rap fire
  2.  
  3. F12::suspend
  4.  
  5. ;~LButton::
  6. while GetKeyState("LButton")
  7. {
  8. Click, Down
  9. Sleep, 100
  10. }
  11. Click, up
  12. return
  13.  
  14.  
  15.  
  16. ;other auto click 2
  17. toggle := 0
  18.  
  19. f1::toggle := !toggle
  20.  
  21. ; v1
  22. ;~LButton::
  23. while (toggle && GetKeyState("LButton", "P"))
  24. {
  25. Click
  26. Sleep, 100
  27. }
  28. return
  29.  
  30.  
  31.  
  32. ;~*LButton::
  33. send {w down}
  34. return
  35.  
  36. ;~*LButton Up::
  37. msgbox, hi
  38. return
  39.  
  40.  
  41. ; hold click down
  42. ;Lbutton::
  43. toggle:=!toggle
  44. if toggle=1
  45. {
  46. click , ,down
  47. }
  48. else
  49. {
  50. click, , up
  51. }
  52. return
  53.  
  54.  
  55.  
  56.  
  57. ;do not do this
  58. ;Lbutton::
  59. toggle:=!toggle
  60. if toggle=1
  61. {
  62. loop
  63. {
  64. click
  65. sleep 500
  66. }
  67. }
  68. else
  69. {
  70. reload
  71. }
  72. return
  73.  
  74.  
  75.  
  76. ;contral menus
  77. f4::
  78. send {tab}
  79. MouseMove, 515, 88
  80. click
  81. send ^v
  82. click
  83. MouseMove, 611, 15
  84. click
  85. return
  86.  
  87.  
  88.  
  89. ;check if another key pressed
  90. 1::
  91. state := GetKeyState("Capslock", "T")
  92. if state = 1
  93. {
  94. msgbox, pressed
  95. return
  96. }
  97. msgbox, not pressed
  98. return
  99.  
  100.  
  101. ;timer
  102. F5::
  103. SetTimer, doaclick, 20000
  104. return
  105.  
  106. ; Stop the popup timer.
  107. F2::
  108. SetTimer, doaclick, Off
  109. return
  110.  
  111. doaclick:
  112. click
  113. return
  114.  
  115. ;#Persistent
  116. ;#InstallKeybdHook
  117. ;#InstallMouseHook
  118. ;vk41::
  119.  
  120.  
  121.  
  122. ;window mode
  123. ;game ban
  124. ;check out most common game commands
  125. ;check out reddit page
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement