20.05.2012, 16:56
No, to get the size of the second dimension, you simply use sizeof(variable[]).
pawn Code:
new array[10][20][30];
sizeof(array) // returns 10
sizeof(array[]) // returns 20
sizeof(array[][]) // returns 30