Creatures Wiki
Advertisement
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

INST is a CAOS command that causes the following commands to be executed in a single tick. As such, it is commonly used at the beginning of an injection script to make sure the object injects instantaneously.

Usage

Syntax: INST

Causes the following commands to be executed in a single tick. Should be used for commands that could screw up the world if interrupted.

INST state is broken either with the SLOW command or the WAIT command.

Example

Sets INST, does stuff that shouldn't be interrupted, then goes back to normal speed.

INST
Dangerous stuff!!
SLOW

See also

  • SLOW turns off INST.
  • WAIT makes the script wait, which automatically turns off INST.
Advertisement