[Ajuda] Comando estб errado ?
#1

CDM = /daradmin

PHP код:
    if(strcmp(cmd"/daradmin"true) == 0)
    {
        if (
IsPlayerAdmin(playerid))
        {
            if(
IsPlayerConnected(playerid))
            {
                
tmp strtok(cmdtextidx);
                if(!
strlen(tmp))
                {
                    
SendClientMessage(playeridCOLOR_GRAD2"USO: /daradmin [playerid/Parte-do-Nick] [level(1-5)]");
                    return 
1;
                }
                new 
para1;
                new 
level;
                
para1 ReturnUser(tmp);
                
tmp strtok(cmdtextidx);
                
level strval(tmp);
                if (
PlayerInfo[playerid][pAdmin] >= 3000 || IsPlayerAdmin(playerid))
                {
                    if(
IsPlayerConnected(para1))
                    {
                        if(
para1 != INVALID_PLAYER_ID)
                        {
                            
GetPlayerName(para1giveplayersizeof(giveplayer));
                            
GetPlayerName(playeridsendernamesizeof(sendername));
                            
PlayerInfo[para1][pAdmin] = level;
                            
printf("%s promoveu %s para administrador no nivel %d."sendernamegiveplayerlevel);
                            
format(stringsizeof(string), "Vocк foi promovido a Administrador, no nнvel %d pelo administrador %s."levelsendername);
                            
SendClientMessage(para1COLOR_LIGHTBLUEstring);
                            
format(stringsizeof(string), "Vocк promoveu %s com nнvel %d."giveplayer,level);
                            
SendClientMessage(playeridCOLOR_LIGHTBLUEstring);
                        }
                    }
                }
                    else
                {
                    
SendClientMessage(playeridCOLOR_GRAD1"   Vocк nгo pode usar esse comando!");
                }
            }
            return 
1;
        }
    } 
Reply
#2

pawn Код:
if(strcmp(cmd, "/daradmin", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] < 1339)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo tem autorizaзгo para usar esse comando.");
                return 1;
            }
            AdmsVaga();
            if(VagaSobrando == 0)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Nгo hб mais vagas na lista use /limparadm primeiro.");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /daradmin [id] [Nivel]");
                return 1;
            }
            new para1;
            new level;
            para1 = ReturnUser(tmp);
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /daradmin [id] [Nivel]");
                return 1;
            }
            level = strval(tmp);
            if(level == 0)
            {
                SendClientMessage(playerid, COLOR_GRAD2, "USE: /limparadmin para limpar uma vaga");
                return 1;
            }
            GetPlayerName(para1, giveplayer, sizeof(giveplayer));
            GetPlayerName(playerid, sendername, sizeof(sendername));
            if(IsPlayerConnected(para1))
            {
                if(para1 != INVALID_PLAYER_ID)
                {
                    if(PlayerInfo[para1][pAdmin] >= 1342)
                    {
                        SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo pode promover um Admin Dono/Scripter!");
                        format(string, sizeof(string), "O admin %s tentou te promover a nivel %d",sendername ,level);
                        SendClientMessage(para1, COLOR_AZULBB, string);
                        return 1;
                    }
                    format(string, sizeof(string), "   Vocк foi promovido para level  %d de Admin - Por %s", level, sendername);
                    SendClientMessage(para1, COLOR_LIGHTBLUE, string);
                    format(string, sizeof(string), "   Vocк promoveu o(a) %s Para o level %d de Admin.", giveplayer,level);
                    SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
                    getdate(year, month, day);
                    gettime(hour,minute,second);
                    format(string, sizeof(string), "%s deu admin nivel %d para %s [%d/%d/%d] бs [%d:%d:%d].", sendername, level, giveplayer, day,
                    month, year, hour, minute, second);
                    PAdminsLog(string);
                    for(new i = 0; i < sizeof(AdmInfo); i++)
                    {
                        if(PlayerInfo[para1][pAdmin] > 0)
                        {
                            PlayerInfo[para1][pAdmin] = level;
                            break;
                        }
                        else if(AdmInfo[i][AdminVaga] == 0)
                        {
                            PlayerInfo[para1][pAdmin] = level;
                            AdmInfo[i][gMembro] = giveplayer;
                            AdmInfo[i][AdminVaga] = 1;
                            SaveAdm();
                            break;
                        }
                    }
                }
            }
        }
        return 1;
    }
Tenta aew se te ajudei Clica no REP
Reply
#3

Ocorreu muitos erros.
Reply
#4

26 erros ?, se for vc coloca } no final , ou melhor post aki os erros e as linhas pq n tenho bola de cristal o.o
Reply
#5

@Kinho

Tinha esquecido de postar desculpe-me

ERROS:

PHP код:
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42946) : error 017undefined symbol "AdmsVaga"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42947) : error 017undefined symbol "VagaSobrando"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42983) : error 017undefined symbol "COLOR_AZULBB"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42990) : error 017undefined symbol "year"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42991) : error 017undefined symbol "hour"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42992) : error 017undefined symbol "day"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42994) : error 017undefined symbol "PAdminsLog"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42995) : error 017undefined symbol "AdmInfo"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42995) : error 036: empty statement
C
:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42995) : error 017undefined symbol "i"
C:\Users\Windows\Documents\Meus arquivos recebidos\GM Codado\BrasilCity Net do Luiz Duarte\GM Brasil City Net\Brasil City net\gamemodes\BCN.pwn(42995) : fatal error 107too many error messages on one line 
Reply
#6

Ve se sai alguns Erros Coloca no Topo do GameMode >:

pawn Код:
forward AdmsVaga();
new VagaSobrando;
#define COLOR_AZULBB 0xCCCCFFFF
new year, month,day;
new hour, minute, second;
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)