Guest User

BF3 Beta Autohotkey Script

a guest
Oct 7th, 2011
759
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ; Battlefield 3 BETA AutoHotKey Script
  2. ;
  3. ; V0.2
  4. ;
  5. ; Since we can't really use the settings menu :P
  6.  
  7. ; Key to enable
  8. F9::Suspend
  9.  
  10. ; Chat binds
  11. j::
  12. SetKeyDelay -1
  13. Send {Blind}{j down}
  14. return
  15.  
  16. j up::
  17. SetKeyDelay -1
  18. Send {Blind}{j up}
  19. Suspend
  20. return
  21.  
  22. k::
  23. SetKeyDelay -1
  24. Send {Blind}{k down}
  25. return
  26.  
  27. k up::
  28. SetKeyDelay -1
  29. Send {Blind}{k up}
  30. Suspend
  31. return
  32.  
  33. l::
  34. SetKeyDelay -1
  35. Send {Blind}{l down}
  36. return
  37.  
  38. l up::
  39. SetKeyDelay -1
  40. Send {Blind}{l up}
  41. Suspend
  42. return
  43.  
  44. Enter::
  45. Suspend
  46. SetKeyDelay -1
  47. Send {Blind}{Enter}
  48. return
  49.  
  50. ; Remap movement to ESDF
  51. e::w
  52. s::a
  53. d::s
  54. f::d
  55.  
  56. ; Remap jump/parachute to mouse2
  57. RButton::Space
  58.  
  59. ; Remap crouch(hold) to space
  60. Space::LCtrl
  61.  
  62. ; Remap prone to v
  63. v::z
  64. LAlt::z
  65.  
  66. ; Remap Zoom to LCtrl
  67. LCtrl::RButton
  68.  
  69. ; Remap Reload to middlemouse
  70. MButton::r
  71.  
  72. ; Remap melee to a
  73. a::f
  74.  
  75. ; Remap firemode to z
  76. z::v
  77.  
  78. ; Remap interact/enter/exit vehicle to r
  79. r::e
  80.  
  81.  
Advertisement
Add Comment
Please, Sign In to add comment