04.04.2017, 02:49
Fiz um /vercomandos no OnPlayerCommandPerformed e sу aparece se o comando for funcional. Se eu digito /Level e ele existe, aparece pra qm ta vendo comandos que ele digitou isso. Porйm se eu digito /aaaaaa e nгo existe, nгo aparece. Quero que apareзa todos os tipos de comandos.
Obs: Jб tentei colocando if(success && !sucess) mas nada.
code:
Obs: Jб tentei colocando if(success && !sucess) mas nada.
code:
PHP код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
if(success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(VerCmds[playerid] == 1 && Jogador[i][Admin] == 4)
{
format(string, sizeof(string), "| COMANDO | O(A) %s(%d) digitou o comando '%s'", PlayerName(playerid), playerid, cmdtext);
SendClientMessage(i, 0x0080C0AA, string);
}
}
}
return false;
}
if(!success)
{
for(new i = 0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(VerCmds[playerid] == 1 && Jogador[i][Admin] == 4)
{
format(string, sizeof(string), "| COMANDO | O(A) %s(%d) digitou o comando '%s'", PlayerName(playerid), playerid, cmdtext);
SendClientMessage(i, 0x0080C0AA, string);
}
}
}
return false;
}
return true;
}