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



Como ver isso - BrianD - 07.12.2016

Ola gostaria de uma funзгo que compara-se se o player digitou algo no dialogo ou se deixou vazio se deixou vazio ele retorna o mesmo dialogo atй digitar algo pois nгo consegui fazer isso aqui o code
pawn Код:
{
        new nome[MAX_PLAYER_NAME];
        GetPlayerName(playerid, nome, sizeof(nome));
        if(response)
        {
            new str[MAX_PLAYER_NAME];
            format(str, sizeof(str), "Contas/%s.ini", nome);
            DOF2_CreateFile(str);
            new senha[28];
            format(senha, sizeof(senha), "%s", inputtext);
            DOF2_SetString(str, "Senha", senha);
            DOF2_SaveFile();
            ShowPlayerDialog(playerid, dialog_login, DIALOG_STYLE_INPUT, "{FF230A}Login", "\t{1CD622}Por favor faзa o login.", "Logar-se", "Sair");
        }
        else
        {
            Kick(playerid);
        }
    }
caso ele nгo digita-se nada iria voltar pro dialog_registro atй digitar algo la


Re: Como ver isso - Marllun - 07.12.2016

Код:
if(!strlen(inputtext))
{
ShowPlayerDialog(playerid, LOGinnn, DIALOG_STYLE_PASSWORD, "blablabla", blabla, "Logar", "Cancelar");
SendClientMessage(playerid,0x1E90FFAA,"CAMPO EM BRANCO - Digite sua senha corretamente !");
return true;
}



Re: Como ver isso - BrianD - 07.12.2016

vlw ae man funfo aqui