What This Mean ? - 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: What This Mean ? (
/showthread.php?tid=406784)
What This Mean ? -
BodyBoardVEVO - 11.01.2013
Hey, What This Mean ? I just dont understand
Error
pawn Код:
C:\Program Files\Files2\SA-MP Servers\Cops and Robbers [TESTING]\gamemodes\NVCNR.pwn(1422) : error 052: multi-dimensional arrays must be fully initialized
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
1 Error.
1422 Line
pawn Код:
new Float:FBISpawns[2][4] =
{
{941.1046,1736.1487,8.8516,270.8704}
};
Re: What This Mean ? -
Konstantinos - 11.01.2013
pawn Код:
new Float:FBISpawns[2][4] = // It should have 2
{
{941.1046,1736.1487,8.8516,270.8704} // Only 1 here
};
Re: What This Mean ? -
BodyBoardVEVO - 11.01.2013
Fixed
pawn Код:
new Float:FBISpawns[1][4] =
{
{941.1046,1736.1487,8.8516,270.8704}
};
Now I understand