if you got this error constantly you can just add this:
PHP Code:
public client_disconnect(id)
{
log_amx("ID:%d",id);
get_user_name(id,name[id],31)
get_user_authid(id,authid[id],31)
log_amx("Name: %s AUTH: %s",name[id],authid[id]);
Print(0, "%s ^01(%s)^04 has disconnected.", name[id], authid[id]);
log_amx("%s ^01(%s)^04 has disconnected.", name[id], authid[id]);
return PLUGIN_HANDLED;
}
and in standart logs you will see the problem. i think problem is with formatting:
get_user_name(id,name[id],31)
get_user_authid(id,authid[id],31)
__________________