PHP Code:
if ( !is_user_alive [ i ] || !cs_get_user_team [ i ] != CS_TEAM_T )
Change it to:
PHP Code:
if ( !is_user_alive ( i ) || !cs_get_user_team ( i ) != CS_TEAM_T )
You are obtaining the name of all alive CT players and the hudmessage will show
Code:
Ts players:
[Player ID -1]. [Name of player ID]
If you want to show the ID's and names of TT players change:
[php]
if ( !is_user_alive ( i ) || !cs_get_user_team ( i ) != CS_TEAM_T )
[php]
to:
PHP Code:
if ( !is_user_alive ( i ) || cs_get_user_team ( i ) != CS_TEAM_T )