[dismiss]
This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.
Difference between revisions of "Common Mistakes"
Jump to navigation
Jump to search
→Altering Persistent References: clarity
imported>Dev akm (→Persistent Doors: make issue more generic) |
imported>Dev akm (→Altering Persistent References: clarity) |
||
Line 26: | Line 26: | ||
==Altering Persistent References== | ==Altering Persistent References== | ||
Persistent references such as doors are tricky to alter in a mod since their position is stored in the player savegame data. Modders should try to avoid moving doors and other persistent objects from the original game if possible. If you do have to move them, the only reliable way to do it without requiring a new savegame is to use a script to | Persistent references such as doors are tricky to alter in a mod since their position is stored in the player savegame data. Modders should try to avoid moving doors and other persistent objects from the original game if possible. If you do have to move them, the only reliable way to do it without requiring a new savegame is to use a script to force the updated locations to be recorded in the savegame. | ||
== Changing Script Variables == | == Changing Script Variables == |