RemoveShout - Actor
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…')
Member of: Actor Script
Removes the specified shout from this actor.
SyntaxEdit
bool Function RemoveShout(Shout akShout) native
ParametersEdit
- akShout: The shout to remove from this actor.
Return ValueEdit
True on success.
ExamplesEdit
; Removes the Call Storm shout from the player
if (Game.GetPlayer().RemoveShout(CallStormShout))
Debug.Trace("CallStorm Shout removed from the player")
endIf