• Visit Rebornbuddy
  • "Coroutine" errors after starting HB

    Discussion in 'Honorbuddy Support' started by Merlinsnest, Aug 3, 2016.

    1. Merlinsnest

      Merlinsnest New Member

      Joined:
      Mar 3, 2010
      Messages:
      69
      Likes Received:
      0
      Trophy Points:
      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.
       

      Attached Files:

      Last edited: Aug 3, 2016
    2. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      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
       
    3. Merlinsnest

      Merlinsnest New Member

      Joined:
      Mar 3, 2010
      Messages:
      69
      Likes Received:
      0
      Trophy Points:
      0
      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
       
    4. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      you're welcome!
       

    Share This Page