SA-MP Forums Archive
[Ajuda] /desbanir bugado - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] /desbanir bugado (/showthread.php?tid=652680)



/desbanir bugado - TIAGOO - 16.04.2018

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



PHP код:
if(strcmp(cmd"/desbanir"true) == 0) {
    if(
pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == || 
    ){
    
tmp strtok(cmdtextidx);
    
format(file2sizeof(file2), PASTA_CONTAStmp);
    if(!
strlen(tmp)) {
    
SendClientMessage(playeridVermelho"| ERRO | Digite: /Desbanir [nick]");
    return 
1;
    }
    if(
dini_Exists(file2)){
    
dini_Unset("Banidos/%s.ini",tmp);
    
format(stringsizeof(string), "[WLV] Vocк desbaniu O jogador(a) %s."tmp);
    
SendClientMessage(playeridVermelhostring);
    }else{
    
SendClientMessage(playeridVermelho"| ERRO | Este usuario nгo existe.");
    }
    return 
1;
    }
    } 



Re: /desbanir bugado - [BOPE]Seu._.Madruga - 16.04.2018

Troque:
Код:
dini_Unset(,tmp);
Por:
PHP код:
new filebradoks[50];
format(filebradokssizeof(filebradoks), "Banidos/%s.ini"tmp);
dini_Remove(filebradoks); 
PHP код:
if(strcmp(cmd"/desbanir"true) == 0) {
    if(
pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == 5) {
        
tmp strtok(cmdtextidx);
        if(!
strlen(tmp)) return SendClientMessage(playeridVermelho"| ERRO | Digite: /Desbanir [nick]");
        
format(file2sizeof(file2), PASTA_CONTAStmp);
        if(!
dini_Exists(file2)) return SendClientMessage(playeridVermelho"| ERRO | Este usuario nгo existe.");
        
format(stringsizeof(string), "[WLV] Vocк desbaniu O jogador(a) %s."tmp);
        
SendClientMessage(playeridVermelhostring);
        new 
filebradoks[50];
        
format(filebradokssizeof(filebradoks), "Banidos/%s.ini"tmp);
        
dini_Remove(filebradoks);
        return 
1;
    } else {
        
SendClientMessage(playeridVermelho"| ERRO | Vocк nгo tem acesso a este comando !");
    }
    return 
1;




Re: /desbanir bugado - XandyMello - 16.04.2018

Pra quer isso ?:
PHP код:
if(pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == ||  ) 
Use assim:
PHP код:
if(pAdmin[playerid] > 2) {




Re: /desbanir bugado - TIAGOO - 16.04.2018

Quote:
Originally Posted by [BOPE]Seu._.Madruga
Посмотреть сообщение
Troque:
Код:
dini_Unset(,tmp);
Por:
PHP код:
new filebradoks[50];
format(filebradokssizeof(filebradoks), "Banidos/%s.ini"tmp);
dini_Remove(filebradoks); 
PHP код:
if(strcmp(cmd"/desbanir"true) == 0) {
    if(
pAdmin[playerid] == || pAdmin[playerid] == || pAdmin[playerid] == 5) {
        
tmp strtok(cmdtextidx);
        if(!
strlen(tmp)) return SendClientMessage(playeridVermelho"| ERRO | Digite: /Desbanir [nick]");
        
format(file2sizeof(file2), PASTA_CONTAStmp);
        if(!
dini_Exists(file2)) return SendClientMessage(playeridVermelho"| ERRO | Este usuario nгo existe.");
        
format(stringsizeof(string), "[WLV] Vocк desbaniu O jogador(a) %s."tmp);
        
SendClientMessage(playeridVermelhostring);
        new 
filebradoks[50];
        
format(filebradokssizeof(filebradoks), "Banidos/%s.ini"tmp);
        
dini_Remove(filebradoks);
        return 
1;
    } else {
        
SendClientMessage(playeridVermelho"| ERRO | Vocк nгo tem acesso a este comando !");
    }
    return 
1;


VLW MAINNN