- Found in:
- SKSE
Description
Wiki Description
Gets the specified Nth Word of Power for this shout.
Documentation Comment
SKSE64 additions built 2024-01-17 20:01:40.731000 UTC
Caveats
Parameters
intn
CK Wiki Description
index of the WordOfPower associated with this Shout.
- 0 - The first Word for this shout.
- 1 - The second Word for this shout.
- 2 - The third Word for this shout.
Examples
Shout property UnrelentingForceShout auto
WordOfPower property WordFus auto
Event OnEffectStart(Actor akTarget, Actor akCaster)
if WordFus == UnrelentingForceShout.GetNthWordOfPower(0)
debug.notification("First word of this shout is Fus")
else
debug.notification("Try again.")
endif
EndEventAuto-Generated Example
int myInt__n
WordOfPower returnedValue = myShout__toCallFunctionOn.GetNthWordOfPower(myInt__n)Related Pages
- Shout.GetNthSpell(...)
- Shout.GetNthRecoveryTime(...)
- Shout.SetNthSpell(...)
- Shout.SetNthWordOfPower(...)
- Shout.SetNthRecoveryTime(...)
- Shout
