What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Blood Of Sargeras Vendor

HB0710O76

New Member
Joined
Jul 18, 2011
Messages
12
Something simple to just stand and buy starlight herb from blood vendor pain in ass stand and click 600 of these bastards.
 
make a macro

Run this to find the item index number
-----------------------------
/script for i = 1, GetMerchantNumItems() do print(i, GetMerchantItemInfo(i)) end

buy item when you have index number
-----------------------------
/run BuyMerchantItem(index number [, quantity])


But the problem with this is it wont buy more than 1 I think, I havent tested this yet but from the wika page it sounds like it can only buy the max stack?
API BuyMerchantItem | WoWWiki | Fandom powered by Wikia
but maybe putting in like

/run BuyMerchantItem(index number , 50)

that might work? Would be something to test for sure

I also found a script someone else wrote on the wowhead site that i've changed for you
Buying macro - UI & Macros - Wowhead Forums

/run for i=1,GetMerchantNumItems() do local l=GetMerchantItemLink(i) if l then if l:find(124105) then BuyMerchantItem(i, 600)end end end

I'm not at my computer right now but I think this should work, although since you exchanging blood for items and not actually buying im not sure if this would work, but its worth a shot ¯\_(ツ)_/¯
 
/run cpti=StaticPopupDialogs["CONFIRM_PURCHASE_TOKEN_ITEM"];cpti.hasItemFrame=false;cpti.hasEditBox=true;cpti .OnAccept=function(self,data,data2)BuyMerchantItem (data.index,self.editBox:GetText());end;

this one is great. just input the amound you would like to buy.
Has to be multiples of the minimum. so for example starlight it can only bet multiples of 3.
 
this one is great. just input the amound you would like to buy.
Has to be multiples of the minimum. so for example starlight it can only bet multiples of 3.

/run BuyMerchantItem(16)
/run BuyMerchantItem(16)
/run BuyMerchantItem(16)
/run BuyMerchantItem(16)
/run BuyMerchantItem(16)

I just post those 5 lines in a macro and have it on a hotbar and spam click it when i have a lot of bloods at the vendor,
the other one with the quantity next to it never seemed to work for me so i just did 5 lines.
 
Maybe its a bit too late, but there is a wonderful Addon called "BuyEmAll". Just Shift + Rightclick on the item u wanna buy and set the amount u want.
 
Back
Top