Difference between revisions of "Disable"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>UDUN
imported>ZuTheSkunk
(Using on player note)
Line 11: Line 11:
**The [[ScriptEffectFinish]] block will sometimes fail to execute.
**The [[ScriptEffectFinish]] block will sometimes fail to execute.
* {{Disable State and Parent Ref}}
* {{Disable State and Parent Ref}}
* Using this command on player will always cause game to crash.


==See Also==  
==See Also==  

Revision as of 00:56, 14 June 2010

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

  • 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.
  • 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.


  • Using this command on player will always cause game to crash.

See Also

Enable

GetDisabled