Yes,i forgot,sorry,btw,in your code you sets a same glow color,i modify your code...
Code:
stock cs_set_team_glow(const iTeam,const RRR,const GGG,const BBB,const AMMOUNT)
{
new iPlayers[32];
new iNum;
get_players(iPlayers, iNum);
for(new i = 0; i < iNum; i++)
{
new Indx = Players[i];
if(is_user_alive(Indx) && (cs_get_user_team(Indx) == iTeam)
set_user_rendering( id, kRenderFxGlowShell, RRR, GGG, BBB, kRenderNormal, AMMOUNT );
}
}