Background for Skyrim SE
Member of the Actor script
boolfunctionAddShout(ShoutakShout)Native

Description

Wiki Description

Adds the specified Shout to this actor. Does not teach or unlock any of the words in the shout. This function is also silent -- there are no Story Manager or statistics tracking events fired.

Documentation Comment

Adds the specified shout to this actor - returns true on success


Caveats

CK Wiki - Notes

Adding a shout to an NPC will cause your save to be corrupted and therefore crash when you will exit the game and reload it.


Parameters

ShoutakShout

CK Wiki Description

The Shout to add to this actor.


Examples

; Adds the Call Storm shout to the player
if (Game.GetPlayer().AddShout(CallStormShout))
  Debug.Trace("CallStorm Shout added to the player")
endIf

Auto-Generated Example

Shout myShout__akShout

bool returnedValue = myActor__toCallFunctionOn.AddShout(myShout__akShout)

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.