20.08.2012, 16:27
Cуdigo do AFerreira:
pawn Код:
CMD:asay(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid, AMARELO, "SERVER: Uso do comando correto: /asay [Texto]");
new aName[MAX_PLAYER_NAME], string[128];
GetPlayerName(playerid, aName, MAX_PLAYER_NAME);
format(string, sizeof(string), "[GLOBAL ADIMINISTRADOR][%s]: %s",aName,params);
SendClientMessageToAll(AZUL,string);
return 1;
}