GetEquippedSpell - Actor

From the Fallout4 CreationKit Wiki
Jump to navigation Jump to search

Member of: Actor Script

Gets the spell the actor currently has equipped in the specified source.

Syntax[edit | edit source]

Spell Function GetEquippedSpell(int aiSource) native

Parameters[edit | edit source]

  • aiSource: The source to get the spell from.
    • One of the following values is acceptable:
      • 0: Left hand
      • 1: Right hand
      • 2: Other
      • 3: Instant

Return Value[edit | edit source]

The spell currently equipped in the specified source.

Examples[edit | edit source]

; Does Bob have fireball in his left hand?
if (Bob.GetEquippedSpell(0) == FireballProperty)
  Debug.Trace("Bob has fireball in his left hand")
endIf

See Also[edit | edit source]