Portal SAMP
[Ajuda] OnDialogResponse Inputtext - Versão de Impressão

+- Portal SAMP (https://portalsamp.com)
+-- Fórum: SA-MP (https://portalsamp.com/forumdisplay.php?fid=5)
+--- Fórum: Área de suporte (https://portalsamp.com/forumdisplay.php?fid=6)
+--- Tópico: [Ajuda] OnDialogResponse Inputtext (/showthread.php?tid=2857)



OnDialogResponse Inputtext - EXPEDITO_011 - 01/10/2022

Como saber se o player digitou algum número no inputtext?


RE: OnDialogResponse Inputtext - Carlos Victor - 01/10/2022

Use a função essa função IsNumeric

Código:
if(IsNumeric(inputtext))
    // true
else
    // false

//////////////////////////////////////////////////

IsNumeric(const string[])
{
    for (new i = 0, j = strlen(string); i < j; i++)
    {
        if (string[i] > '9' || string[i] < '0') return 0;
    }
    return 1;
}



RE: OnDialogResponse Inputtext - xbruno1000x - 01/10/2022

Use essa stock:

Código:
stock IsNumeric(const string[])
{
    if(string[0] == '0')
        return true;

    return !!strval(string);
}

A partir disso, você só precisa usar if(!IsNumeric(inputtext)) return SendClientMessage(playerid, -1, "Você digitou um caractere inválido!");