Advertisement
Guest User

Script - Jump/ Join Server

a guest
Aug 20th, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ; #Warn  ; Enable warnings to assist with detecting common errors.
  3. SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
  5.  
  6. SetTimer, Press9, 100 ; Change '9' into any KEY you want. 100milliseconds = 0.1 seconds, value 1000 = 1 second.
  7. return
  8.  
  9. Press9:
  10.  Send 9 ; Literally presses 9 indefinitely. IF you used a LETTER, surround it with curly brackets. For example: Send {d}
  11. return
  12.  
  13. Esc::ExitApp ; Press the escape key to exit the script.
  14.  
  15. ; - If you think this shit is sketchy you should do some research first. These are basic scripts with AHK which press the specified key indefinitely.
  16. ; --> How to play MilkChoco on PC: https://youtu.be/JserdJDtyMg
  17. ; --> Download APowerMirror: https://www.apowersoft.com/phone-mirror
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement