28.04.2013, 07:21
pawn Код:
new array[3]; // <- In PAWN those are not initialized yet, so it keeps them zero
new array[3] = {1, 2, 3} // <- Initializes array with 1, 2, and 3
new array[3] = {3, ...} // <- Initializes the whole array with the value 3