• Visit Rebornbuddy
  • HB ARCHIVES: HBRelog--DO NOT DELETE

    Discussion in 'Archives' started by chinajade, Feb 7, 2012.

    1. steelrainkilla

      steelrainkilla New Member

      Joined:
      Jul 26, 2012
      Messages:
      89
      Likes Received:
      0
      Trophy Points:
      0
      Yes I cannot get it to work i set it up just like the instructions, It starts wow says connecting and just stays on that screen.

      EDIT: Seems like my first time using this was the 1 in 20 chance that it wanted my authenticater.
       
      Last edited: Apr 12, 2013
    2. Storm

      Storm New Member

      Joined:
      Oct 24, 2012
      Messages:
      7
      Likes Received:
      0
      Trophy Points:
      0
      i have a problem with the relogger. I have add one acc/char and closed then hbrelog. when i now want open hbrelog it open instant a wow but i cant add new accounts. the normal hbrelog window doesnt open and a error window opens where stands that wow.exe cant be open

      k i have now delete the settings in %APPDATA%\HighVoltz\HBRelog\ and now it works
       
      Last edited: Apr 13, 2013
    3. HBL0V3

      HBL0V3 New Member

      Joined:
      Oct 6, 2012
      Messages:
      117
      Likes Received:
      0
      Trophy Points:
      0
      I have a suggestion.. Add a feature to detect when there is a que to login, sometimes ques get up to 1000 and it just relogs over and over again.
      Also Server detection doesn't always work, sometimes it says server is offline when its really not.. so it cant be used.
       
    4. Creation85

      Creation85 New Member

      Joined:
      Mar 13, 2013
      Messages:
      98
      Likes Received:
      0
      Trophy Points:
      0
      Just curious if anyone knows a way to make hbrelog run a clear cache .bat upon disconnect before it logs back in?
       
    5. m4527

      m4527 New Member

      Joined:
      Nov 7, 2012
      Messages:
      24
      Likes Received:
      0
      Trophy Points:
      0
      Hello, I have a Question, how can i make to rotation between 2 profiles to swich them every 45 mins. Can you give me example. Ty
       
    6. KG1

      KG1 New Member

      Joined:
      Apr 14, 2012
      Messages:
      45
      Likes Received:
      0
      Trophy Points:
      0
      HBRelog works well, but the only thing that doesn't work is that HBRelog can't choose a CustomClass.. Why?
       
    7. wellmek

      wellmek New Member

      Joined:
      Mar 24, 2013
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      Did a fresh reinstall of honorbuddy on a new windows 8 computer, but HBRelog does not appear under plugins. Followed instructions properly. When I start HonorBuddy, it doesn't say anything, there's just nothing there?

      -any help?

      -thanks
       
    8. zavis

      zavis New Member

      Joined:
      Jan 15, 2010
      Messages:
      351
      Likes Received:
      1
      Trophy Points:
      0
      Hey Highvoltz, thank you very much for doing this project open sourced, i must admit, that i have spend quite some time reading this Source Code to understand the Lua/Hook part :) Thank you
       
    9. aionskyg

      aionskyg Banned

      Joined:
      Sep 3, 2012
      Messages:
      132
      Likes Received:
      0
      Trophy Points:
      16
      help thank.:)
       
    10. iamnotme

      iamnotme New Member

      Joined:
      Mar 20, 2013
      Messages:
      105
      Likes Received:
      0
      Trophy Points:
      0
      Hi my HBRelog crashes.

      Log Name: Application
      Source: .NET Runtime
      Date: 4/21/2013 2:54:18
      Event ID: 1026
      Task Category: None
      Level: Error
      Keywords: Classic
      User: N/A
      Computer:
      Description:
      Application: HBRelog.exe
      Framework Version: v4.0.30319
      Description: The process was terminated due to an unhandled exception.
      Exception Info: System.InvalidOperationException
      Stack:
      at System.Diagnostics.Process.GetProcessHandle(Int32, Boolean)
      at System.Diagnostics.Process.Kill()
      at HighVoltz.HBRelog.Honorbuddy.HonorbuddyManager.<CloseBotProcess>b__0(System.Object)
      at System.Threading._TimerCallback.TimerCallback_Context(System.Object)
      at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
      at System.Threading._TimerCallback.PerformTimerCallback(System.Object)

      Event Xml:
      <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
      <Provider Name=".NET Runtime" />
      <EventID Qualifiers="0">1026</EventID>
      <Level>2</Level>
      <Task>0</Task>
      <Keywords>0x80000000000000</Keywords>
      <TimeCreated SystemTime="2013-04-21T12:54:18.000000000Z" />
      <EventRecordID>677</EventRecordID>
      <Channel>Application</Channel>
      <Computer></Computer>
      <Security />
      </System>
      <EventData>
      <Data>Application: HBRelog.exe
      Framework Version: v4.0.30319
      Description: The process was terminated due to an unhandled exception.
      Exception Info: System.InvalidOperationException
      Stack:
      at System.Diagnostics.Process.GetProcessHandle(Int32, Boolean)
      at System.Diagnostics.Process.Kill()
      at HighVoltz.HBRelog.Honorbuddy.HonorbuddyManager.&lt;CloseBotProcess&gt;b__0(System.Object)
      at System.Threading._TimerCallback.TimerCallback_Context(System.Object)
      at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
      at System.Threading._TimerCallback.PerformTimerCallback(System.Object)
      </Data>
      </EventData>
      </Event>
       
    11. tomasd

      tomasd Member

      Joined:
      Jul 24, 2012
      Messages:
      42
      Likes Received:
      0
      Trophy Points:
      6
      Hi, there is some weird issue with C# Process.WaitForInputIdle.
      Essentially, it will never return true for me, thus HBRelog won't recognize WoW as
      ready for input and will keep restarting it (the issue has been reported a few times in the thread).
      I had similar problem with YAR for D3. No idea what is causing this bug, apparently it is not entirely uncommon (says quick google).

      I replaced the following (WoWManager.cs, 335-336):
      Code:
                          
      if (!GameProcess.WaitForInputIdle(0))
          return;
      
      with:
      Code:
                          
      GameProcess.WaitForInputIdle(10000);
      
      And it will now log in. Probably broke other stuff somewhere (besides assuming that 10 seconds is simply enough for WoW to start), didn't test thoroughly.
       
    12. evialtah

      evialtah New Member

      Joined:
      Dec 16, 2011
      Messages:
      322
      Likes Received:
      1
      Trophy Points:
      0
      [14:50:32] Shammy: Honorbuddy is not responding.. So lets restart it
      [14:50:32] Shammy: Attempting to close Honorbuddy
      [14:50:47] Shammy: Killing Honorbuddy
      [14:50:48] Shammy: Successfully closed Honorbuddy
      [14:50:49] Shammy: starting C:\Дружок\Itunes.exe
      [14:51:04] Shammy: WoW and HB startup sequence complete
      [14:54:52] Shammy: Honorbuddy is not responding.. So lets restart it
      [14:54:52] Shammy: Attempting to close Honorbuddy
      [14:55:07] Shammy: Killing Honorbuddy
      [14:55:08] Shammy: Successfully closed Honorbuddy
      [14:55:08] Shammy: starting C:\Дружок\Itunes.exe
      [14:55:23] Shammy: WoW and HB startup sequence complete
      [14:55:23] Shammy: Honorbuddy is not responding.. So lets restart it
      [14:55:23] Shammy: Attempting to close Honorbuddy
      [14:55:38] Shammy: Killing Honorbuddy
      [14:55:39] Shammy: Successfully closed Honorbuddy
      [14:55:40] Shammy: starting C:\Дружок\Itunes.exe
      [14:56:01] Shammy: WoW and HB startup sequence complete
      [14:56:02] Shammy: Honorbuddy is not responding.. So lets restart it
      [14:56:02] Shammy: Attempting to close Honorbuddy
      [14:56:17] Shammy: Killing Honorbuddy
      [14:56:18] Shammy: Successfully closed Honorbuddy
      [14:56:19] Shammy: starting C:\Дружок\Itunes.exe
      [14:56:25] Shammy: WoW is not responding.. So lets restart WoW
      [14:56:25] Shammy: Attempting to close Wow
      [14:56:25] Shammy: Attempting to close Honorbuddy
      [14:56:26] Shammy: WoW process was terminated. Restarting
      [14:56:26] Shammy: starting E:\Games\World of Warcraft\Wow.exe
      [14:56:26] Shammy: Successfully closed Honorbuddy
      [14:56:31] Shammy: Killing Wow
      [14:56:32] Shammy: Successfully closed Wow

      While HB is not fully loaded, it close it, so soon i stuck in max sessions... Any way to add a delay, to let HB fully load, so it wont close it and wotn be stuck again.
       
    13. Defect

      Defect New Member

      Joined:
      Aug 4, 2012
      Messages:
      72
      Likes Received:
      0
      Trophy Points:
      0
      Same problem here. Except it is WoW.exe that it is closing as soon as it is finished loading and all logged in it closes for no reason and restarts everything. Very annoying bug.
      I already unchecked "Check HB for responsiveness" even though it is WoW that it is closing first not HB and the problem persists. It does this everytime the first time I click Start. Everything loads up perfectly fine then HBRelog closes WoW.exe and restarts everything.
       
    14. jones2485

      jones2485 New Member

      Joined:
      Apr 7, 2012
      Messages:
      12
      Likes Received:
      0
      Trophy Points:
      0
      Hi everyone on every startup of hbrelog my wow just crashes instant.. maybe someone can help it says Error #132

      [04/24/2013 13:21:46] HBRelog Version 1.0.0.129
      [04/24/2013 13:22:00] pwnguin: ********* Tasks ***********
      [04/24/2013 13:22:00] pwnguin: ********* End of Task list ***********
      [04/24/2013 13:22:00] pwnguin: starting C:\Program Files (x86)\World of Warcraft\Wow.exe
      [04/24/2013 13:22:03] D3D11CreateDeviceAndSwapChain result: 0
      [04/24/2013 13:22:03] pwnguin: Installing Endscene hook
      [04/24/2013 13:22:10] pwnguin: WoW has crashed.. So lets restart WoW
      [04/24/2013 13:22:11] System.AccessViolationException: Could not read bytes from 04F20000 [299]!
      bei GreyMagic.ExternalProcessReader.ReadBytes(IntPtr address, Int32 count, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 134.
      bei GreyMagic.ExternalProcessReader.Read[T](IntPtr address, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 203.
      bei HighVoltz.HBRelog.WoW.Hook.InjectAndExecute(IEnumerable`1 asm, Int32 returnLength) in c:\Buddy\Projects\HBRelog_old\WoW\Hook.cs:Zeile 184.
      [04/24/2013 13:22:11] System.AccessViolationException: Could not read bytes from FF3755D8 [299]!
      bei GreyMagic.ExternalProcessReader.ReadBytes(IntPtr address, Int32 count, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 134.
      bei GreyMagic.ExternalProcessReader.Read[T](IntPtr address, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 203.
      bei GreyMagic.InProcessMemoryReader.Read[T](Boolean isRelative, IntPtr[] addresses) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\InProcessMemoryReader.cs:Zeile 281.
      bei HighVoltz.HBRelog.WoW.WowManager.get_GlueStatus() in c:\Buddy\Projects\HBRelog_old\WoW\WoWManager.cs:Zeile 151.
      bei HighVoltz.HBRelog.WoW.WowManager.LoginWoW() in c:\Buddy\Projects\HBRelog_old\WoW\WoWManager.cs:Zeile 578.
      bei HighVoltz.HBRelog.WoW.WowManager.Pulse() in c:\Buddy\Projects\HBRelog_old\WoW\WoWManager.cs:Zeile 379.
      bei HighVoltz.HBRelog.TaskManager.Pulse() in c:\Buddy\Projects\HBRelog_old\TaskManager.cs:Zeile 61.
      bei HighVoltz.HBRelog.CharacterProfile.Pulse() in c:\Buddy\Projects\HBRelog_old\CharacterProfile.cs:Zeile 110.
      bei HighVoltz.HBRelog.HbRelogManager.DoWork() in c:\Buddy\Projects\HBRelog_old\HBRelogManager.cs:Zeile 87.
      [04/24/2013 13:22:11] pwnguin: WoW process was terminated. Restarting
      [04/24/2013 13:22:11] pwnguin: starting C:\Program Files (x86)\World of Warcraft\Wow.exe
      [04/24/2013 13:22:14] D3D11CreateDeviceAndSwapChain result: 0
      [04/24/2013 13:22:14] pwnguin: Installing Endscene hook
      [04/24/2013 13:22:14] pwnguin: GlueStatus: Disconnected
      [04/24/2013 13:22:17] pwnguin: Attempting to close Wow
      [04/24/2013 13:22:17] System.AccessViolationException: Could not read bytes from 060B0000 [299]!
      bei GreyMagic.ExternalProcessReader.ReadBytes(IntPtr address, Int32 count, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 134.
      bei GreyMagic.ExternalProcessReader.Read[T](IntPtr address, Boolean isRelative) in c:\Buddy\Projects\HBRelog_old\Libs\GreyMagic\ExternalProcessReader.cs:Zeile 203.
      bei HighVoltz.HBRelog.WoW.Hook.InjectAndExecute(IEnumerable`1 asm, Int32 returnLength) in c:\Buddy\Projects\HBRelog_old\WoW\Hook.cs:Zeile 184.
      [04/24/2013 13:22:17] pwnguin: GlueStatus: Disconnected
      [04/24/2013 13:22:17] System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
      bei HighVoltz.HBRelog.WoW.WowManager.Pulse() in c:\Buddy\Projects\HBRelog_old\WoW\WoWManager.cs:Zeile 383.
      bei HighVoltz.HBRelog.TaskManager.Pulse() in c:\Buddy\Projects\HBRelog_old\TaskManager.cs:Zeile 61.
      bei HighVoltz.HBRelog.CharacterProfile.Pulse() in c:\Buddy\Projects\HBRelog_old\CharacterProfile.cs:Zeile 110.
      bei HighVoltz.HBRelog.HbRelogManager.DoWork() in c:\Buddy\Projects\HBRelog_old\HBRelogManager.cs:Zeile 87.
      [04/24/2013 13:22:19] pwnguin: Successfully closed Wow
      [04/24/2013 13:22:45] Killing WowError process
       
    15. Alexcrit

      Alexcrit New Member

      Joined:
      Sep 25, 2011
      Messages:
      1
      Likes Received:
      0
      Trophy Points:
      0
      Hey thanks alot for this program! :D
      For anyone wondering how to use the tasks i have a task order that works fine:
      Wait - 240 minutes (4 hours)
      Idle - 3 minutes
      Start profile - (Put the name of your profile in this box, for example mine is: [H - Quest] 12-58 K-EK [Kick])

      Once again great program and thanks :)
       
    16. Mario27

      Mario27 Banned

      Joined:
      Jan 15, 2010
      Messages:
      6,336
      Likes Received:
      4
      Trophy Points:
      0
      that doesend work HBrelogger keeps restarting the honorbuddy
       
    17. DrMight

      DrMight New Member

      Joined:
      May 2, 2011
      Messages:
      35
      Likes Received:
      0
      Trophy Points:
      0
      There's a file called HBRelog.exe you're supposed to run, which again starts WoW & Honorbuddy for you when set up properly.

      When running anything more that 0 bots, this is a large timesaver, an I have no idea why I haven't startet using it myself before today.
       
    18. dankish

      dankish New Member

      Joined:
      Mar 2, 2013
      Messages:
      20
      Likes Received:
      0
      Trophy Points:
      0
      I had thought about this myself contemplating how many more bots I might like to run in the future if things go well with the 3 session key I have. I just figured that I would have separate installs of HB for each key. You have to point hbrelog to the executable for HB in each bot profile anyway, so you would just point to different installs of HB, each would already have the key saved and ready on startup each time.
       
    19. hesa2020

      hesa2020 New Member

      Joined:
      Mar 10, 2011
      Messages:
      2
      Likes Received:
      0
      Trophy Points:
      0
      Hello, im currently optimizing HBRelog
      And i would like to do something awesome for them, i would like to talk with you about that.
      Because i would like to sell something wich are going to work with HBRelog
      Add me on Skype please, il give you more details about it : wisahesa
       
    20. chtpm

      chtpm Member

      Joined:
      Nov 26, 2011
      Messages:
      649
      Likes Received:
      6
      Trophy Points:
      18
      This ^
       

    Share This Page