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!

Quest bot

It looks like Honorbuddy is having a hard time dealing with one of the items on your character.
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");



and remove the items that cause exceptions
 
Back
Top