Difference between revisions of "GetNthEffectArea - Enchantment"
Jump to navigation
Jump to search
imported>Behippo |
imported>Cipscis m (Cipscis moved page GetNthEffectArea to GetNthEffectArea - Enchantment: Standardising name) |
Latest revision as of 15:44, 5 September 2012
SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, Scroll Script, and Spell Script
Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE)
Syntax[edit | edit source]
int Function GetNthEffectArea(int n) native
Parameters[edit | edit source]
- n: The index of which effect area will be returned.
Return Value[edit | edit source]
Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell.
Examples[edit | edit source]
int area = enchantment.GetNthEffectArea(0)
Debug.Trace("Enchantments first effect has an area of " + area)