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.