- Found in:
- SKSE
Description
Wiki Description
Gets the specified Nth spell of this shout.
Caveats
Parameters
intn
CK Wiki Description
The Nth spell associated with this Shout
- 0 is the first spell for this shout, 1 is the second spell for this shout, 2 is the third spell for this shout
Examples
Spell property VoiceUnrelentingForce1 auto
; Obtain the spell used by this shout.
Event OnEffectStart(Actor akTarget, Actor akCaster)
if VoiceUnrelentingForce1 == UnrelentingForceShout.GetNthSpell(0)
debug.notification("First spell of this shout is VoiceUnrelentingForce1")
else
debug.notification("Try again.")
endif
EndEvent
; The above example is true.Auto-Generated Example
int myInt__n
Spell returnedValue = myShout__toCallFunctionOn.GetNthSpell(myInt__n)Related Pages
- Shout.GetNthWordOfPower(...)
- Shout.GetNthRecoveryTime(...)
- Shout.SetNthSpell(...)
- Shout.SetNthWordOfPower(...)
- Shout.SetNthRecoveryTime(...)
- Shout
