What This Mean ?
#1

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}
};
Reply
#2

pawn Код:
new Float:FBISpawns[2][4] = // It should have 2
{
    {941.1046,1736.1487,8.8516,270.8704} // Only 1 here
};
Reply
#3

Fixed

pawn Код:
new Float:FBISpawns[1][4] =
{
    {941.1046,1736.1487,8.8516,270.8704}
};
Now I understand
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)