error 029: invalid expression, assumed zero - 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: error 029: invalid expression, assumed zero (
/showthread.php?tid=611488)
error 029: invalid expression, assumed zero -
IamPuzo - 07.07.2016
I'm getting error when compiling script, if I remove ; then also same problem!
LINE 1005:-
PHP код:
new RandomMSG[][] =
{
"{00309E}[Help]{FFFFFF} If you have any questions regarding the server, use /irc",
}; //line1005
Код:
C:\Users\Faisal\Downloads\OLD\gamemodes\Games.pwn(1005) : error 029: invalid expression, assumed zero
C:\Users\Faisal\Downloads\OLD\gamemodes\Games.pwn(1005) : error 008: must be a constant expression; assumed zero
Re: error 029: invalid expression, assumed zero -
Dusan01 - 07.07.2016
You dont need
, because its last line, so you dont need it... try like this:
PHP код:
new RandomMSG[][] =
{
"{00309E}[Help]{FFFFFF} If you have any questions regarding the server, use /irc"
}; //line1005