lambo Member Joined Dec 8, 2010 Messages 223 Reaction score 3 Jul 31, 2016 #1 Getting a string of errors when I try to start questing. I go to the buddy store. activate the quests. select for my area. load it up and press " go" ... and no dice. any help would be appreciated. Just installed latest files. Attachments 2476 2016-07-31 12.28.txt 2476 2016-07-31 12.28.txt 1.3 MB · Views: 43
Getting a string of errors when I try to start questing. I go to the buddy store. activate the quests. select for my area. load it up and press " go" ... and no dice. any help would be appreciated. Just installed latest files.
Tony "The Bee" Joined Jan 15, 2010 Messages 128,830 Reaction score 570 Jul 31, 2016 #2 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
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
lambo Member Joined Dec 8, 2010 Messages 223 Reaction score 3 Jul 31, 2016 #3 seams to be working. I will keep ya posted. thanks!
lambo Member Joined Dec 8, 2010 Messages 223 Reaction score 3 Jul 31, 2016 #4 still running strong. Thanks for the fix!
Tony "The Bee" Joined Jan 15, 2010 Messages 128,830 Reaction score 570 Aug 1, 2016 #5 you're welcome!