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

Not selling greys

jeppe64

New Member
Joined
Jan 15, 2010
Messages
202
Reaction score
1
has the sellgrey tag changed in the last versions since my grinding bots no longer sell greys just whites and greens?

it just stands at the opening and closing the Vendor window this is a profile that has worked flawlessly

Code:
  <SellGrey>True</SellGrey>
  <SellWhite>True</SellWhite>
  <SellGreen>True</SellGreen>
  <SellBlue>True</SellBlue>
  <MailWhite>False</MailWhite>
  <MailGreen>True</MailGreen>
  <MailBlue>True</MailBlue>
  <MailPurple>True</MailPurple>
View attachment 24806
 
has the sellgrey tag changed in the last versions since my grinding bots no longer sell greys just whites and greens?

it just stands at the opening and closing the Vendor window this is a profile that has worked flawlessly

Code:
  <SellGrey>True</SellGrey>
  <SellWhite>True</SellWhite>
  <SellGreen>True</SellGreen>
  <SellBlue>True</SellBlue>
  <MailWhite>False</MailWhite>
  <MailGreen>True</MailGreen>
  <MailBlue>True</MailBlue>
  <MailPurple>True</MailPurple>
View attachment 24806

I always let the ReagentRestocker addon sell my greys rather than Honorbuddy. So I wouldn't notice a failure like you have noticed.

Just for fun (and it shouldn't work), but two things to try:
1) First test, Drop a <MailGrey>false</MailGrey> element in the profile
2) Second test, try the alternate spelling "SellGray" (A instead of E)

The first may solve your problem, but I don't expect the second to work. We're just trying to localize the problem. If neither of these works, I'd open a BugTracker and report the issue.


cheers,
chinajade
 
I always let the ReagentRestocker addon sell my greys rather than Honorbuddy. So I wouldn't notice a failure like you have noticed.

Just for fun (and it shouldn't work), but two things to try:
1) First test, Drop a <MailGrey>false</MailGrey> element in the profile
2) Second test, try the alternate spelling "SellGray" (A instead of E)

The first may solve your problem, but I don't expect the second to work. We're just trying to localize the problem. If neither of these works, I'd open a BugTracker and report the issue.


cheers,
chinajade

Thanks for the help tried both neither helped also tried doing a full HB reinstall and not using any plugins it didn't help still refuses to sell gonna make a bugtracker and use a addon to sell to let me continue levelling
 
MrItemremover is great for removing greys in the meantime!

This macro will drop all greys in your bag & if you have a vendor tab open it will sell them:
/run for b=0,4 do for s=1,GetContainerNumSlots(b)do local i,q=GetContainerItemLink(b,s) if i then _,_,q=GetItemInfo(i) if q==0 then if GetMerchantItemInfo(1) then UseContainerItem(b,s) else PickupContainerItem(b,s) DeleteCursorItem() end end end end end
^credits to someone else on some forum somewhere I can't remember.
 
Back
Top