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

It worked Then it Didnt

hodge74

Member
Joined
Oct 12, 2012
Messages
400
Reaction score
1
[AutoEquip] Exception was thrown in AE coroutine!
Buddy.Coroutines.CoroutineUnhandledException: Exception was thrown by coroutine ---> System.ComponentModel.Win32Exception: 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 Styx.CommonBot.CharacterManagement.AutoEquipper.Ns-2{LA8)w0h9_DTL\,1\&r#%J).MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Styx.CommonBot.CharacterManagement.AutoEquipper.\]OnE!@%9)mA`7yO"2r\*SmsMk\,.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Styx.CommonBot.CharacterManagement.AutoEquipper.{A\\_:8MH:\[d\[X7m(fXhKjm$Y'.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at Buddy.Coroutines.Coroutine.xVnGRGoNEI`lB@x\["KV11;WY'.TH<_}%v=wFudOm v7j{2sl$t'.MoveNext()
--- End of inner exception stack trace ---
at Buddy.Coroutines.Coroutine.‏‬**‏‏****‪‪**​‪‏‪‬‪‏*‫‎****‫*(Boolean )
at Buddy.Coroutines.Coroutine.‬*****‪*‬‏​‫‪‫*​​*‎*****‫‎*(Boolean )
at Buddy.Coroutines.Coroutine.Resume()
at Styx.CommonBot.CharacterManagement.AutoEquipper.‏*‏‪​‫‫‪****​‏‏‫*‬*‏​‫*‎*()
Bot paused
Latency to Buddy service: 68 ms
Sorry for the pastie, but it worked for 30 minutes or so then it just stopped, log for the gods PS. fresh install too
 

Attachments

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");

and delete the problematic itme
 
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");

and delete the problematic itme

Tony did what you ask and i have a OK next to every entry
 
i mean the report from what i suggested above,the items list
 
Back
Top