07.01.2015, 12:49
"initialization data exceeds declared size" means that you're trying to put more data in an array than you've declared it to contain. It's similar to doing:
Where it's trying to push 5 values into an array that can only contain 3.
pawn Код:
new myArrayVar[3] = {1, 3, 5, 7, 13};