[Ajuda] Sistema de Registro bugado?
#1

Galera, no meu sistema de registro fizz o seguinte:

pawn Код:
if(response)
        {
            new String[100];
            if ( !strcmp ( inputtext,DOF2::GetString(String, "Senha"),  false))
            {
                SendClientMessage(playerid, COR_LARANJA, "Logado com sucesso!");
                return 1;
            }
            else
            {
                SendClientMessage(playerid, COR_VERMELHO, "|ERRO|Senha incorreta!");
                LogarPlayer(playerid);
            }
        }
        else
        {
            SendClientMessage(playerid, COR_VERMELHO, "|INFO|Voce foi kickado||Motivo:Nao se logou!");
            Kick(playerid);
        }
mas nao importa a senha que eu coloco, ele aceita.

EX: minha senha = '123'

eu coloco no dialog de login '3423421214324' e ele aceita!

oque faco?
Reply
#2

pawn Код:
if(response)
        {
            new String[100];
            if (strcmp ( inputtext,DOF2::GetString(String, "Senha"),  false))
            {
                SendClientMessage(playerid, COR_LARANJA, "Logado com sucesso!");
                return 1;
            }
            else
            {
                SendClientMessage(playerid, COR_VERMELHO, "|ERRO|Senha incorreta!");
                LogarPlayer(playerid);
            }
        }
        else
        {
            SendClientMessage(playerid, COR_VERMELHO, "|INFO|Voce foi kickado||Motivo:Nao se logou!");
            Kick(playerid);
        }
Tenta
Reply
#3

Se voce alterou seu nivel de admin pelo SeuNome.ini pode ser que sua senha la esteja: 0
Reply
#4

Tenta ae.

pawn Код:
if(response)
        {
            new String[100];
            if (strcmp ( inputtext,DOF2::GetString(String, "Senha"),  false))
            {
                SendClientMessage(playerid, COR_LARANJA, "Logado com sucesso!");
                 LogarPlayer(playerid);
            }
            else
            {
                SendClientMessage(playerid, COR_VERMELHO, "|ERRO|Senha incorreta!");
                return 1;
            }
        }
        else
        {
            SendClientMessage(playerid, COR_VERMELHO, "|INFO|Voce foi kickado||Motivo:Nao se logou!");
            Kick(playerid);
        }
@Off

Isto estuprou sua indentaзгo hein amigo.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)