Advertisement
Guest User

Fallout4.ahk

a guest
Nov 11th, 2015
7,910
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 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.  
  6. #IfWinActive, ahk_class Fallout4
  7.  
  8. /*
  9. ; Default controls
  10. w::w ; Forward
  11. s::s ; Back
  12. a::a ; Strafe Left
  13. d::d ; Strafe Right
  14. LButton::LButton ; Attack
  15. RButton::RButton ; Aim/Block
  16. ~Alt::Alt ; Bash/Powerattack/Grenade
  17. e::e ; Activate
  18. r::r ; Reload
  19. Tab::Tab ; Pip-boy
  20. MButton::MButton ; Change POV/Workshop
  21. v::v ; Change POV/Workshop (bis)
  22. Space::Space ; Jump
  23. ~Shift::Shift ; Sprint
  24. q::q ; VATS
  25. LCtrl::LCtrl ; Sneak
  26. c::c ; Run/Walk
  27. CapsLock::CapsLock ; Toggle Run/Walk
  28. x::x ; Automove
  29. f::f ; Favorites
  30. F5::F5 ; Quicksave
  31. F9::F9 ; Quickload
  32. Esc::Esc ; Pause
  33. k::k ; Stats
  34. i::i ; Inventory
  35. j::j ; Data
  36. m::m ; Map
  37. o::o ; Radio
  38. */
  39.  
  40.  
  41. ; Default Azerty controls
  42. z::w ; Forward
  43. s::s ; Back
  44. q::a ; Strafe Left
  45. d::d ; Strafe Right
  46. LButton::LButton ; Attack
  47. RButton::RButton ; Aim/Block
  48. ~Alt::Alt ; Bash/Powerattack/Grenade
  49. e::e ; Activate
  50. r::r ; Reload
  51. Tab::Tab ; Pip-boy
  52. MButton::MButton ; Change POV/Workshop
  53. v::v ; Change POV/Workshop (bis)
  54. Space::Space ; Jump
  55. ~Shift::Shift ; Sprint
  56. a::q ; VATS
  57. LCtrl::LCtrl ; Sneak
  58. c::c ; Run/Walk
  59. CapsLock::CapsLock ; Toggle Run/Walk
  60. x::x ; Automove
  61. f::f ; Favorites
  62. F5::F5 ; Quicksave
  63. F9::F9 ; Quickload
  64. Esc::Esc ; Pause
  65. k::k ; Stats
  66. i::i ; Inventory
  67. j::j ; Data
  68. m::m ; Map
  69. o::o ; Radio
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement