[DUV] Erros!
#1

Fiz de tudo e nada acontece!

pawn Code:
F:\Insane Life Brasil 1.1b.pwn(5025) : warning 204: symbol is assigned a value that is never used: "val"
F:\Insane Life Brasil 1.1b.pwn(5100) : warning 204: symbol is assigned a value that is never used: "val"
F:\Insane Life Brasil 1.1b.pwn(6816) : warning 202: number of arguments does not match definition
F:\Insane Life Brasil 1.1b.pwn(11773) : error 021: symbol already defined: "Encrypt"
F:\Insane Life Brasil 1.1b.pwn(11782) : warning 209: function "Encrypt" should return a value
F:\Insane Life Brasil 1.1b.pwn(12042) : error 021: symbol already defined: "ini_GetKey"
F:\Insane Life Brasil 1.1b.pwn(12051) : error 021: symbol already defined: "ini_GetValue"
F:\Insane Life Brasil 1.1b.pwn(39603) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg")
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


3 Errors.
Reply
#2

Quote:
Originally Posted by LeoH
Fiz de tudo e nada acontece!
Tentou fazer oquк?
Pelo visto foi algo em Login,Registrar,Salvar... mas se vocк explicar ajuda.

Reply
#3

Eu tentei Botar aquele Login BOx no meu GM! aew deu nisso!
Reply
#4

Pode postar o seu comando de login, o com barra (/) /login?

para mim ver o problema...
Reply
#5

pawn Code:
if (strcmp(cmd, "/Logar", true) ==0 )
    {
      if(IsPlayerConnected(playerid))
      {
        new tmppass[64];
            if(gPlayerLogged[playerid] == 1)
            {
                SendClientMessage(playerid, COLOR_DBLUE, "::ILB:: Voce ja esta logado.");
                return 1;
            }
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp))
            {
                SendClientMessage(playerid, COLOR_GRAD1, "USE: /Logar [Senha]");
                return 1;
            }
            strmid(tmppass, tmp, 0, strlen(cmdtext), 255);
            Encrypt(tmppass);
            OnPlayerLogin(playerid,tmppass);
        }
        return 1;
    }
Reply
#6

Adicione isto e veja se funciona:

pawn Code:
if (strcmp(cmd, "/login", true) ==0 )
    {
      if(IsPlayerConnected(playerid))
      {
        new tmppass[64];
            if(gPlayerLogged[playerid] == 1)
            {
                SendClientMessage(playerid, COLOR_DBLUE, "::ILB:: Voce ja esta logado.");
                return 1;
            }
            ShowPlayerDialog(playerid, 12345, DIALOG_STYLE_INPUT, "LOGIN", "Bem vindo ao Insane Life Brasil, digite sua senha e clique em logar!", "Logar", "Cancelar");

        }
        return 1;


    }

public OnDialogResponse(playerid, dialogid, response, listitem, inputtext[])
{
  if(dialogid == 12345)
  {
         if(response == 1)
     {
                new tmppass[64];
              if(!strlen(inputtext))
              {
              ShowPlayerDialog(playerid,12346,DIALOG_STYLE_INPUT,"Insane Life","Bem vindo ao Insane Life Brasil, digite sua senha e clique em logar!","Logar","Cancelar");
                  return 1;
              }
              strmid(tmppass, inputtext, 0, strlen(inputtext), 255);
              Encrypt(tmppass);
              OnPlayerLogin(playerid,tmppass);
     }
     else
         {
              SendClientMessage(playerid, COLOR_WHITE, "Vocк nгo quis logar, por isso, foi kickado. (:");
              Kick(playerid);
         }
    }
    return 0;
}
depois vocк edita os textos, criei em meu GM.
Reply
#7

Depois de fazer o que o Woozie disse, apague as funзхes que estгo repetidas:

pawn Code:
F:\Insane Life Brasil 1.1b.pwn(11773) : error 021: symbol already defined: "Encrypt"
F:\Insane Life Brasil 1.1b.pwn(12042) : error 021: symbol already defined: "ini_GetKey"
F:\Insane Life Brasil 1.1b.pwn(12051) : error 021: symbol already defined: "ini_GetValue"

// Caso nгo for usar funзхes de /pm apague tambйm:
F:\Insane Life Brasil 1.1b.pwn(39603) : warning 235: public function lacks forward declaration (symbol "OnPlayerPrivmsg")

// Se quiser tirar os warnings de variбvel nгo usada, apague:
F:\Insane Life Brasil 1.1b.pwn(5025) : warning 204: symbol is assigned a value that is never used: "val"
F:\Insane Life Brasil 1.1b.pwn(5100) : warning 204: symbol is assigned a value that is never used: "val"
Reply
#8

Nгo fuincionou, vc poderia me explicar como bota Login BOX em um GM?
Reply
#9

Quote:
Originally Posted by LeoH
Nгo fuincionou, vc poderia me explicar como bota Login BOX em um GM?
GF?
Reply
#10

Sim!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)