Difference between revisions of "SetNthEffectMagnitude - Potion"
Jump to navigation
Jump to search
imported>Notanon |
(Documentation was very wrong - wrong function name, wrong return value, wrong number of parameters, and wrong names of parameters.) |
||
Line 8: | Line 8: | ||
== Syntax == | == Syntax == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
Function SetNthEffectMagnitude(int index, float value) native | |||
</source> | </source> | ||
== Parameters == | == Parameters == | ||
* | * index: The index of which effect magnitude will be set. | ||
* value: The new magnitude value. | |||
== Set Value == | == Set Value == | ||
Line 19: | Line 20: | ||
== Examples == | == Examples == | ||
<source lang="papyrus"> | <source lang="papyrus"> | ||
float magnitude = potion.SetNthEffectMagnitude(0 | float magnitude = potion.SetNthEffectMagnitude(0, 20) | ||
</source> | </source> | ||
== See Also == | == See Also == | ||
*[[Potion Script]] | *[[Potion Script]] |
Revision as of 23:06, 1 December 2021
SKSE Member of: Potion Script
Sets the magnitude of the Nth effect attached to this potion. (This function requires SKSE)
Syntax
Function SetNthEffectMagnitude(int index, float value) native
Parameters
- index: The index of which effect magnitude will be set.
- value: The new magnitude value.
Set Value
Sets the magnitude of the Nth effect attached to this potion.
Examples
float magnitude = potion.SetNthEffectMagnitude(0, 20)