Try get_players:
PHP Code:
new iPlayers[32],iNum,iPlayer;
get_players(iPlayers,iNum,"ach"); // A = Colect Alive Only, C = Skip Bots and H Skipy HLTV
for(new i;i < iNum;i++)
{
iPlayer = iPlayers[i];
user_silentkill(iPlayer);
client_print(iPlayer,print_chat,"You Are Alive? Soo Die NOW!");
}
AND IF YOU NEED
PHP Code:
new iPlayers[32],iNum;
get_players(iPlayers,iNum,"ach"); // A = Colect Alive Only, C = Skip Bots and H Skipy HLTV
if(iNum == 1)
{
/* MENU HERE */
}
__________________