Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;Script made by kpmaxo.
- Gui, Show , w250 h230, Wallhop AHK
- Gui, Font, s10
- 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.
- Gui, Font, s12
- Gui, Add, Text, x10 y60 w120 Center,Press this button to activate the script.
- Gui, Add, Button, x150 y62 w90 h60 vActivate gActivateThingy,Activate AHK
- Gui, Add, Text, x10 y150 w120 Center,Press this button to deactivate the script.
- Gui, Add, Button, x150 y155 w90 h60 vDeactivate gDeactivateThingy,Deactivate AHK
- return
- ActivateThingy:
- Hotkey, e, MyLabel, On ;Edit Numpad5 to be whatever key you want. Search "ahk keys" to see all the keys.
- Return
- DeactivateThingy:
- Hotkey, e, Off ;Edit Numpad5 to be whatever key you want. Search "ahk keys" to see all the keys.
- Return
- MyLabel:
- MouseGetPos, x, y
- MouseMove, x-700, y
- return
- GuiClose:
- ExitApp
- ;Stop script with key (if the script breaks or something)
- Numpad4::
- ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement