AddShout - Actor

From the CreationKit Wiki
Revision as of 16:26, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

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.

Syntax

bool Function AddShout(Shout akShout) native

Parameters

  • akShout: The Shout to add to this actor.

Return Value

True on success.

Examples

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

See Also