Equip into slot

VianSK

Well-Known Member
Is there a way to equip an item in a specific slot?

example

Me.Inventory[${SuperCoolOffHandSword}]:Equip[Secondary]

???

Thanks
 

Nuprecon

Active Member
Is there a way to equip an item in a specific slot?

example

Me.Inventory[${SuperCoolOffHandSword}]:Equip[Secondary]

???

Thanks
Code:
Me.Inventory[TotallyAwesomeThingyIWantToWear]:Equip
It assumes the slot based on the item.
But if you want an item to go into a specific slot, like a secondary weapon slot, you would unequip the item first. As EQ2 will place the item into an empty slot or swap out the first available full slot (if both slots are full)
Code:
Me.Equipment[Secondary]:UnEquip
You might want to look up in the wiki to make sure i have the spelling right for the offhand weapon.


Hope that was mildly understandable.
 

VianSK

Well-Known Member
Only thing that sucks about unequip then equip off hand is i have to wait for 2x equipment change timers.

I can create a hotkey to put it directly into secondary so there has to be a way im sure to do it /shrug
 
Top Bottom