24.12.2011, 20:35
The problem is probably here:
It should be like this:
Because max available array index is sizeof(GateInfo)-1
pawn Код:
for(new s = 0; s <= sizeof(GateInfo); s++)
pawn Код:
for(new s = 0; s < sizeof(GateInfo); s++)