GetEquippedShield - Actor

Member of: Actor Script

Gets the actor's currently equipped shield.

SyntaxEdit

Armor Function GetEquippedShield() native

ParametersEdit

Return ValueEdit

The Armor the actor currently has equipped.

ExamplesEdit

; Does the player have the uber shield equipped?
if (Game.GetPlayer().GetEquippedShield() == UberShield)
  Debug.Trace("Player has uber-shield equipped")
endIf

See AlsoEdit