HasSpell - Actor
Revision as of 15:27, 18 October 2011 by imported>Rhavlovick (1 revision: Clobber re-import by Henning)
Member of: Actor Script
Checks to see if this actor has the given Spell or Shout.
Syntax
bool Function HasSpell(Form akForm) native
Parameters
Return Value
Whether the actor has the given Spell or Shout or not.
Examples
; Does the player have the super spell?
if (Game.GetPlayer.HasSpell(SuperSpell))
Debug.Trace("The player has the super spell")
endIf