25.07.2012, 12:18
Any of those arrays you use only 7 cells big? From the looks of the error your doing something similar to this.
I guess your looping one too many times.
pawn Код:
public OnPlayerConnect(playerid)
{
new arr[7];
arr[8] = 666;//actually arr[7] would be out of bounds but i used '8' for clarity.
return 1;
}