06.11.2012, 15:30
"Array index out of bounds" means that your script is exceeding the size of the array somewhere. For example, you've got this:
And you do this
Which gives the error above, because your array has only 10 slots.
In your case you have an array with 150 slots (0 to 149) and you're trying to acces slot 150.
Код:
new array[10];
Код:
new var = array[15];
In your case you have an array with 150 slots (0 to 149) and you're trying to acces slot 150.