What do the run-time script errors mean?

From OHRRPGCE-Wiki
Jump to navigation Jump to search

In some cases, GAME might show you a big red script error. Here is an explanation of most possible run-time script error messages. Most of these error messages will never be displayed unless something very serious like file or memory corruption occurs, but a few of them can be triggered by mistakes in scripts.

Errors indicating a mistake on your part[edit]

Script # exceeds maximum size by #%[edit]

This can only happen if one of your scripts is really really big. If one of your scripts is this large you probably generated it with a computer program! Break it up into smaller pieces and call them one after the other.

Failed to load (type) script #, interpreter overloaded[edit]

This error means that you have reached the limit on the number of scripts running at once (currently 128). This means that either you have a recursive script which tried to recurse too deeply, or scripts are piling up without terminating. See Why does my on-keypress script freeze/produce errors when I hold down a key? for the later problem.

Failed to load (type) script #, script heap overflow[edit]

This error message means that the program has run out of space to store local variables and arguments. It is unlikely you will ever see this error. If you do, it probably means you are have a run-away recursive script, or your scripts are piling up without terminating, and also that you are using lots of local variables in your scripts.

Failed to load (type) script #[edit]

This error message is usually preceded by another error message that will give you the reason why the attempt to load the script failed. The "type" will tell you how the program was attempting to trigger the script, for example, map-autorun, NPC, after-battle, etc.

Script # does not exist[edit]

This error message means that the program tried to run a script, but it could not even find the script's data file in the RPG file. See Script error! Script (scriptid) does not exist.

division by zero[edit]

When I was in school, my teachers would always tell me that it was impossible to divide a number by zero. I always asked "Why not?". It wasn't until college that I found a teacher who was capable of giving me a good answer to that question, and when he did, the answer went right over my head. So I decided to take their word for it. If the math-people of the world say it cannot be done, then I am not going to argue with them.

Script # is in an unsupported format[edit]

The script was compiled with a version of HSpeak that this version of GAME.EXE doesn't support. This means you need to upgrade to the latest version to play the game.

encountered clean noop[edit]

A clean noop is a deliberate no-operation command that you can put into your script on purpose with the noop command. The only use of this command is as a way to stop the script interpreter and access the script debugger.

Errors indicating corrupt data or an engine bug[edit]

These errors would probably indicate a bug in the engine. Please report it! It may also be possible for them to be caused by corrupt script data or by using mismatched versions of the Game player, HSpeak, and Custom.

Interpretloop encountered noop[edit]

While fell out of bounds, landed on #[edit]

For fell out of bounds, landed on #[edit]

If statement overstepped bounds[edit]

While statement has jumped the curb[edit]

For statement is being difficult[edit]

Illegally Suspended Script[edit]

Script # became stateless[edit]

Illegal Wait Substate[edit]

stnext encountered noop # at # in #[edit]

Illegal kind # # in stnext[edit]

Unsupported math[edit]

Illegal statement type[edit]

Script # corrupt[edit]

See Also[edit]