20.04.2010, 15:37
Quote:
Originally Posted by remyguys
error 052: multi-dimensional arrays must be fully initialized
|
pawn Код:
new Values[4][3] =
{
{100, 200, 300},
{200, 300, 100},
{300, 100, 200}
};
Also, the code below is waste of space and your script is full of that:
pawn Код:
new Values[3][1] =
{
{100},
{200},
{300}
};
pawn Код:
new Values[3] = { 100, 200, 300 };