Difference between revisions of "AddSlotToMask - Armor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Fg109
(Created page for AddSlotToMask)
 
imported>Fg109
Line 20: Line 20:
<source lang="papyrus">
<source lang="papyrus">
; Adds the equip slot for forearms to the armor
; Adds the equip slot for forearms to the armor
ArmorProperty.AddSlotMask(16)
ArmorProperty.AddSlotToMask(16)
</source>
</source>



Revision as of 13:32, 10 May 2012

SKSE Member of: Armor Script

Adds the specified slot mask to the armor and returns the new slot mask for the armor. (This function requires SKSE)

Syntax

int Function AddSlotToMask(int slotMask) native

Parameters

Return Value

Examples

; Adds the equip slot for forearms to the armor
ArmorProperty.AddSlotToMask(16)

See Also