22.09.2016, 02:04
//Edit: Oh you're right xD You wanna just show the message from users..not from admins...
PHP код:
if(!Player[playerid][pAdmin])
{
static const r[3][] = {"Timeout/Crash", "Quit", "Kick/Ban"};
new string[128];
GetPlayerName(playerid, string, MAX_PLAYER_NAME);
format(string,sizeof(string),"* %s (ID: %d) has left the server. (%s)",string,playerid,r[reason]);
SendClientMessageToAll(0xAAAAAAAA,string);
}