Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.44 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ~$*1::     ;This makes the hotkey, so 1 triggers the script
  2. Loop                 ;loop the script untill broken
  3. { ;loop start
  4.     GetKeyState 1, P ;Get the state of 1
  5.     Send {N}  ;It hasnt been released so send another Click
  6.     Send {O}
  7.     Send {O}
  8.     Send {N}
  9.     Send {G}
  10.     Send {A}
  11.     Send {Enter}
  12.     sleep 1   ; This is the time between presses, after its slept it will return to the top of the loop and start again
  13. } ;loop end