3 errors.. - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: 3 errors.. (
/showthread.php?tid=200064)
3 errors.. -
Seven. - 17.12.2010
I am getting these errors..
Код:
(31) : error 006: must be assigned to an array
(32) : error 006: must be assigned to an array
(33) : error 006: must be assigned to an array
My 3 lines:
pawn Код:
qidea = dini_Get(str,"questidea");
qtime = dini_Get(str,"questtime");
qtype = dini_Get(str,"questtype");
There all strings..
Re: 3 errors.. -
Seven. - 17.12.2010
bump
Re: 3 errors.. -
gr56 - 17.12.2010
you must set size of the array, for example
Код:
new qidea[50],qtime[50],qtype[50];
Re: 3 errors.. -
Seven. - 17.12.2010
oh like that xD thanks