GetNthEffectMagnitude - Enchantment
Revision as of 03:08, 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...")
SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, and Spell Script
Returns the magnitude of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE)
Syntax
int Function GetNthEffectMagnitude(int n) native
Parameters
- n: The index of which effect magnitude will be returned.
Return Value
Returns the magnitude of the Nth effect attached to this enchantment, ingredient, potion, or spell.
Examples
int magnitude = enchantment.GetNthEffectMagnitude(0)
Debug.Trace("Enchantments first effect has a magnitude of " + magnitude)