Difference between revisions of "GetNthEffectArea - Enchantment"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>PurpleLunchbox
 
imported>PurpleLunchbox
m
Line 8: Line 8:
== Syntax ==
== Syntax ==
<source lang="papyrus">
<source lang="papyrus">
float Function GetNthEffectArea(int n) native
int Function GetNthEffectArea(int n) native
</source>
</source>


Line 19: Line 19:
== Examples ==
== Examples ==
<source lang="papyrus">
<source lang="papyrus">
float area = enchantment.GetNthEffectArea(0)
int area = enchantment.GetNthEffectArea(0)
Debug.Trace("Enchantments first effect has an area of " + area)
Debug.Trace("Enchantments first effect has an area of " + area)
</source>
</source>

Revision as of 03:10, 10 May 2012

SKSE Member of: Enchantment Script, Ingredient Script, Potion 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)

See Also