Portal SAMP
[Ajuda] Erro 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] Erro inputtext (/showthread.php?tid=1755)



Erro inputtext - EXPEDITO_011 - 22/10/2021

Esse foi o erro:

i.pwn(424) : error 033: array must be indexed (variable "inputtext")


Linha do erro:

Código:
if(!inputtext)
{
ShowPlayerDialog(playerid, REGISTRO, DIALOG_STYLE_INPUT, "XxX - Registro", registrar, "Registrar", "Sair");
}

Já consegui, faltou o strlen

if(strlen(!inputtext))


RE: Erro inputtext - ProKillerPa - 22/10/2021

(22/10/2021 01:21)EXPEDITO_011 Escreveu: Esse foi o erro:

i.pwn(424) : error 033: array must be indexed (variable "inputtext")


Linha do erro:

Código:
if(!inputtext)
{
ShowPlayerDialog(playerid, REGISTRO, DIALOG_STYLE_INPUT, "XxX - Registro", registrar, "Registrar", "Sair");
}

Já consegui, faltou o strlen

if(strlen(!inputtext))

Use nesse formato: if(!strlen(inputtext)) return ...