HasSpell - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Checks to see if this actor has the given Spell or Shout.

Syntax[edit | edit source]

bool Function HasSpell(Form akForm) native

Parameters[edit | edit source]

Return Value[edit | edit source]

Whether the actor has the given Spell or Shout or not.

Examples[edit | edit source]

; Does the player have the super spell?
if (Game.GetPlayer.HasSpell(SuperSpell))
  Debug.Trace("The player has the super spell")
endIf

See Also[edit | edit source]