Quote:
Originally Posted by AngeIII
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)
|
The error doesn't come constantly, it comes just now and then, everything from 5min to 2 hours apart. So thats the weird part, why would it just give this error some times when this acton is used like all the time (each time a player disconnects).
But thanks, I will try that and come back with the results of the log.