GetEquippedItemType - Actor

Member of: Actor Script

Gets the type of item the actor currently has equipped in the specified hand.

SyntaxEdit

int Function GetEquippedItemType(int aiHand) native

ParametersEdit

  • aiHand: The hand to get the type from.
    • One of the following values is acceptable:
      • 0: Left hand
      • 1: Right hand

Return ValueEdit

The type of item equipped in the specified hand, which is one of the following values:

  • 0: Nothing (Hand to hand)
  • 1: One-handed sword
  • 2: One-handed dagger
  • 3: One-handed axe
  • 4: One-handed mace
  • 5: Two-handed sword
  • 6: Two-handed axe/mace
  • 7: Bow
  • 8: Staff
  • 9: Magic spell/Scroll
  • 10: Shield
  • 11: Torch
  • 12: Crossbow

ExamplesEdit

; Does Bob have a bow in his left hand?
if (Bob.GetEquippedItemType(0) == 7) ; 7 is a bow
  Debug.Trace("Bob has a bow in his left hand")
endIf

See AlsoEdit