RemoveShout - Actor

From the CreationKit Wiki
Revision as of 13:58, 18 May 2011 by imported>Henning (Created page with 'Category:Scripting Category:Papyrus '''Member of:''' Actor Script Removes the specified shout from this actor. == Syntax == <source lang="papyrus"> bool Function Re…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Member of: Actor Script

Removes the specified shout from this actor.

Syntax[edit | edit source]

bool Function RemoveShout(Shout akShout) native

Parameters[edit | edit source]

  • akShout: The shout to remove from this actor.

Return Value[edit | edit source]

True on success.

Examples[edit | edit source]

; Removes the Call Storm shout from the player
if (Game.GetPlayer().RemoveShout(CallStormShout))
  Debug.Trace("CallStorm Shout removed from the player")
endIf

See Also[edit | edit source]