I set the function to this
PHP Code:
bool:Util_Is_Valid_Player( id )
{
if( id < 1 || id > MAX_PLAYERS )
{
return false;
}
if( !is_user_connected( id ) || !pev_valid( id ) )
{
return false;
}
if ( pev( id, pev_flags ) & FL_CLIENT )
{
return true;
}
return false;
}
And I have uploaded the beta - I will let you know in a few days if I see any changes, thanks in advance for any assistance, working or otherwise you offer.