#SingleInstance Force #IfWinActive ahk_exe DDDA.exe   F9::ExitApp ; F9 will close the script   /* 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. Control+Alt+F will enable borderless fullscreen (run the game in windowed mode before using this hotkey) Control+M will minimize the window F5 will save your game M will open your map C will open your equipment J will open your quest log Clicking the middle mouse button will send an F key press. Useful for archers. 4th mouse button will open your inventory 5th mouse button will press hotkey 5 (it's where I have my lantern) */   /* How do I use this? 1. Install https://autohotkey.com/ 2. Save this paste as "name.ahk". The name of the file is not important, but the .ahk extension is. 3. Double click the ahk file 4. Run the game and use whatever hotkeys you want */   ^!f:: {     WinSet, Style, -0x800000 ; hide thin-line border     WinSet, Style, -0x400000 ; hide dialog frame     WinMove, , , 0, 0, A_ScreenWidth, A_ScreenHeight } return   ^m::WinMinimize   F5::     SendInput {Escape}     Sleep 404     SendInput i     Sleep 303     SendInput {Enter} return   m::     SendInput {Escape}     Sleep 404     SendInput {Enter} return   c::     SendInput {Escape}     Sleep 404     SendInput {Right}     Sleep 111     SendInput {Enter} return   j::     SendInput {Escape}     Sleep 404     SendInput {Left}     Sleep 111     SendInput {Enter} return   MButton::F ; Delete this line if you don't want the middle mouse button hotkey   XButton1::5 ; 4th mouse button   XButton2::I ; 5th mouse button