- Código:
if(strcmp(cmd, "/anunciarv", true)==0)
{
strmid(tmp, cmdtext, 10, strlen(cmdtext));
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "| ERRO | Use: /anunciarv [texto]");
return 1;
}
else {
if( GetPVarInt( playerid, "TAnunciarV" ) > GetTickCount() ) return SendClientMessage( playerid, Vermelho, "| ERRO | Você só pode usar o '/anunciarv' em 1 minuto..." );
SetPVarInt( playerid, "TAnunciarV", GetTickCount() + 60000 );
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
format(file, sizeof(file), PASTA_CONTAS, aname);
format(string, sizeof(string), "| INFO - SERVER | O Jogador, %s [%d]: Esta Vendendo : {FFFFFF}%s", aname, playerid, tmp);
SendClientMessageToAll(Amarelo, string);
}
return 1;
}
Sistema pego da GameMod: new virtual city & eu editei 5% .-.