14.07.2015, 03:39
Nгo testei mas tenta ae amigo!
PHP код:
if(strcmp(cmd,"/anunciar",true)==0)
{
new Texto[60], Nome[MAX_PLAYER_NAME], Msg[128], tmp[128];
GetPlayerName(playerid, Nome, sizeof(Nome));
tmp = strtok(cmdtext,idx);
if(!strlen(tmp)) return SendClientMessage(playerid, -1, "Digite: /anunciar [texto]");
format(Msg, sizeof(Msg), "%s: %s", Nome, Texto);
TextDrawSetString(textocnn, Msg);
TextDrawShowForAll(textocnn);
SetTimer("TirarAnuncio", 5000, false);
return 1;
}