11.04.2015, 17:21
Ocupas sscanf y cmd.
pawn Код:
CMD:anuncio(playerid, params[])
{
new mensaje[128], nombre[MAX_PLAYER_NAME];
if(sscanf(params, "s[128]", mensaje)) return SendClientMessage(playerid, -1, "/anuncio (mensaje)");
GetPlayerName(playerid, nombre, MAX_PLAYER_NAME);
SendClientMessageToAll(-1, "%s Anuncia: %s", nombre, mensaje);
return 1;
}