Batts
Grandfathered
Below is an easy macro for trading a healthstone to your target and hitting accept. Gone are the days of "open trade for healthstone" or manually making, dragging to trade window etc. Big quality of life change IMO. Learn it, love it, use it.
/run for i=0,4 do for x=1,GetContainerNumSlots(i) do y=GetContainerItemLink(i,x) if y then if GetItemInfo(y)=="Healthstone" then PickupContainerItem(i,x); DropItemOnUnit("target"); return; end end end end
/script AcceptTrade();
Sometimes you'll have to press the key twice to get it to accept trade
You're welcome
/run for i=0,4 do for x=1,GetContainerNumSlots(i) do y=GetContainerItemLink(i,x) if y then if GetItemInfo(y)=="Healthstone" then PickupContainerItem(i,x); DropItemOnUnit("target"); return; end end end end
/script AcceptTrade();
Sometimes you'll have to press the key twice to get it to accept trade
You're welcome