GetNthEffectDuration - Enchantment

Revision as of 16:46, 5 September 2012 by imported>Cipscis (Cipscis moved page GetNthEffectDuration to GetNthEffectDuration - Enchantment: Standardising name)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, Scroll Script, and Spell Script

Returns the duration of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE)

SyntaxEdit

int Function GetNthEffectDuration(int n) native

ParametersEdit

  • n: The index of which effect duration will be returned.

Return ValueEdit

Returns the duration of the Nth effect attached to this enchantment, ingredient, potion, or spell.

ExamplesEdit

int duration = enchantment.GetNthEffectDuration(0)
Debug.Trace("Enchantments first effect has a duration of " + duration)

See AlsoEdit