Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.30 KB | None | 0 0
  1. joystick 1
  2. joy_advanced "1" // use advanced joystick options (allows for multiple axes)
  3.  
  4. joy_name "L4D Xbox360 Joystick Configuration"
  5. joy_advaxisx 3 // x-axis controls GAME_AXIS_SIDE (strafing left and right)
  6. joy_advaxisy 1 // y-axis controls GAME_AXIS_FORWARD (move forward and back)
  7. joy_advaxisz 0 // z-axis is treated like a button
  8. joy_advaxisr 2 // r-axis controls GAME_AXIS_PITCH (look up and down)
  9. joy_advaxisu 4 // u-axis controls GAME_AXIS_YAW (look left and right)
  10. joy_advaxisv 0 // v-axis is unused
  11. joy_forwardsensitivity -1.0 // movement sensitivity
  12. joy_sidesensitivity 1.0
  13. joy_forwardthreshold 0.1 // movement dead zone settings
  14. joy_sidethreshold 0.1
  15. joy_pitchsensitivity 1.0 // look sensitivity
  16. joy_yawsensitivity -1.5
  17. joy_pitchthreshold 0.1 // look dead zone settings
  18. joy_yawthreshold 0.0
  19.  
  20. joy_variable_frametime 1
  21. joy_autoaimdampenrange 0.85
  22. joy_autoaimdampen 0.5
  23. joy_lowend 0.65
  24. joy_lowmap 0.15
  25. joy_accelscale 3.0
  26. joy_accelmax 4.0
  27. joy_response_move 5
  28. joy_response_look 1
  29. joy_autoaimdampen 0.3
  30. joy_autoaimdampenrange 0.85
  31. joyadvancedupdate // advanced joystick update allows for analog control of move and look
  32.  
  33. // Alternate control 1
  34. bind "0" "slot10"
  35. bind "1" "slot1"
  36. bind "2" "slot2"
  37. bind "3" "slot3"
  38. bind "4" "slot4"
  39. bind "5" "slot5"
  40. bind "6" "slot6"
  41. bind "7" "slot7"
  42. bind "8" "slot8"
  43. bind "9" "slot9"
  44. bind "a" "+moveleft"
  45. bind "c" "+voicerecord"
  46. bind "d" "+moveright"
  47. bind "e" "+use"
  48. bind "f" "impulse 100"
  49. bind "h" "motd"
  50. bind "m" "chooseteam"
  51. bind "q" "lastinv"
  52. bind "r" "+reload"
  53. bind "s" "+back"
  54. bind "t" "impulse 201"
  55. bind "u" "messagemode2"
  56. bind "w" "+forward"
  57. bind "x" "+mouse_menu QA"
  58. bind "y" "messagemode"
  59. bind "z" "+mouse_menu Orders"
  60. bind "`" "toggleconsole"
  61. bind "SPACE" "+jump"
  62. bind "TAB" "+showscores"
  63. bind "ESCAPE" "cancelselect"
  64. bind "SHIFT" "+speed"
  65. bind "CTRL" "+duck"
  66. bind "F1" "Vote Yes"
  67. bind "F2" "Vote No"
  68. bind "F5" "jpeg"
  69. bind "MOUSE1" "+attack"
  70. bind "MOUSE2" "+attack2"
  71. bind "MOUSE3" "+zoom"
  72. bind "MWHEELUP" "invprev"
  73. bind "MWHEELDOWN" "invnext"
  74.  
  75.  
  76. // controller2 bindings
  77. cmd2 +jlook // enable joystick look
  78. cmd2 bind "A_BUTTON" "+jump;+menuAccept" // (A) button - Jump -menuAccpt allows us to make selections on hud menus
  79. cmd2 bind "B_BUTTON" "+reload" // (B) button - Reload
  80. cmd2 bind "X_BUTTON" "+use" // (X) Use
  81. cmd2 bind "Y_BUTTON" "lastinv" // (Y) button - swap pistol/rifle or z_abort -used to respawn as a ghost.
  82. cmd2 bind "R_TRIGGER" "+attack" // RT - Main weapon - Primary trigger
  83. cmd2 bind "L_TRIGGER" "+attack2" // LT - Melee
  84. cmd2 bind "R_SHOULDER" "+lookspin" // RB - Fast 180 spin
  85. cmd2 bind "L_SHOULDER" "toggle_duck" // LB - Duck - is also used to give objects to people.
  86. cmd2 bind "STICK1" "vocalize smartlook" // LS - vocalize
  87. cmd2 bind "STICK2" "+zoom" // RS click - Rifle Zoom
  88.  
  89. // Fixed bindings, do not change these across joystick presets
  90. cmd2 bind "BACK" "togglescores" // (back) button - scores
  91. cmd2 bind "START" "pause" // (start) button - pause
  92. cmd2 bind "S1_UP" "+menuUp" // Hud menu Up
  93. cmd2 bind "S1_DOWN" "+menuDown" // Hud menu Down
  94. cmd2 bind "UP" "impulse 100" // DPad Up - Toggle flashlight
  95. cmd2 bind "LEFT" "slot3" // DPad Left - grenade
  96. cmd2 bind "RIGHT" "slot4" // DPad Right - health
  97. cmd2 bind "DOWN" "slot5" // DPad Down - Pills
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement