GetEquippedShield - Actor
Jump to navigation
Jump to search
Member of: Actor Script
Gets the actor's currently equipped shield.
Syntax[edit | edit source]
Armor Function GetEquippedShield() native
Parameters[edit | edit source]
Return Value[edit | edit source]
The Armor the actor currently has equipped.
Examples[edit | edit source]
; Does the player have the uber shield equipped?
if (Game.GetPlayer().GetEquippedShield() == UberShield)
Debug.Trace("Player has uber-shield equipped")
endIf