SA-MP Forums Archive
[Ajuda] Dialog - 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] Dialog (/showthread.php?tid=499535)



Dialog - Adejair - 08.03.2014

Estou Tendo um Problema Com Dialog , Quando Clico em Inserir Com os Devidos Padrхes nгo acontece nada Mais Quando eu Clico em Cancelar Ele й Registrado '
pawn Code:
{
if(dialogid == 1)
{
if(!response)
{
SendClientMessage(playerid,-1," ");
}
if(response)
{
if(!strlen(inputtext) || strlen(inputtext) > 16 || strlen(inputtext) < 4)
return ShowPlayerDialog(playerid,1, DIALOG_STYLE_PASSWORD, "Cadastro", "\t\t {FFFFFF}Roxi{FF0000}Nario\n *-{FFFFFF}Olб, Para Poder Cadastrar Sua Conta Digite Uma Senha Valнda\nCom No Mнnimo 4 Caracteres\n", "Inserir", "Cancelar");
}
else
{
new escpass[100];
mysql_real_escape_string(inputtext, escpass);
MySQL_Register(playerid, escpass);
}
}
return 1;
}



Re: Dialog - Dieguinho - 08.03.2014

Testa ai !

pawn Code:
if(response == 1)
    {
        if(!strlen(inputtext) || strlen(inputtext) > 16 || strlen(inputtext) < 4)
        return ShowPlayerDialog(playerid,1, DIALOG_STYLE_PASSWORD, "Cadastro", "\t\t {FFFFFF}Roxi{FF0000}Nario\n *-{FFFFFF}Olб, Para Poder Cadastrar Sua Conta Digite Uma Senha Valнda\nCom No Mнnimo 4 Caracteres\n", "Inserir", "Cancelar");
    }
    else
    {
        new escpass[100];
        mysql_real_escape_string(inputtext, escpass);
        MySQL_Register(playerid, escpass);
    }
    else if(response == 0)
    {
        SendClientMessage(playerid, -1,"Coloque seu Texto");
        return 0;
    }



Re: Dialog - Adejair - 08.03.2014

pawn Code:
else if(response == 0)
Olha Sei nгo kk Nen Compilei Mais Acho que isso ae Nгo tem Muito A Ver nгo

@Edit Como eu Disse
pawn Code:
error 029: invalid expression, assumed zero
C:\Users\Adejairjunior\Documents\SA-MP\gamemodes\Released.pwn(207) : warning 215: expression has no effect



Re: Dialog - Dieguinho - 08.03.2014

Quote:
Originally Posted by Adejair
View Post
pawn Code:
else if(response == 0)
Olha Sei nгo kk Nen Compilei Mais Acho que isso ae Nгo tem Muito A Ver nгo

@Edit Como eu Disse
pawn Code:
error 029: invalid expression, assumed zero
C:\Users\Adejairjunior\Documents\SA-MP\gamemodes\Released.pwn(207) : warning 215: expression has no effect
esse codigo ele e mais antigo se o outro nгo der certo tente ele !!!

ou desse jeito

pawn Code:
if(dialogid == 1)
    {
       
        if(response == 1)
        {
            if(!strlen(inputtext) || strlen(inputtext) > 16 || strlen(inputtext) < 4)
            return ShowPlayerDialog(playerid,1, DIALOG_STYLE_PASSWORD, "Cadastro", "\t\t {FFFFFF}Roxi{FF0000}Nario\n *-{FFFFFF}Olб, Para Poder Cadastrar Sua Conta Digite Uma Senha Valнda\nCom No Mнnimo 4 Caracteres\n", "Inserir", "Cancelar");
        }
        else
        {
            new escpass[100];
            mysql_real_escape_string(inputtext, escpass);
            MySQL_Register(playerid, escpass);
        }
        if(!response)
        {
            SendClientMessage(playerid, -1," ");
        }
    }
    return 1;
}



Re: Dialog - Adejair - 08.03.2014

Nгo Funcionou Continou Registrando o Jogador ao Clicar em Cancelar ou Apertar ESC (;


Re: Dialog - Myam - 08.03.2014

pawn Code:
if(dialogid == 1)
    {
        if(response)
        {
            if(!strlen(inputtext) || strlen(inputtext) > 16 || strlen(inputtext) < 4)
                return ShowPlayerDialog(playerid,1, DIALOG_STYLE_PASSWORD, "Cadastro", "\t\t {FFFFFF}Roxi{FF0000}Nario\n *-{FFFFFF}Olб, Para Poder Cadastrar Sua Conta Digite Uma Senha Valнda\nCom No Mнnimo 4 Caracteres\n", "Inserir", "Cancelar");
            new escpass[100];
            mysql_real_escape_string(inputtext, escpass);
            MySQL_Register(playerid, escpass);
        }
        if(!response)
        {
            SendClientMessage(playerid, -1," ");
        }
    }
    return 1;
}



Re: Dialog - Adejair - 08.03.2014

Funcionou Myam Nгo posso dar Rep Agora Quando Puder Eu Te Dou Vlw De Coraзгo , Dieguinho Quando Puder Tambem Te Dou Por Tentar Ajudar Vlws ae


Re: Dialog - Dieguinho - 08.03.2014

Quote:
Originally Posted by Adejair
View Post
Funcionou Myam Nгo posso dar Rep Agora Quando Puder Eu Te Dou Vlw De Coraзгo , Dieguinho Quando Puder Tambem Te Dou Por Tentar Ajudar Vlws ae
kkk o meu dialago tava certo sу nгo sei muito de mslq


achei era outra funзгo