- Found in:
- SKSE
Description
Wiki Description
Forces this actor to equip the specified item at the specified slot.
Documentation Comment
unequips item at the given slot
Caveats
CK Wiki - Notes
- If the Specified form is not in the specified slot then the function will fail.
Parameters
Examples
;Force the player to unequip swordProperty from the Default slot
Game.GetPlayer().UnequipItemEx(swordProperty); Force Terion to unequip a Dagger from his Left hand and prevent it being requipped.
Terion.UnequipItemEx(DaggerProperty, 2, True)Auto-Generated Example
Form myForm__item
int myInt__equipSlot
bool myBool__preventEquip
myActor__toCallFunctionOn.UnequipItemEx(myForm__item, myInt__equipSlot, myBool__preventEquip)Related Pages
- Actor
- Actor.IsEquipped(...)
- Actor.EquipItemEx(...)
