Advertisement
Ringo276

spy.cfg

Mar 3rd, 2019
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. //ringo's spy config
  2.  
  3. cl_hud_playerclass_use_playermodel 1
  4.  
  5. //---------------\\
  6. //Disguise Script\\
  7. //---------------\\
  8.  
  9. // aliases for disguises
  10.  
  11. alias scout "disguise 1 -1; playgamesound scout.yes01"
  12. alias soldier "disguise 3 -1; playgamesound soldier.yes04"
  13. alias pyro "disguise 7 -1; playgamesound pyro.moveup01"
  14. alias demoman "disguise 4 -1; playgamesound demoman.yes01"
  15. alias heavy "disguise 6 -1; playgamesound heavy.yes03"
  16. alias engineer "disguise 9 -1; playgamesound engineer.yes03"
  17. alias medic "disguise 5 -1; playgamesound medic.yes03"
  18. alias sniper "disguise 2 -1; playgamesound sniper.yes03"
  19. alias spy "disguise 8 -1; playgamesound spy.yes02"
  20.  
  21. alias scout2 "disguise 1 -2; playgamesound scout.no02"
  22. alias soldier2 "disguise 3 -2; playgamesound soldier.no02"
  23. alias pyro2 "disguise 7 -2; playgamesound pyro.no01"
  24. alias demoman2 "disguise 4 -2; playgamesound demoman_no03"
  25. alias heavy2 "disguise 6 -2; playgamesound heavy.no03"
  26. alias engineer2 "disguise 9 -2; play vo\engineer_no01"
  27. alias medic2 "disguise 5 -2; playgamesound medic.no01"
  28. alias sniper2 "disguise 2 -2; playgamesound sniper.no01"
  29. alias spy2 "disguise 8 -2; play vo\spy_no03"
  30.  
  31. // binding to enemy disguises at start
  32.  
  33. bind 1 "scout"
  34. bind 2 "soldier"
  35. bind 3 "pyro"
  36. bind 4 "demoman"
  37. bind 5 "heavy"
  38. bind 6 "engineer"
  39. bind 7 "medic"
  40. bind 8 "sniper"
  41. bind 9 "spy"
  42.  
  43. // toggle Enemy Disguises
  44. alias sc1 "bind 1 scout"
  45. alias so1 "bind 2 soldier"
  46. alias py1 "bind 3 pyro"
  47. alias dm1 "bind 4 demoman"
  48. alias hv1 "bind 5 heavy"
  49. alias en1 "bind 6 engineer"
  50. alias md1 "bind 7 medic"
  51. alias sn1 "bind 8 sniper"
  52. alias sp1 "bind 9 spy"
  53.  
  54. // toggle Friendly Disguises
  55.  
  56. alias sc2 "bind 1 scout2"
  57. alias so2 "bind 2 soldier2"
  58. alias py2 "bind 3 pyro2"
  59. alias dm2 "bind 4 demoman2"
  60. alias hv2 "bind 5 heavy2"
  61. alias en2 "bind 6 engineer2"
  62. alias md2 "bind 7 medic2"
  63. alias sn2 "bind 8 sniper2"
  64. alias sp2 "bind 9 spy2"
  65.  
  66. // toggles
  67.  
  68. alias emode "sc1; so1; py1; dm1; hv1; en1; md1; sn1; sp1"
  69. alias fmode "sc2; so2; py2; dm2; hv2; en2; md2; sn2; sp2"
  70.  
  71. // toggler
  72.  
  73. alias +team_switch "fmode; echo Friendly team mode On"
  74. alias -team_switch "emode; echo Enemy team mode On"
  75.  
  76. //-----\\
  77. //Binds\\
  78. //-----\\
  79.  
  80. bind q lastdisguise // used for changing disguise weapon
  81. bind e +team_switch
  82. bind r "disguise 8 -2" //undisguise
  83. bind t "disguise 5 -1; slot2; lastdisguise" //switches to medic and checks medigun
  84. bind shift +duck
  85. bind w +mfwd
  86. bind s +mback
  87. bind a +mleft
  88. bind d +mright
  89. bind v taunt
  90.  
  91. //-----------------------------\\
  92. //Print QERT Binds Into Console\\
  93. //-----------------------------\\
  94.  
  95. echo "spy binds enabled"
  96. echo "q - lastdisguise"
  97. echo "e - friendly disguise"
  98. echo "r - undisguise"
  99. echo "t -checks medigun"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement