SA-MP Forums Archive
Variable - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Variable (/showthread.php?tid=350613)



Variable - DragonYancy - 13.06.2012

LINE
Код:
new i = inputtext
ERROR
Код:
error 033: array must be indexed (variable "-unknown-")
I didn't understand anything from this error, I have inputtext[] at OnDialogResponse...


Re: Variable - JhnzRep - 13.06.2012

nevermind


Re: Variable - PrawkC - 13.06.2012

inputtext is a string, you're trying to assign an integer to it.. change your code to

new i = strval(inputtext);


Re: Variable - JhnzRep - 13.06.2012

That's the code I posted :P, but then I realized he might not want to change it into a interger...


Re: Variable - PrawkC - 13.06.2012

Quote:
Originally Posted by JhnzRep
Посмотреть сообщение
That's the code I posted :P, but then I realized he might not want to change it into a interger...
That is why I explained the issue aswell.


Re: Variable - DragonYancy - 13.06.2012

Thank you, PrawkC