14.01.2012, 19:31
pawn Код:
public OnFilterScriptInit()
{
new IteratorArray:Example[10]<20>;
Iter_Init(Example);
Iter_Add(Example[1], 91);
foreach(Example[1], idx) {}
printf("ABC123");
return 1;
}
B) I only need to initialize a multi dimensional array at compile.. right? not whenever I use it?