Difference between revisions of "AddFullEffectItemC"
Jump to navigation
Jump to search
imported>Haama (Notes on breaking display limitations, magic items) |
imported>DragoonWraith (range codes) |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 3: | Line 3: | ||
duration:long range:short magicItem:ref | duration:long range:short magicItem:ref | ||
Adds a fully defined EffectItem to the magic item with the specified MagicEffect, magnitude, area, duration and range. | |||
{{OBSE Magic Range Codes}} | |||
==Notes== | ==Notes== | ||
* Uses the codes returned by [[GetNthEffectItemCode]] | |||
* Magic items include Potions, Ingredients, Spells and Enchantments. They do not include Sigil Stones or Soulgems. Also note that the Enchantment refers to the base enchantment. If the enchantment is on two items changing it on one item will change it on the other. | * Magic items include Potions, Ingredients, Spells and Enchantments. They do not include Sigil Stones or Soulgems. Also note that the Enchantment refers to the base enchantment. If the enchantment is on two items changing it on one item will change it on the other. | ||
* Potions will only show up to 8 effects, but all of the effects will still apply when used, and can be accessed with any '''GetNthEffectItem...''' function. | * Potions will only show up to 8 effects, but all of the effects will still apply when used, and can be accessed with any '''GetNthEffectItem...''' function. | ||
** Untested for other magic items | ** Untested for other magic items | ||
* Adding a hostile effect to a Spell which previously had none will not make the Spell hostile. Use [[SetSpellHostile]] to update the hostility. | |||
==See Also== | ==See Also== | ||
* [[GetNthEffectItemCode]] | * [[GetNthEffectItemCode]] | ||
* [[GetMagicEffectCode]] | * [[GetMagicEffectCode]] | ||
* [[AddEffectItem]] | |||
* [[AddEffectItemC]] | * [[AddEffectItemC]] | ||
* [[AddFullEffectItem]] | * [[AddFullEffectItem]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
Line 19: | Line 25: | ||
[[Category:Magic Functions]] | [[Category:Magic Functions]] | ||
[[Category:Magic Functions (OBSE)]] | [[Category:Magic Functions (OBSE)]] | ||
[[Category:Magic Functions - Effect Item (OBSE)]] |
Latest revision as of 00:31, 15 January 2009
AddFullEffectItem - adds a fully defined EffectItem to the magic item with the specified MagicEffect, magnitude, area, duration and range. Uses a long value returned from GetNthEffectItemCode or GetMagicEffectCode.
(index:short) AddFullEffectItemC nuEffectCode:long magnitude:long area:long duration:long range:short magicItem:ref
Adds a fully defined EffectItem to the magic item with the specified MagicEffect, magnitude, area, duration and range.
Range Codes: 0: Self 1: Touch 2: Target
Notes[edit | edit source]
- Uses the codes returned by GetNthEffectItemCode
- Magic items include Potions, Ingredients, Spells and Enchantments. They do not include Sigil Stones or Soulgems. Also note that the Enchantment refers to the base enchantment. If the enchantment is on two items changing it on one item will change it on the other.
- Potions will only show up to 8 effects, but all of the effects will still apply when used, and can be accessed with any GetNthEffectItem... function.
- Untested for other magic items
- Adding a hostile effect to a Spell which previously had none will not make the Spell hostile. Use SetSpellHostile to update the hostility.