Advertisement
jdinap11

spectate6s

May 13th, 2013
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. //spectate6s CFG FILE
  2.  
  3. //aliases for 3rd person spectating better
  4. alias up "bind shift +moveup"
  5. alias down "bind ctrl +movedown"
  6.  
  7. //binds o and p to useful things for demo review
  8. bind O "demoui"
  9. bind P hud_reloadscheme
  10.  
  11.  
  12. //SET UP HERE WHICH PLAYERS ARE IN WHICH SPOTS: for blu
  13. //the tournament hud starts at the bottom from 0
  14. //for 6s, it's 0-5 counting from the bottom
  15. //only change the second number, the first is the team
  16.  
  17. alias bluMed "spec_player_ex 3 2"
  18. alias bluDemo "spec_player_ex 3 5"
  19. alias bluScout1 "spec_player_ex 3 4; bind R bluScout2"
  20. alias bluScout2 "spec_player_ex 3 3; bind R bluScout1"
  21. alias bluSolly1 "spec_player_ex 3 1; bind E bluSolly2"
  22. alias bluSolly2 "spec_player_ex 3 0; bind E bluSolly1"
  23.  
  24.  
  25. //binds that will be used for blu
  26. alias bluMedB "bind Q bluMed"
  27. alias bluDemoB "bind W bluDemo"
  28. alias bluScoutsB "bind R bluScout1"
  29. alias bluSollysB "bind E bluSolly1"
  30.  
  31.  
  32.  
  33. //SET UP HERE WHICH PLAYERS ARE IN WHICH SPOTS: for red
  34. //the tournament hud starts at the bottom from 0
  35. //for 6s, it's 0-5 counting from the bottom
  36. //only change the second number, the first is the team
  37.  
  38. alias redMed "spec_player_ex 2 1"
  39. alias redDemo "spec_player_ex 2 0"
  40. alias redScout1 "spec_player_ex 2 2; bind F redScout2"
  41. alias redScout2 "spec_player_ex 2 4; bind F redScout1"
  42. alias redSolly1 "spec_player_ex 2 5; bind D redSolly2"
  43. alias redSolly2 "spec_player_ex 2 3; bind D redSolly1"
  44.  
  45. //binds that will be used for red
  46. alias redMedB "bind A redMed"
  47. alias redDemoB "bind S redDemo"
  48. alias redScoutsB "bind F redScout1"
  49. alias redSollysB "bind D redSolly1"
  50.  
  51. //combining all members of team into one alias
  52. alias playersBlu "bluMedB;bluDemoB;bluScoutsB;bluSollysB"
  53. alias playersRed "redMedB;redDemoB;redScoutsB;redSollysB"
  54.  
  55. //combining both teams into one bind
  56. alias playersBind "playersBlu;playersRed"
  57.  
  58. //the following "move" aliases are to reset the binds, for when
  59. //you want to 3rd person spectate
  60. alias move1 "bind W +forward"
  61. alias move2 "bind A +moveleft"
  62. alias move3 "bind S +back"
  63. alias move4 "bind D +moveright;"
  64. alias move5 "bind Y say"
  65. alias move6 "unbind Q"
  66. alias move7 "unbind E"
  67. alias move8 "unbind R"
  68. alias move9 "unbind F"
  69. alias move10 "unbind G"
  70. alias move11 "unbind H"
  71. alias move12 "unbind T"
  72.  
  73. //combines all "move" aliases into a "reset" alias
  74. alias reset "move1;move2;move3;move4;move5;move6;move7;move8;move9;move10;move11;move12;up;down"
  75.  
  76.  
  77. //the following aliases are the meat
  78. //my bind switch button is mouse3. change mouse3 in these
  79. //binds to whatever button you feel you want
  80. //pressing that button will switch between the player binds
  81. //and the 3rd person flying binds
  82.  
  83. alias players1 "playersBind; bind MOUSE3 players2"
  84. alias players2 "reset; bind MOUSE3 players1"
  85. bind MOUSE3 "players1"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement