14.07.2015, 03:29
PHP код:
if (strcmp(cmdtext, "/anunciar", true) == 0)
{
new Texto[128], Msg[128];
if(sscanf(cmdtext, "s[128]", Texto)) return SendClientMessage(playerid, -1, "Digite: /anunciar [texto]");
new Nome[MAX_PLAYER_NAME];
GetPlayerName(playerid, Nome, MAX_PLAYER_NAME);
format(Msg, sizeof(Msg), "%s: %s", Nome, Texto);
TextDrawSetString(textocnn, Msg);
TextDrawShowForAll(textocnn);
SetTimer("TirarAnuncio",5000,false);
return 1;
}