GetNthEffectMagicEffect - Enchantment

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

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

SyntaxEdit

MagicEffect Function GetNthEffectMagicEffect(int n) native

ParametersEdit

  • n: The index of which effect is to be returned.

Return ValueEdit

Returns the Nth MagicEffect attached to this enchantment, ingredient, potion, or spell.

ExamplesEdit

int numEffects = enchantment.GetNumEffects()
int index = 0
While index < numEffects
	MagicEffect effect = enchantment.GetNthEffectMagicEffect(index)
	Debug.Trace("Index: " + index + " Effect: " + effect)
	index += 1
EndWhile

See AlsoEdit