Because when the name or ip is invalid on command it's shows the same message, also when the name or ip is already registered same message
PHP Code:
if (idtype & ADMIN_LOOKUP && !player)
{
console_print(id, "The player with this name or ip is not connect or is already registered")
return PLUGIN_HANDLED;
}
I want to make something like that:
If name already exist: This name is already registered
If ip already exist: This ip is already registered
If name is invalid: This name is invalid
If ip is invalid: Can't be because is using get_user_ip ...