Advertisement
ProjectXsent

DMC3SE Mouse.ahk

May 2nd, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | Gaming | 0 0
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. ;#Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5. #HotkeyInterval 100 ; Set Hot Key Interval very low, to not get any warnings due to high Hot Key presses
  6. #MaxHotkeysPerInterval 99999 ; Set Max Hot Keys Per Interval very high, to not get any warnings due to high Hot Key presses
  7.  
  8. ; -----------------------------------------------------------------------------------------------------------
  9. ; Devil May Cry 3 Special Edition - Keyboard + Mouse Mapping
  10. ; -----------------------------------------------------------------------------------------------------------
  11.  
  12. ; replaced button::original key
  13.  
  14. LButton::i ; [LMB] Melee Attack (Triangle)
  15. RButton::j ; [RMB] Gun Attack (Square)
  16. MButton::l ; [MMB] Special Attack/Style (Circle)
  17. Space::k ; [Space] Jump (Cross)
  18. Shift::space ; [Shift] Lock On (R1)
  19. q::Left ; [Q] Rotate Camera to the Left (R.Analog Left)
  20. e::Right ; [E] Rotate Camera to the Right (R.Analog Right)
  21. r::q ; [R] Switch Guns (R1)
  22. f::e ; [F] Switch Devil Arms (R2)
  23. Tab::o ; [Tab] Change Target (L3)
  24. x::n ; [X] Devil Trigger (L1)
  25. t::m ; [T] Taunt (Select)
  26. c::p ; [C] Reset Camera (R3)
  27.  
  28. ; [Shift] + [WASD] + [Space] Slide
  29.  
  30. p::LButton ; [P] Left Mouse Button; In case you need your mouse
  31. Pause::Suspend ; [Pause] Suspends the script. Pressing it again will unsuspend.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement