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!

singular complaining

hodge74

Member
Joined
Oct 12, 2012
Messages
400
start bot, bot loads up, then bot complains about class and to choose 1, i choose singular as thats the only routine i have and it just goes into its loop, mentioned this a few times now with no fix?
log for the gods
P.S fresh clean install
 

Attachments

  • 7376 2016-09-02 12.40.txt
    7376 2016-09-02 12.40.txt
    16.8 KB · Views: 42
  • Capture.webp
    Capture.webp
    5 KB · Views: 52
Last edited:
Same here,
thers a fix by deleting something in the folders but I forget what!
I came across your thread looking for it.
 
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
Tony i can no access the bot because of the error as the pop up box which appears greys out all other options so unfortunately i can not do this
 
finally got it to open bot after a reinstall. OK here are 2 fails that i can see via console...

Ancient Pickled Koi (138246, |cff9d9d9d|Hitem:138246::::::::102:250::::::|h[Ancient Pickled Koi]|h|r): FAIL...
System.ComponentModel.Win32Exception (0x80004005): Invalid access to memory location
at GreyMagic.ExternalProcessMemory.​‏*‫‎‪‪​‪‎*‏*‏****‫*‬‏​***(IntPtr , Void* , Int32 , Int32& )
at GreyMagic.ExternalProcessMemory.ReadString(IntPtr address, Encoding encoding, Int32 maxLength)
at Styx.WoWInternals.DB.WoWDbRow.GetStringField[T](String fieldName)
at Styx.WoWInternals.WoWObjects.ItemInfo..ctor(UInt32 id, String itemString, WoWDbRow sparseInfoBlock, WoWDbRow classInfoBlock)
at Styx.WoWInternals.WoWObjects.ItemInfo.FromLink(String link)
at Styx.WoWInternals.WoWObjects.WoWItem.get_ItemInfo()
at Driver.Run()

Captain's Log of the Queen's Reprisal (122570, |cffffffff|Hitem:122570::::::::102:250::::::|h[Captain's Log of the Queen's Reprisal]|h|r): FAIL...
System.ComponentModel.Win32Exception (0x80004005): Invalid access to memory location
at GreyMagic.ExternalProcessMemory.​‏*‫‎‪‪​‪‎*‏*‏****‫*‬‏​***(IntPtr , Void* , Int32 , Int32& )
at GreyMagic.ExternalProcessMemory.ReadString(IntPtr address, Encoding encoding, Int32 maxLength)
at Styx.WoWInternals.DB.WoWDbRow.GetStringField[T](String fieldName)
at Styx.WoWInternals.WoWObjects.ItemInfo..ctor(UInt32 id, String itemString, WoWDbRow sparseInfoBlock, WoWDbRow classInfoBlock)
at Styx.WoWInternals.WoWObjects.ItemInfo.FromLink(String link)
at Styx.WoWInternals.WoWObjects.WoWItem.get_ItemInfo()
at Driver.Run()

complains of plugins as well when bot boots up .. anyways fresh log hope it helps
 

Attachments

Last edited:
Back
Top