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

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
    
EndEvent

Auto-Generated Example

int myInt__n

WordOfPower returnedValue = myShout__toCallFunctionOn.GetNthWordOfPower(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.