12.07.2013, 22:39
pawn Код:
CMD:anuncio(playerid, params[])
{
new String[128];
new Texto[128];
new Nome[MAX_PLAYER_NAME];
if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, CINZA, "{3cff00}Ч INFO Ч {FFFFFF} Use /texto [texto]"), SendClientMessage(playerid, CINZA, "Use o comando para mandar uma mensagem em forma de GameText aos jogadores");
format(String, sizeof(String), "~r~%s: ~w~%s", Nome(playerid), Texto);
GameTextForAll(String, 4000, 4);
return 1;
}