Advertisement
Guest User

Terraria sticky mouseDown AutoHotKey ahk

a guest
Dec 26th, 2012
423
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; keys for Terraria to simulate MouseDown and mouseUp
  2.  
  3. SetTitleMatchMode, 1
  4. if WinActive( "Terraria: ") {
  5.  
  6.    PgDn::
  7.    NumpadAdd::
  8.      SendInput {LButton down}
  9.      Return
  10.  
  11.    PgUp::
  12.    NumpadSub::
  13.      SendInput {LButton up}
  14.      Return
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement