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

How do I make that the profile sells a particular item?

I would like to make "Relics of ulduar" sellable by the bot. Help please? :)

Can you elaborate more on what you want? Are you looking to just sell these to any vendor as vendor trash or are you looking to turn these in as currency to one of the vendors in Storm Peaks for consumables that can be obtained with them?
 
Can you elaborate more on what you want? Are you looking to just sell these to any vendor as vendor trash or are you looking to turn these in as currency to one of the vendors in Storm Peaks for consumables that can be obtained with them?
Vendor trash yes
 
are you getting these from a grind or something ? you can make a vendor run and sell it with lua code but i dont know how to add it as a default trash item

u can add this to the profile when its at the vendor with the vendor window open to sell it
PHP:
<CustomBehavior File="Misc\RunLua" NumOfTimes="10" WaitTime="2000" Lua="
					if MerchantFrame:IsVisible()==true then
						if buffer==nil or buffer&gt;4 then buffer=0 end
						MerchantRepairAllButton:Click()
						if buffer&lt;5 then
							for s=1,GetContainerNumSlots(buffer)
								do local n=GetContainerItemLink(buffer,s)
if (n and strfind(n, &quot;42780&quot;)) then
										UseContainerItem(buffer,s)
									end
								end
							buffer=buffer+1
							end
						end" />

or u can find a macro and do a simple run macro command
 
Last edited:
I know it's not profile-specific, but couldn't you just erase it from Protected Items, so every profile/bot would consider it a normal, white item? Should be sold if the profile is set to sell white items then.
 
I know it's not profile-specific, but couldn't you just erase it from Protected Items, so every profile/bot would consider it a normal, white item? Should be sold if the profile is set to sell white items then.
How?
 
Your HB folder contains an XML file called ProtectedItems. Open that with notepad, ctrl-F and search for your item, then just delete that line.
 
Back
Top