Jump to content

Recommended Posts

Posted

It means you are trying to read an index that doesn't exist in an array.

example: You have an array with 9 rows and you are trying to read row 11

example2: You have an array with 9 rows and 2 collumns and you are trying to read row2 collumn 3

To figure out what went wrong, try to reproduce the error while running the script from scite. That should show you where the error occurs.

Posted (edited)

The variable used as an "array" has to many "numbers".

Example

Global $Array[10]

if $Array[10] = 100 then.... "this will cause an error"

The tenth array is "9" it starts at 0 through 9.

****************

The error was found on line #798. Hopefully you can/are using Scite Editor to help with errors and line numbers

8)

Edited by Valuater

NEWHeader1.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...