Advertisement
aokmikey

ScoreShit

Nov 20th, 2014
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.89 KB | None | 0 0
  1. // put this in zombiemode or some shit main() or init()
  2. flag_wait("all_players_connected");
  3.  
  4. for( a = 0; a < get_players().size; a ++ )
  5.     get_players()[a] thread scoreBoardMod();
  6.  
  7. // put this in zombiemode
  8. scoreBoardMod()
  9. {
  10.     self setClientDvar("cg_scoresColor_Player_0","0 0 0 1");
  11.     self setClientDvar("cg_scoresColor_Player_1","1 0 0 0");
  12.     self setClientDvar("cg_scoresColor_Player_2","0 1 0 0");
  13.     self setClientDvar("cg_scoresColor_Player_3","0 0 1 0");
  14.     self setClientDvar("cg_scoresColor_Gamertag_0","1 1 1 1");
  15.     self setClientDvar("cg_scoresColor_Gamertag_1","1 0 0 0");
  16.     self setClientDvar("cg_scoresColor_Gamertag_2","0 1 0 0");
  17.     self setClientDvar("cg_scoresColor_Gamertag_3","0 0 1 0");
  18.     self setClientDvar("cg_ScoresPing_HighColor","0 0 1 1");
  19.     self setClientDvar("cg_ScoresPing_LowColor","0 0.68 1 1");
  20.     self setClientDvar("cg_ScoresPing_MedColor","0 0.49 1 1");
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement