Weird error
#1

I get this error and i haven't seen it before.
Any idea how to fix it?

C:\Users\Remy\Downloads\samp03asvr_R7_win32\filter scripts\Carsystem.pwn(136) : error 052: multi-dimensional arrays must be fully initialized
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Error.


Pastebin Script : http://pastebin.com/DyNMbcsV
Reply
#2

Quote:
Originally Posted by remyguys
error 052: multi-dimensional arrays must be fully initialized
Random code:
pawn Код:
new Values[4][3] =
{
  {100, 200, 300},
  {200, 300, 100},
  {300, 100, 200}
};
replacing Values[4][3] to Values[3][3] will fix the error.

Also, the code below is waste of space and your script is full of that:
pawn Код:
new Values[3][1] =
{
  {100},
  {200},
  {300}
};
This is all you need:
pawn Код:
new Values[3] = { 100, 200, 300 };
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)