Background for Skyrim SE
Member of the Actor script
FormfunctionGetWornForm(intslotMask)Native

Description

Wiki Description

Returns the form of the item worn with the specified slotMask. (This function requires SKSE)

Documentation Comment

SKSE64 additions built 2024-01-17 20:01:40.731000 UTC
returns the form for the item worn at the specified slotMask
use Armor.GetMaskForSlot() to generate appropriate slotMask


Parameters

  1. intslotMask

    CK Wiki Description

    The slot mask of the worn item.


Examples

; Obtain the player's currently equipped cuirass
Armor Cuirass = Game.GetPlayer().GetWornForm(0x00000004) as Armor

Auto-Generated Example

int myInt__slotMask

Form returnedValue = myActor__toCallFunctionOn.GetWornForm(myInt__slotMask)

Related Pages


Additional References

View this function’s page on the Skyrim Creation Kit Wiki

Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.