Advertisement
t3h_m00kz

CONFIG - MCC Tools Build - Halo 1

Feb 23rd, 2022 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. ;;;;;;;;;;;;;;;;;;
  2. ;;m00kz init.txt;;
  3. ;;;;;;;;;;;;;;;;;;
  4.  
  5. ;BINDING SYNTAX
  6. ;unbind [DEVICE] [INPUT]
  7. ;bind [DEVICE] [INPUT] [OUTPUT]
  8.  
  9. ;DEVICES: keyboard mouse mouseaxis (controllers?)
  10. ;INPUTS: These are displayed in the stock CE controls UI. I.E. "BUTTON 4" or "WHEEL -"
  11. ;OUTPUTS:
  12. ; MOVEMENT forward backward left right look_right look_left look_up look_down
  13. ; COMBAT fire throw_grenade switch_weapon switch_grenade reload melee exchange_weapon
  14. ; ACTIONS jump crouch flashlight zoom action
  15. ; MISC accept back showscores say sayteam sayvehicle
  16. ; (UNLISTED???) screenshot
  17.  
  18. ;;UNBINDS;;
  19. unbind "keyboard" "E"
  20. unbind "keyboard" "F"
  21. unbind "keyboard" "G"
  22. unbind "keyboard" "H"
  23. ;unbind "keyboard" "Q" ;flashlight is fine
  24. unbind "keyboard" "R"
  25. unbind "keyboard" "T"
  26. unbind "keyboard" "X"
  27. unbind "keyboard" "Y"
  28. unbind "keyboard" "Z"
  29. unbind "keyboard" "TAB"
  30. unbind "keyboard" "LEFT CONTROL"
  31.  
  32. unbind "mouse" "LEFT BUTTON"
  33. unbind "mouse" "RIGHT BUTTON"
  34. unbind "mouse" "MIDDLE BUTTON"
  35. unbind "mouse" "BUTTON 4"
  36. unbind "mouse" "BUTTON 5"
  37.  
  38. unbind "mouseaxis" "WHEEL -"
  39. unbind "mouseaxis" "WHEEL +"
  40.  
  41. ;;BINDS;;
  42. bind "keyboard" "LEFT ALT" "crouch"
  43. bind "keyboard" "F" "action"
  44. bind "keyboard" "TAB" "showscores"
  45.  
  46. bind "mouse" "LEFT BUTTON" "fire"
  47. bind "mouse" "RIGHT BUTTON" "zoom"
  48. bind "mouse" "MIDDLE BUTTON" "throw_grenade"
  49. bind "mouse" "BUTTON 4" "reload"
  50. bind "mouse" "BUTTON 5" "melee"
  51.  
  52. bind "mouseaxis" "WHEEL -" "switch_grenade"
  53. bind "mouseaxis" "WHEEL +" "switch_weapon"
  54.  
  55. ;;LOAD MAP;;
  56. map_name levels\test\firingrange\firingrange
  57. ;map_name levels\test\tutorial\tutorial
  58.  
  59. ;;settings;;
  60. mouse_acceleration 0
  61. rasterizer_framerate_stabilization 0
  62. rasterizer_framerate_throttle 0
  63. rasterizer_refresh_rate 0
  64. ;rasterizer_stats 1
  65. ;rasterizer_wireframe 1
  66. render_model_markers 0
  67. render_model_no_geometry 0
  68. sound_set_master_gain 0.25
  69.  
  70. ;;debug;;
  71. show_hud 0
  72. debug_damage 1
  73. debug_objects 1
  74. debug_objects_root_node 0
  75. debug_objects_collision_models 1
  76. debug_objects_biped_autoaim_pills 1
  77. ;hud_show_crosshair 0 ;doesn't work
  78. temporary_hud 1
  79.  
  80. ;;cheats;;
  81. cheat_infinite_ammo 1
  82. cheat_bottomless_clip 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement