Difference between revisions of "GetNthEffectArea - Enchantment"
Jump to navigation
Jump to search
imported>PurpleLunchbox m |
imported>Behippo |
||
Line 2: | Line 2: | ||
[[Category:Papyrus]] | [[Category:Papyrus]] | ||
[[Category:SKSE]] | [[Category:SKSE]] | ||
'''SKSE Member of:''' [[Enchantment Script]], [[Ingredient Script]], [[Potion Script]], and [[Spell Script]] | '''SKSE Member of:''' [[Enchantment Script]], [[Ingredient Script]], [[Potion Script]], [[Scroll Script]], and [[Spell Script]] | ||
Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE) | Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE) | ||
Line 27: | Line 27: | ||
*[[Ingredient Script]] | *[[Ingredient Script]] | ||
*[[Potion Script]] | *[[Potion Script]] | ||
*[[Scroll Script]] | |||
*[[Spell Script]] | *[[Spell Script]] |
Revision as of 14:48, 10 May 2012
SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, Scroll Script, and Spell Script
Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE)
Syntax
int Function GetNthEffectArea(int n) native
Parameters
- n: The index of which effect area will be returned.
Return Value
Returns the area of the Nth effect attached to this enchantment, ingredient, potion, or spell.
Examples
int area = enchantment.GetNthEffectArea(0)
Debug.Trace("Enchantments first effect has an area of " + area)