GetWornForm - Actor
From Creation Kit
SKSE Member of: Actor Script
Returns the form of the item worn with the specified slotMask. (This function requires SKSE)
Syntax
Form Function GetWornForm(int slotMask) native
Parameters
- slotMask: The slot mask of the worn item.
Return Value
- The form of the equipped item with the specified slot mask.
Examples
; Obtain the player's currently equipped cuirass Armor Cuirass = Game.GetPlayer().GetWornForm(0x00000004) as Armor

