How do i get only VIP's nicknames when they connect and print it to all the rest server's players?
PHP Code:
#define VIP_ACCESS_NOBUY ADMIN_LEVEL_B
public client_putinserver ( id )
{
new name[ 32 ];
if ( get_user_flags( id ) & VIP_ACCESS_NOBUY )
{
get_user_name( id, name, 31 );
}
if ( get_pcvar_num( p_Join ) && g_iRoundCount > 1 )
{
ChatColor( 0, "%L", LANG_PLAYER, "VIP_JOIN", PREFIX, name );
}
}
This dont work