11.07.2011, 18:58
Add this at OnPlayerDisconnect
Код:
new discstring[128]; new sendername[MAX_PLAYER_NAME]; switch(reason) { case 0: format(discstring, sizeof(discstring), "* %s has left the server. (Timeout)", sendername); case 1: format(discstring, sizeof(discstring), "* %s has left the server. (Leaving)", sendername); case 2: format(discstring, sizeof(discstring), "* %s has left the server. (Kicked)", sendername); }