Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. //////////////
  2. ///Clear///
  3. //////////////
  4.  
  5. exec clear
  6. exec classchanger
  7.  
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  9. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  10.  
  11. //========== Gunboats/Shotgun toggle ==========//
  12. bind mouse2 sw_12_13
  13. bind rctrl tog_12_13
  14.  
  15. alias sw_12 "equip_shotty; equip_rl"
  16. alias sw_13 "equip_melee; equip_rl"
  17.  
  18. alias tog_12 "alias sw_12_13 sw_12; alias tog_12_13 tog_13"
  19. alias tog_13 "alias sw_12_13 sw_13; alias tog_12_13 tog_12"
  20. tog_12
  21.  
  22. //========== Weapon switch logic ==========//
  23. alias "wh1" "equip_rl"
  24. alias "wh2" "equip_shotty"
  25. alias "wh3" "equip_melee"
  26.  
  27. alias "w3" "bind mwheelup wh2;bind mwheeldown wh1"
  28. alias "w2" "bind mwheelup wh1;bind mwheeldown wh3"
  29. alias "w1" "bind mwheelup wh3;bind mwheeldown wh2"
  30.  
  31. //========== FoV ==========//
  32. alias fovD "viewmodel_fov 100; r_drawviewmodel 1"
  33. alias fovD2 "viewmodel_fov 80; r_drawviewmodel 1"
  34. alias "fovN" "viewmodel_fov 0; r_drawviewmodel 0"
  35.  
  36. //========== Primary ==========//
  37. alias "equip_rl" "slot1; rl1; w1 "
  38. alias "rl1" "fovD; bind mouse1 +attacku;"
  39. alias "+attacku" "+attack; fovN; spec_next"
  40. alias "-attacku" "-attack"
  41.  
  42. //========== Secondary ==========//
  43. alias "equip_shotty" "slot2; rl2; w2"
  44. alias "rl2" "fovD2; bind mouse1 +attacku"
  45. alias "+attacku" "+attack; fovN; spec_next"
  46. alias "-attacku" "-attack; fovN"
  47.  
  48. //========== Melee ==========//
  49. alias "equip_melee" "slot3; rl3; w3"
  50. alias "rl3" "fovD2; bind mouse1 +attacku2"
  51. alias "+attacku2" "+attack; fovD; spec_next"
  52. alias "-attacku2" "-attack; fovD"
  53.  
  54. //========== Binds ==========//
  55. bind "1" "equip_rl"
  56. bind "2" "equip_shotty"
  57. bind "3" "equip_melee"
  58.  
  59. bind "mwheelup" "wh2"
  60. bind "mwheeldown" "wh3"
  61.  
  62. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  63. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  64.  
  65. exec nullmovementrainbow
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement