Difference between revisions of "Disable"
Jump to navigation
Jump to search
imported>DragoonWraith (Disable != Delete) |
imported>ZuTheSkunk m |
||
(10 intermediate revisions by 8 users not shown) | |||
Line 1: | Line 1: | ||
'''Syntax:''' | '''Syntax:''' | ||
Disable | ''[refVar.]''Disable | ||
Disables the calling object. Disabled objects are not loaded in the world, disabled actors do not process their AI, but scripts | 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. | ||
Disable does '''not''' remove objects from the game, just stops them from rendering. Do not rely on Disable to | ==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. | |||
* 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. | |||
**[[ScriptEffectUpdate]] blocks will execute several times, but not for the full duration of the spell. | |||
**The [[ScriptEffectFinish]] block will sometimes fail to execute. | |||
* {{Disable State and Parent Ref}} | |||
==See Also== | ==See Also== | ||
Line 12: | Line 19: | ||
[[Category: Functions]] | [[Category: Functions]] | ||
[[Category:Functions (CS)]] | |||
[[Category: Functions (CS 1.0)]] | |||
[[Category: Miscellaneous Functions]] | [[Category: Miscellaneous Functions]] | ||
[[Category: Miscellaneous Functions (CS 1.0)]] |
Latest revision as of 00:57, 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[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.
- ScriptEffectUpdate blocks will execute several times, but not for the full duration of the spell.
- The ScriptEffectFinish block will sometimes fail to execute.
- 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.