Background for Skyrim SE
Member of the Shout script
SpellfunctionGetNthSpell(intn)Native

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


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.