13.12.2014, 18:33
Well your array got two dimensions so you need to define it like that
But now you should get an error if you try to use it in ShowPlayerDialog
You need to format a string with your array or you use another global array with only one dimension
pawn Код:
new APlanes[][] =
{ // start 1. dim
// 0 - APlanes[0][x]
{ // start 2. dim
// 0 - APlanes[0][0]
"Andromada",
// 10 - APlanes[0][10] - because "Andromada" is 10 cells long
592
}, // end 2. dim
// 1 - APlanes[1][x]
{ // start 2. dim
// 0 - APlanes[1][0]
"AT400",
// 6 - APlanes[1][6]
577
}, // end 2. dim
}; // end 1 dim
You need to format a string with your array or you use another global array with only one dimension