16.04.2018, 22:36
Alguйm poderia me ajuda com esse codigo? quando eu dou ban em alguйm e dou o comando /desbanir ele nгo remove da basta ''Banidos'' tentei arruma mais nгo deu.
Obrigado
Obrigado
PHP код:
if(strcmp(cmd, "/desbanir", true) == 0) {
if(pAdmin[playerid] == 4 || pAdmin[playerid] == 3 || pAdmin[playerid] == 4 || pAdmin[playerid] == 5 ||
){
tmp = strtok(cmdtext, idx);
format(file2, sizeof(file2), PASTA_CONTAS, tmp);
if(!strlen(tmp)) {
SendClientMessage(playerid, Vermelho, "| ERRO | Digite: /Desbanir [nick]");
return 1;
}
if(dini_Exists(file2)){
dini_Unset("Banidos/%s.ini",tmp);
format(string, sizeof(string), "[WLV] Vocк desbaniu O jogador(a) %s.", tmp);
SendClientMessage(playerid, Vermelho, string);
}else{
SendClientMessage(playerid, Vermelho, "| ERRO | Este usuario nгo existe.");
}
return 1;
}
}