Advertisement
Dweeb

Dragon's Dogma misc AHK keybinds

Feb 2nd, 2016
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. #SingleInstance Force
  2. #IfWinActive ahk_exe DDDA.exe
  3.  
  4. F5::Suspend
  5. F6::ExitApp
  6. ;Pressing F5 will pause the script
  7. ;Pressing F6 will close the script
  8.  
  9. ;Clicking the middle mouse button will loose a normal arrow when you're in your secondary weapon's skills
  10. ;M will open your map
  11. ;C will open your equipment
  12. ;J will open your quest log
  13.  
  14. MButton::F
  15.  
  16. m::
  17. Send {Escape}
  18. Sleep 350
  19. Send {Enter}
  20. return
  21.  
  22. c::
  23. Send {Escape}
  24. Sleep 350
  25. Send {Right}
  26. Sleep 100
  27. Send {Enter}
  28. return
  29.  
  30. j::
  31. Send {Escape}
  32. Sleep 350
  33. Send {Left}
  34. Sleep 100
  35. Send {Enter}
  36. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement