Server Crashes. Rep+ !
#2

[06:49:10] [debug] Run time error 4: "Array index out of bounds"

Meaning that you are trying to access an array element that does not exist.

Say, you have created an array like this:
Code:
new myArray = [0, 1, 2]; // not representative code
Now, the array has three positions: 0, 1 and 2 (arrays start at position 0). If you are calling the array like this:
Code:
myArray[3];
Then you will get an array index out of bounds. You are getting this error during server runtime, so it is probably a dynamic field that you are accessing.
Reply


Messages In This Thread
Server Crashes. Rep+ ! - by stylehaziq01 - 04.06.2015, 06:10
Re: Server Crashes. Rep+ ! - by mamorunl - 04.06.2015, 07:54
Re: Server Crashes. Rep+ ! - by Konstantinos - 04.06.2015, 11:13
Re: Server Crashes. Rep+ ! - by stylehaziq01 - 05.06.2015, 09:24
Re: Server Crashes. Rep+ ! - by Konstantinos - 05.06.2015, 09:32
Re: Server Crashes. Rep+ ! - by stylehaziq01 - 05.06.2015, 09:50
Re: Server Crashes. Rep+ ! - by Konstantinos - 05.06.2015, 10:05
Re: Server Crashes. Rep+ ! - by stylehaziq01 - 05.06.2015, 10:10
Re: Server Crashes. Rep+ ! - by Konstantinos - 05.06.2015, 10:17

Forum Jump:


Users browsing this thread: 2 Guest(s)