20.08.2012, 15:42
Use dessa forma
pawn Код:
CMD:asay(playerid, params[])
{
if(isnull(params)) return SendClientMessage(playerid, AMARELO, "SERVER: Uso do comando correto: /asay [Texto]");
GetPlayerName(playerid, aName, 25);
format(string, sizeof(string), "[GLOBAL ADIMINISTRADOR][%s]: %s",aName,params);
SendClientMessageToAll(AZUL,string);
return 1;
}