GetNthEffectMagicEffect - Enchantment

From the CreationKit Wiki
Revision as of 03:24, 10 May 2012 by imported>PurpleLunchbox (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Enchantment Script, Ingredient Script, Potion Script, and Spell Script Re...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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

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

Syntax

MagicEffect Function GetNthEffectMagicEffect(int n) native

Parameters

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

Return Value

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

Examples

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 Also