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

Honorbuddy fail message

missen95

New Member
Joined
Feb 18, 2012
Messages
6
Reaction score
0
Trying to start my archelogybuddy works fine for 5 minutes after start then i get fail message posted it under this. and it refuse to start in any profile i run, unless i restart honorbuddy and it works for 5min again.
Any1 know whats wrong? cant figure it out... thx :)


[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.QFN@G(1p|-f3p{P0/y\*@xIIJ.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.@il"bp\&\\RFByq>\*bVgx\,_|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.Z2GAFKs#t|)@)3aYN8MFF!D\,.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.iplw-e{)$<@#x\*b(Y%JAqx\,4$.y!Zoo6$0OY=;ntq8#iUTc3\,7!.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.‏‪‪‎​‏​*‎*‫*​*‬*‬​​*‏​****()
 
delete Hb and make a fresh installation from scratch plz,let me know
 
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 reported item
 
Back
Top