10.04.2017, 19:40
Quote:
Usando isto ! vocк iguala a variavel a 0, ou seja verificando se o cara nгo й VIP.
|
Quote:
Tente:
Код:
CMD:chatv(playerid, params[]) { new Texto[128], String[64]; if (!IsPlayerVIP(playerid)) //Se o jogador nгo for VIP o cуdigo para e retorna a mensagem de erro. return SendClientMessage(playerid, Vermelho, "[ERRO]: Vocк nгo possui permissгo suficiente."); if(sscanf(params, "s", Texto)) return SendClientMessage(playerid, Vermelho, "[ERRO]: Use: /v [texto]"); format(String, sizeof(String), "(CV) %s: %s", Nome(playerid), Texto); for(new i = 0; i < MAX_PLAYERS; i++) { if (IsPlayerVIP(playerid)) //Se o jogador for VIP o cуdigo continua. { SendClientMessage(i, -1, String); } } return 1; } |