27.08.2013, 13:48
pawn Код:
public OnPlayerText ( playerid, text[] ) {
new string [ 128 ], Nome [ 21 ] ;
GetPlayerName ( playerid, Nome, 21 ) ;
if ( PlayerInfo [ playerid ] [ pAdmin ] >= 1 ) {
format ( string, 128, "[ Admin ]: %s ID:%d: %s", Nome, playerid, text ) ;
SendClientMessage ( -1, string ) ;
}
else {
format ( string, 128, "%s ID:%d: %s", Nome, playerid, text ) ;
SendClientMessageToAll ( -1, string ) ;
}
return 1;
}