Difference between revisions of "GetNthEffectDuration - Enchantment"
Jump to navigation
Jump to search
imported>PurpleLunchbox (Created page with "Category:Scripting Category:Papyrus Category:SKSE '''SKSE Member of:''' Enchantment Script, Ingredient Script, Potion Script, and Spell Script Re...") |
imported>Cipscis m (Cipscis moved page GetNthEffectDuration to GetNthEffectDuration - Enchantment: Standardising name) |
||
(One intermediate revision by one other user not shown) | |||
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 duration of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE) | Returns the duration 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]] |
Latest revision as of 15:46, 5 September 2012
SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, Scroll Script, and Spell Script
Returns the duration of the Nth effect attached to this enchantment, ingredient, potion, or spell. (This function requires SKSE)
Syntax[edit | edit source]
int Function GetNthEffectDuration(int n) native
Parameters[edit | edit source]
- n: The index of which effect duration will be returned.
Return Value[edit | edit source]
Returns the duration of the Nth effect attached to this enchantment, ingredient, potion, or spell.
Examples[edit | edit source]
int duration = enchantment.GetNthEffectDuration(0)
Debug.Trace("Enchantments first effect has a duration of " + duration)