Welcome to the Creatures Wiki! Log in and join the community.

INST

From Creatures Wiki
Revision as of 01:31, 5 April 2015 by ScoobyGambit (talk | contribs)
Jump to navigation Jump to search

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 need to be completed without interruption, so a related script isn't processed before the object is defined (which usually causes the game to crash).

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.
  • LOCK is another way to make sure commands are completed before interruption.