Advertisement
Guest User

Untitled

a guest
Mar 29th, 2022
3,149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. ;Script made by kpmaxo.
  2.  
  3. Gui, Show , w250 h230, Wallhop AHK
  4.  
  5. Gui, Font, s10
  6. Gui, Add, Text, x5 y10 w240 Center, Script made by kpmaxo. To change what key you press to wall hop, edit the script where it says Numpad5.
  7. Gui, Font, s12
  8. Gui, Add, Text, x10 y60 w120 Center,Press this button to activate the script.
  9. Gui, Add, Button, x150 y62 w90 h60 vActivate gActivateThingy,Activate AHK
  10. Gui, Add, Text, x10 y150 w120 Center,Press this button to deactivate the script.
  11. Gui, Add, Button, x150 y155 w90 h60 vDeactivate gDeactivateThingy,Deactivate AHK
  12. return
  13.  
  14. ActivateThingy:
  15. Hotkey, e, MyLabel, On ;Edit Numpad5 to be whatever key you want. Search "ahk keys" to see all the keys.
  16. Return
  17.  
  18. DeactivateThingy:
  19. Hotkey, e, Off ;Edit Numpad5 to be whatever key you want. Search "ahk keys" to see all the keys.
  20. Return
  21.  
  22. MyLabel:
  23. MouseGetPos, x, y
  24. MouseMove, x-700, y
  25. return
  26.  
  27. GuiClose:
  28. ExitApp
  29.  
  30. ;Stop script with key (if the script breaks or something)
  31. Numpad4::
  32. ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement