[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)) RE: OnDialogResponse Inputtext - xbruno1000x - 01/10/2022 Use essa stock: Código: stock IsNumeric(const string[]) A partir disso, você só precisa usar if(!IsNumeric(inputtext)) return SendClientMessage(playerid, -1, "Você digitou um caractere inválido!"); |