Allright, so, what I am trying to do is make half the terrorists glow red, and the another half of the terrorists glow blue.
I tried this:
PHP Code:
public splitThem()
{
new players[32], num, player;
get_players( players, num, "a" );
for( new i = 0; i < num; i++ )
{
player = players[i];
if( !( i % 2 ) )
set_user_rendering(player,kRenderFxGlowShell,0,0,255,kRenderNormal,16);
else
set_user_rendering(player,kRenderFxGlowShell,255,0,0,kRenderNormal,16);
}
}
But, nothing.. What am I doing wrong ?