Hey guys,
I was wondering if any working "eat/drink-in-one-button"-macro is out there? Merging two buttons in one, even if I have to press it two times, would be great. Can you help me here?
Thanks
-Dom
CodyMueller wrote:You might find some success using the addon Arcanum.
http://addons.us.to/addon/arcanum
|
![]() |
Domwop wrote:CodyMueller wrote:You might find some success using the addon Arcanum.
http://addons.us.to/addon/arcanum
I'll check that out, thanks pal!
/run local u=UseContainerItem v=0 i=1 while UnitBuff("player", i)do d=UnitBuff("player", i)if d=="Interface\\Icons\\INV_Drink_18"then v=1 end i=i+1 end if(v==0)then u(0,1)end u(0,2)
|
![]() |
Dreez wrote:only if the food/drinks are on the same spot in your inventory all the time
- Code: Select all
/run local u=UseContainerItem v=0 i=1 while UnitBuff("player", i)do d=UnitBuff("player", i)if d=="Interface\\Icons\\INV_Drink_18"then v=1 end i=i+1 end if(v==0)then u(0,1)end u(0,2)
for the first two slots in your main bag
in this case:
0= bag ID (0-5)
1/2= itemslot ID (1-18)
note: you will have to press it twice
this will not let you use the first slot if you're already drinking
or simply use supermacro, that addon does not have interface features to my knowledge
/script UseItemByName("Conjured Cinnamon Roll"); UseItemByName("Conjured Crystal Water");[
|
![]() |