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

Fixed.
Reply
#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
#3

ye but where i'll find that one now
Reply
#4

Код:
 for (new i = 0; i <= MAX_PLAYERS; i++)
Replaced with

Код:
for(new i=0;i<MAX_PLAYERS;i++)
Reply
#5

That might be the fix. Have you tried it?
Reply
#6

Quote:
Originally Posted by Basssiiie
Посмотреть сообщение
That might be the fix. Have you tried it?
Yes, After change it server.log wont spam again.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)