Difference between revisions of "Common Bugs"

355 bytes removed ,  06:32, 16 October 2009
revert - you cannot Goto a Label that appears after your Goto
imported>DragoonWraith
(→‎Example: doesn't work)
imported>DragoonWraith
(revert - you cannot Goto a Label that appears after your Goto)
Line 72: Line 72:


This problem is fairly common with mods that do a lot of inventory manipulation, such as ingredient sorters. Similar problems also happen when selling items that have Extra Data. The frequency of the problem is increased by mods that assign ownership to more things in the game, such as [http://planetelderscrolls.gamespy.com/View.php?view=OblivionMods.Detail&id=197 Guild Item Ownership], [http://tesnexus.com/downloads/file.php?id=5665 Clutter Ownership], and [http://devnull.sweetdanger.com/OOO/ Oscuro's Oblivion Overhaul]. In a few cases this problem can lead to crashes, as with [http://www.uesp.net/wiki/Tes4Mod:FCOM#General_Instability_Issues Selling Stolen/Duplicated Alchemy Equipment].
This problem is fairly common with mods that do a lot of inventory manipulation, such as ingredient sorters. Similar problems also happen when selling items that have Extra Data. The frequency of the problem is increased by mods that assign ownership to more things in the game, such as [http://planetelderscrolls.gamespy.com/View.php?view=OblivionMods.Detail&id=197 Guild Item Ownership], [http://tesnexus.com/downloads/file.php?id=5665 Clutter Ownership], and [http://devnull.sweetdanger.com/OOO/ Oscuro's Oblivion Overhaul]. In a few cases this problem can lead to crashes, as with [http://www.uesp.net/wiki/Tes4Mod:FCOM#General_Instability_Issues Selling Stolen/Duplicated Alchemy Equipment].
==Notes==
* One way of getting around the broken functionality of removeitem is to use the OBSE 'label' and 'goto' functions immideately after the use of removeitem before an endif block.
==Example==
If (something)
  player.removeitem
  goto 100
endif
label 100
If(something)
<more code>
:You cannot Goto a Label that appears after your Goto.


== Oblivion Realm Resets ==
== Oblivion Realm Resets ==