Difference between revisions of "GetWornForm - Actor"

From the CreationKit Wiki
Jump to navigation Jump to search
imported>Fg109
(Created page for GetWornForm)
(No difference)

Revision as of 16:01, 10 May 2012

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

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

See Also