Weird error
#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


Messages In This Thread
Weird error - by remyguys - 20.04.2010, 14:51
Re: Weird error - by M4S7ERMIND - 20.04.2010, 15:37

Forum Jump:


Users browsing this thread: 1 Guest(s)