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

"Coroutine" errors after starting HB

Merlinsnest

New Member
Joined
Mar 3, 2010
Messages
69
Reaction score
0
Any help appreciated, not sure if it's something I've done or what, but this problem has been consistent since pre-patch. I've been waiting it out thinking it was just a compatibility bit that would get worked out with better versions, but seeing soo many others working fine(mostly) I need to get this checked. I've wiped all traces of hb from my system and reinstalled clean a few times with no change.

It loads fine, hit start(questing) and it fills up with red text about various coroutines, then stalls there. Nothing happens beyond that.
 

Attachments

Last edited:
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
 
LMAO, and smdh. Found it, Thanks for lookin at this Tony. I had a guild mount in my bags that I wasn't high enough level to learn yet, Reigns of the Thundering Jade Cloud Serpent. Think I'll name it gremlin. Everything's working fine now.

Thanks a lot
 
Back
Top