IsEquipped - Actor
Member of: Actor Script
Does the actor have the specified item equipped?
SyntaxEdit
bool Function IsEquipped(Form akItem) native
ParametersEdit
- akItem: The item to check for.
Return ValueEdit
If the actor has the item equipped or not.
ExamplesEdit
; Does the player have the uber sword equipped?
if (Game.GetPlayer().IsEquipped(UberSwordProperty))
Debug.Trace("The player has the uber sword equipped")
endIf