Difference between revisions of "EquipItemEx - Actor"
Jump to navigation
Jump to search
imported>Wafflesalot m (Wafflesalot moved page EquipItemEX - Actor to EquipItemEx - Actor: To fix broken links and to remain true to the Functions capitalisation.) |
imported>SniffleMan (Added explanation for the "Ex" in "EquipItemEx") |
||
Line 4: | Line 4: | ||
'''SKSE Member of:''' [[Actor Script]] | '''SKSE Member of:''' [[Actor Script]] | ||
Forces this actor to equip the specified | Forces this actor to equip the first item in the specified form's extralist at the specified slot. | ||
== Syntax == | == Syntax == | ||
Line 34: | Line 34: | ||
== Notes == | == Notes == | ||
* The first item in the extralist will be the last item added. For example, if the player has two steel swords and they enchant one, then poison the other, the poisoned sword will be equipped. Alternatively, if they poison one sword, then enchant the other, the enchanted sword will be equipped. | |||
* See [[EquipItemById - Actor]] for adding an item without an extralist. | |||
== See Also == | == See Also == |
Revision as of 14:55, 6 October 2018
SKSE Member of: Actor Script
Forces this actor to equip the first item in the specified form's extralist at the specified slot.
Syntax
Function EquipItemEx(Form item, int equipSlot = 0, bool preventUnequip = false, bool equipSound = true) native
Parameters
- item - The Form of the item to equip.
- equipSlot - The slot you wish to equip the item to.
- Default Slot = 0
- Right Hand Slot = 1
- Left Hand Slot = 2
- preventUnequip - If true, will prevent unequipping of the item for the actor.
- equipSound - If true, no sound will be played on the equip.
Examples
;Force the player to equip swordProperty to the Default slot
Game.GetPlayer().EquipItemEx(swordProperty)
; Force Ralof to equip a Dagger to his Left hand and do not suppress the sound.
Ralof.EquipItemEx(DaggerProperty, 2, false, false )
Notes
- The first item in the extralist will be the last item added. For example, if the player has two steel swords and they enchant one, then poison the other, the poisoned sword will be equipped. Alternatively, if they poison one sword, then enchant the other, the enchanted sword will be equipped.
- See EquipItemById - Actor for adding an item without an extralist.