Advertisement
thisisthepastebinuse

Dragon's Dogma m+kb hotkeys

Jan 19th, 2016
5,807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #SingleInstance Force
  2. #IfWinActive ahk_exe DDDA.exe
  3.  
  4. F9::ExitApp ; F9 will close the script
  5.  
  6. /*
  7. The hotkeys will work only if Dragon's Dogma window is active. If none of the hotkeys work, you need to run the ahk as admin.
  8. Control+Alt+F will enable borderless fullscreen (run the game in windowed mode before using this hotkey)
  9. Control+M will minimize the window
  10. F5 will save your game
  11. M will open your map
  12. C will open your equipment
  13. J will open your quest log
  14. Clicking the middle mouse button will send an F key press. Useful for archers.
  15. 4th mouse button will open your inventory
  16. 5th mouse button will press hotkey 5 (it's where I have my lantern)
  17. */
  18.  
  19. /*
  20. How do I use this?
  21. 1. Install https://autohotkey.com/
  22. 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is.
  23. 3. Double click the ahk file
  24. 4. Run the game and use whatever hotkeys you want
  25. */
  26.  
  27. ^!f::
  28. {
  29.     WinSet, Style, -0x800000 ; hide thin-line border
  30.     WinSet, Style, -0x400000 ; hide dialog frame
  31.     WinMove, , , 0, 0, A_ScreenWidth, A_ScreenHeight
  32. }
  33. return
  34.  
  35. ^m::WinMinimize
  36.  
  37. F5::
  38.     SendInput {Escape}
  39.     Sleep 404
  40.     SendInput i
  41.     Sleep 303
  42.     SendInput {Enter}
  43. return
  44.  
  45. m::
  46.     SendInput {Escape}
  47.     Sleep 404
  48.     SendInput {Enter}
  49. return
  50.  
  51. c::
  52.     SendInput {Escape}
  53.     Sleep 404
  54.     SendInput {Right}
  55.     Sleep 111
  56.     SendInput {Enter}
  57. return
  58.  
  59. j::
  60.     SendInput {Escape}
  61.     Sleep 404
  62.     SendInput {Left}
  63.     Sleep 111
  64.     SendInput {Enter}
  65. return
  66.  
  67. MButton::F ; Delete this line if you don't want the middle mouse button hotkey
  68.  
  69. XButton1::5 ; 4th mouse button
  70.  
  71. XButton2::I ; 5th mouse button
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement