GetNthEffectDuration - Enchantment

Revision as of 14:48, 10 May 2012 by imported>Behippo

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)

Syntax

int Function GetNthEffectDuration(int n) native

Parameters

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

Return Value

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

Examples

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

See Also