Difference between revisions of "GetSlotMask - Armor"
Jump to navigation
Jump to search
imported>Fg109 (Created page for GetSlotMask) |
imported>Fg109 m (→See Also) |
||
Line 31: | Line 31: | ||
*[[AddSlotToMask - Armor]] | *[[AddSlotToMask - Armor]] | ||
*[[RemoveSlotFromMask - Armor]] | *[[RemoveSlotFromMask - Armor]] | ||
*[[GetMaskForSlot- Armor]] | *[[GetMaskForSlot - Armor]] | ||
*[[GetWornForm - Actor]] | *[[GetWornForm - Actor]] | ||
*[[Slot Masks - Armor|List of Slot Masks]] | *[[Slot Masks - Armor|List of Slot Masks]] |
Revision as of 15:49, 10 May 2012
SKSE Member of: Armor Script
Returns the slot mask of the armor. (This function requires SKSE)
Syntax
int Function GetSlotMask() native
Parameters
- None
Return Value
The slot mask of the armor.
Examples
; Obtain the slot mask of an armor property
int SlotMask = ArmorProperty.GetSlotMask()
if (SlotMask == 4)
Debug.Trace("This armor is equipped on the body, and only the body.")
endif