Page 1 of 1
Equip ring or earring on specific slot
Posted: Sat Apr 20, 2013 4:28 am
by Alex0711
Hey guys,
is it possible to equip a ring or an earring on a specific slot? - if yes, how? :O
Because when i'm using a ring, it will be equipt on slot 2 everytime :/
Re: Equip ring or earring on specific slot
Posted: Sat Apr 20, 2013 9:55 am
by rock5
Code: Select all
ring = inventory:findItem("ring name")
ring:moveTo("left ring") -- or
ring:moveTo("right ring")
Re: Equip ring or earring on specific slot
Posted: Sat Apr 20, 2013 10:27 am
by Alex0711
nice
thx
Re: Equip ring or earring on specific slot
Posted: Sat Apr 20, 2013 2:09 pm
by Ego95
Is this possible to do with an ingame macro too? I would need something to switch to my pvp equip

Re: Equip ring or earring on specific slot
Posted: Sat Apr 20, 2013 2:37 pm
by rock5
Code: Select all
/script PickupBagItem(GetBagItemInfo(1)) PickupEquipmentItem(11) -- left ring
/script PickupBagItem(GetBagItemInfo(1)) PickupEquipmentItem(12) -- right ring
You would need to know where the ring is though.