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

Questing not working !!

It looks like Honorbuddy is having a hard time dealing with one of the items on your character.
We need to collect some information to be able to resolve this. Can you please open Developer Tools -> Console,
then paste the following in the box and press "Run":
Code:
foreach (var item in ObjectManager.GetObjectsOfType<WoWItem>())
{
  try
  {
    Log("{0}: OK", item.ItemInfo.Id);
  }
  catch (Exception ex)
  {
    Log("{0} ({1}, {2}): FAIL...", item.Name, item.Entry, item.ItemLink);
    Log(ex);
  }
}

Log("Done");

delete the problematic item
 
It looks like Honorbuddy is having a hard time dealing with one of the items on your character.
We need to collect some information to be able to resolve this. Can you please open Developer Tools -> Console,
then paste the following in the box and press "Run":
Code:
foreach (var item in ObjectManager.GetObjectsOfType<WoWItem>())
{
  try
  {
    Log("{0}: OK", item.ItemInfo.Id);
  }
  catch (Exception ex)
  {
    Log("{0} ({1}, {2}): FAIL...", item.Name, item.Entry, item.ItemLink);
    Log(ex);
  }
}

Log("Done");

delete the problematic item

same issue sorry to say that.. here is new log

View attachment 4148 2016-09-04 09.55.txt

thanks in advance for your help Tony
 

Attachments

make a fresh Hb installation from scratch plz
 
Back
Top