Disable

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search

Syntax:

[refVar.]Disable

Disables the calling object. Disabled objects are not loaded in the world, disabled actors do not process their AI, but scripts do run on disabled objects.

Notes[edit | edit source]

  • Disable does not remove objects from the game, just stops them from rendering. Do not rely on Disable to prevent savegame bloat by removing objects.
  • Disabled actors cannot be forced to activate objects via a scripted Activate function.
  • Using this command on player will always cause game to crash.
  • Disabling the object on which a spell is active during the ScriptEffectStart block causes unpredictable behavior in the later spell blocks.
  • Does not work on objects with a parent ref. You will have to use the function on the parent ref instead. Use GetParentRef to find the parent ref. There is currently no function to determine the "Enable State to Opposite of Parent" flag.


See Also[edit | edit source]

Enable

GetDisabled