error 1
#1

Код:
		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.
Help would be greatful
Reply
#2

can u tell me what r u trying to do?
Reply
#3

Quote:
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.
Help would be greatful
Try this:
Код:
	new gVehicleBombs[16][9] = {
	553, 1, 1, 1, 0, 1, 0, 1, 0 };
Reply
#4

You defined that the array contains 9 lines while there is only one. Try
pawn Код:
new gVehicleBombs[1][9] = {
    {553, 1, 1, 1, 0, 1, 0, 1, 0}
    }; // this is the line 58
Reply


Forum Jump:


Users browsing this thread: