Advertisement
PhyscoKillerMonkey

Robocraft Right Click Toggle

Jul 12th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #SingleInstance Force
  3.  
  4. #IfWinActive, RobocraftClient
  5. {
  6. XButton2::
  7. Sleep 100
  8. GetKeyState, state, RButton
  9. If state = U
  10. Send {RButton down}
  11. Else
  12. Send {RButton up}
  13. Return
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement