*** This topic title is not descriptive.
#2

"Array index out of bounds" means that your script is exceeding the size of the array somewhere. For example, you've got this:
Код:
new array[10];
And you do this
Код:
new var = array[15];
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.
Reply


Messages In This Thread
*** This topic title is not descriptive. - by Camorra - 06.11.2012, 15:28
Re: Whats worng here ? - by Basssiiie - 06.11.2012, 15:30
Re: Whats worng here ? - by Camorra - 06.11.2012, 15:35
Re: Whats worng here ? - by Camorra - 06.11.2012, 15:52
Re: Whats worng here ? - by Basssiiie - 06.11.2012, 17:41
Re: Whats worng here ? - by Camorra - 06.11.2012, 18:31

Forum Jump:


Users browsing this thread: 1 Guest(s)