17.10.2009, 16:03
I just tested this code and it works
And I can guarantee that it works 100% with enumerators since I use examples like that a lot
pawn Код:
new array[20];
new someinfo[5];
public OnFilterScriptInit()
{
someinfo[1] = 12;
array[someinfo[1]] = 20;
printf("%d",array[12]);
}