06.03.2014, 13:12
Quote:
Myam Funcionou mais para poder mostrar os comando [Inexistentes] Eu tive que tirar isso, Que й para mostrar para os players que o cmd digita nгo existe..
pawn Код:
» Eu queria se possivйl que ficasse assim: tirar a info de cmd [Inexistentes] E no lugar de Existente coloca o resto do cmd, Ex: /Ban eo resto do cmd ID motivo ** Stroon usou o comando /Avsiar 10 Prуxima й ban Grato! |
pawn Код:
public OnPlayerCommandPerformed(playerid, cmdtext[], success)
{
new myam_Name[MAX_PLAYER_NAME], String[125];
GetPlayerName(playerid, myam_Name, sizeof(myam_Name));
if(success){
format(String, sizeof(String), "** %s digitou o comando %s {00FF00}[existente]", myam_Name, cmdtext);
for(new my = 0; my<MAX_PLAYERS; my++){
if(IsPlayerConnected(my)){
if(IsPlayerAdmin(my) && GetPVarInt(my, "VendoCmds") == 1){
SendClientMessage(my, -1, String);
}
}
}
}
if(!success){
SendClientMessage(playerid, 0xFF0000FF, "** Comando invбlido.");
format(String, sizeof(String), "** %s digitou o comando %s {FF0000}[inexistente]", myam_Name, cmdtext);
for(new my = 0; my<MAX_PLAYERS; my++){
if(IsPlayerConnected(my)){
if(IsPlayerAdmin(my) && GetPVarInt(my, "VendoCmds") == 1){
SendClientMessage(my, -1, String);
}
}
}
}
return 1;
}