new gVehicleBombs[16][9] = { {553, 1, 1, 1, 0, 1, 0, 1, 0} }; // this is the line 58
C:\Program Files\Rockstar Games\GTA San Andreas\my server\filterscripts\bomber.pwn(59) : error 052: multi-dimensional arrays must be fully initialized Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error.
Originally Posted by 02manchestera
Код:
new gVehicleBombs[16][9] = { {553, 1, 1, 1, 0, 1, 0, 1, 0} }; // this is the line 58 Код:
C:\Program Files\Rockstar Games\GTA San Andreas\my server\filterscripts\bomber.pwn(59) : error 052: multi-dimensional arrays must be fully initialized Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 1 Error. |
new gVehicleBombs[16][9] = { 553, 1, 1, 1, 0, 1, 0, 1, 0 };
new gVehicleBombs[1][9] = {
{553, 1, 1, 1, 0, 1, 0, 1, 0}
}; // this is the line 58