Difference between revisions of "GetCostliestEffectIndex - 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>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 index of the costliest effect on an enchantment, ingredient, potion, or spell. (This function requires SKSE) | Returns the index of the costliest effect on an enchantment, ingredient, potion, or spell. (This function requires SKSE) | ||
Line 28: | Line 28: | ||
*[[Ingredient Script]] | *[[Ingredient Script]] | ||
*[[Potion Script]] | *[[Potion Script]] | ||
*[[Scroll Script]] | |||
*[[Spell Script]] | *[[Spell Script]] |
Revision as of 14:49, 10 May 2012
SKSE Member of: Enchantment Script, Ingredient Script, Potion Script, Scroll Script, and Spell Script
Returns the index of the costliest effect on an enchantment, ingredient, potion, or spell. (This function requires SKSE)
Syntax
int Function GetCostliestEffectIndex() native
Parameters
None
Return Value
Returns the index of the costliest effect on an enchantment, ingredient, potion, or spell.
Examples
int n = enchantment.GetCostliestEffectIndex()
MagicEffect mEffect = GetNthEffectMagicEffect(n)
Debug.Trace("The costliest MagicEffect for this enchantment is " + mEffect)