I cant run more one acc, everytime i get : [12/18/2012 13:27:41] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:27:41] : Attempting to close Honorbuddy [12/18/2012 13:27:42] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:27:42] : Attempting to close Honorbuddy [12/18/2012 13:27:42] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:27:42] : Attempting to close Honorbuddy [12/18/2012 13:27:46] : Successfully closed Honorbuddy [12/18/2012 13:27:46] : Successfully closed Honorbuddy [12/18/2012 13:27:48] : Successfully closed Honorbuddy [12/18/2012 13:28:01] : starting C:\Bots\2\2.exe [12/18/2012 13:28:01] : starting C:\Bots\3\3.exe [12/18/2012 13:28:02] : starting C:\Bots\4\4.exe [12/18/2012 13:28:07] : WoW and HB startup sequence complete [12/18/2012 13:28:08] : WoW and HB startup sequence complete [12/18/2012 13:28:08] : WoW and HB startup sequence complete [12/18/2012 13:28:13] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:28:13] : Attempting to close Honorbuddy [12/18/2012 13:28:13] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:28:13] : Attempting to close Honorbuddy [12/18/2012 13:28:13] : Honorbuddy has crashed.. So lets restart it [12/18/2012 13:28:13] : Attempting to close Honorbuddy [12/18/2012 13:28:15] : Successfully closed Honorbuddy [12/18/2012 13:28:17] : Successfully closed Honorbuddy [12/18/2012 13:28:17] : Successfully closed Honorbuddy [12/18/2012 13:28:26] ДРАКА: Attempting to close Wow [12/18/2012 13:28:26] ДРАКА: Attempting to close Honorbuddy [12/18/2012 13:28:26] : Attempting to close Wow [12/18/2012 13:28:26] : Attempting to close Wow [12/18/2012 13:28:26] : Attempting to close Wow [12/18/2012 13:28:27] ДРАКА: Successfully closed Wow [12/18/2012 13:28:27] : Successfully closed Wow [12/18/2012 13:28:27] : Successfully closed Wow [12/18/2012 13:28:27] : Successfully closed Wow [12/18/2012 13:28:38] ДРАКА: Successfully closed Honorbuddy With HB all ok because in Arelog starting is fine. P.S. If read log file, wow must be reastart too but never hapapen with wow (wow.exe was renamed to wow1.exe etc)
Post here in this thread. If we get enough requests the devs will most likely add it http://www.thebuddyforum.com/honorbuddy-forum/97190-gatherbuddy-request-status-report-button.html Regards
Hi, is it possible to increase the time after which HBrelog restarts Honorbuddy? Very often app restarts HB at the "CC-selecting" part. Best regards and Merry Christmas!
Can someone help me? Im really not a person who doesnt search google+forum and read a lot. it would be very nice if just a person can safe if HBrelog can handle a PB profile with logging on different Toons and running more than 3 at the same time. i really tried everything i know
Hi Are there any plans to add the ability to select / change the spec (primary/secondary talents) from the Logon task perhaps? (i.e. prior to the cc being loaded) Thanks in advance
[8:41:59 PM] gi: starting C:\Honorbuddy 2.5.6647.521\Honorbuddy.exe [8:43:00 PM] gi: Closing Honorbuddy because it took too long to attach [8:43:00 PM] gi: Attempting to close Honorbuddy [8:43:02 PM] gi: Successfully closed Honorbuddy does this over and over and over and over and over and over and over, what the fuck
Question to the Developer: Is it possible / planned to Start a specific HBRelog Profile from Command Line? like hbrelog.exe /profile=3 (3 = Index in List of HB Relog) This would be very useful to combine the Plugin "LogMeOut" with HBR. Example: HBR Profile 1 : Farm (Ore or Herbs) HBR Profile 2 : Mill or whatever .. Now you could set LogmeOut to your wished options .. start HBR Profile 1 with GB2 - and after some time .. it loggs out and "LogMeOut" has the option the run a command after logout which then would be "start HBR profile 2" this would allow a very precise profile change .. i think easier than an "if" / change profile task =) as LogMeOut has very extended options to set when to logout If nothing is planned in this direction .. i gonna take a look on it - maybe i can add it =) Thanks for Sharing the Code Edit: For now, i'm gonna test : Start HBR Profile 1 .. activate only HBR Profile 2 in List .. Close HBR ( wow+hb still runnin' ) - LogMeOut has option to run hbrelog.exe /autostart after logout .. maybe a workin' solution for the moment Edit 2 : Result : Does not work - when i start HBrelog.exe from cmd (as admin) it works - but with /autostart option nothing happens - HBRelog doesn't start .. Checked Code in Visual Studio - Code Error on Line "HbRelogManager.Settings.AutoStart = true;" (program.cs) - HBRelogManager is ok, but HbRelogManager.Settings is "null" - any idea? Thx for feedback!
Fixed : Put these 2 lines before gettings CMD Args var app = new Application(); Window window = new MainWindow(); --- from program.cs ---- var app = new Application(); Window window = new MainWindow(); CmdLineArgs = ProcessCmdLineArgs(args); if (CmdLineArgs.ContainsKey("AUTOSTART")) HbRelogManager.Settings.AutoStart = true; if (CmdLineArgs.ContainsKey("WOWDELAY")) HbRelogManager.Settings.WowDelay = GetCmdLineArgVal<int>(CmdLineArgs["WOWDELAY"]); if (CmdLineArgs.ContainsKey("HBDELAY")) HbRelogManager.Settings.HBDelay = GetCmdLineArgVal<int>(CmdLineArgs["HBDELAY"]); -- And so also this idea works (tested) - Start HBR - with Profile 1 & 2 in List. Only Profile 2 set as active in List. - Start HBR Profile 1with LogMeOut configured to Start HBR.exe /autostart after Logout - Kill HBR (Wow+HB still running) - After logout .. ( toon can be placed in city with hearthstone thx to LogMeOut ) - HBR /autostart starts 2nd Profile Gonna check how to impelement the /profile=[index] option now for cmd start - then you can nicely switch profiles with a wide range of options =) -- Done -- Code for those who want / if it wants to be added to main build -- program.cs -- Code: if (newInstance) { AppDomain.CurrentDomain.ProcessExit += CurrentDomainProcessExit; AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException; var app = new Application(); Window window = new MainWindow(); CmdLineArgs = ProcessCmdLineArgs(args); if (CmdLineArgs.ContainsKey("AUTOSTART")) HbRelogManager.Settings.AutoStart = true; if (CmdLineArgs.ContainsKey("WOWDELAY")) HbRelogManager.Settings.WowDelay = GetCmdLineArgVal<int>(CmdLineArgs["WOWDELAY"]); if (CmdLineArgs.ContainsKey("HBDELAY")) HbRelogManager.Settings.HBDelay = GetCmdLineArgVal<int>(CmdLineArgs["HBDELAY"]); if (CmdLineArgs.ContainsKey("PROFILE")) HbRelogManager.Settings.selectedProfile = GetCmdLineArgVal<int>(CmdLineArgs["PROFILE"]); window.Show(); app.Run(window); } -- MainWindow.xaml.cs -- Code: Log.Write("HBRelog Version {0}", version); if (HbRelogManager.Settings.selectedProfile != 0) { int counter = 0; foreach (CharacterProfile character in AccountGrid.Items) { if (counter == HbRelogManager.Settings.selectedProfile) { character.Settings.IsEnabled = true; } else { character.Settings.IsEnabled = false; } counter++; } } // if autostart is on then start all enabled acounts if (HbRelogManager.Settings.AutoStart) { foreach (CharacterProfile character in AccountGrid.Items) { if (character.Settings.IsEnabled) character.Start(); } } } -- GlobalSettings.cs -- Code: // Automatically start all enabled profiles on start private bool _autoStart; public bool AutoStart { get { return _autoStart; } set { _autoStart = value; NotifyPropertyChanged("AutoStart"); } } private int _selectedProfile; public int selectedProfile { get { return _selectedProfile; } set { _selectedProfile = value; NotifyPropertyChanged("selectedProfile"); } }
1. Download & Install "TortoiseSVN" from TortoiseSVN - Downloads 2. Copy that Link to Clipboard "http://hbrelog.googlecode.com/svn/trunk" 3. Create a folder on your Computer, right click on it -> "SVN Checkout" 4. It should paste the Link from Clipboard so just press "OK" 5. It will download HBRelog to that folder from SVN 6. Just start [YourFolder]/bin/Release/HBRelog.exe 7. Configure Your Profiles and so on ..
Possible to combinate LogMeOut with the Relogger? If you got ganked X-times, LogMeOut will logout but the relogger will instantly reconnect. i think its good to set something like, if logout because of gank or even dead reconnect X-Minutes later, and so on. there are a lot of situation where it isnt good to reconnect instantly.
Nemezhiz -- When would you expect to release that version with the code changes you mentioned today? (autostart/profile etc)
Hi Highvoltz, Problem with import to repo: When I try to import your program to my repo, the tortoise asks for a username and password. I really enjoy your program, and would like to try and play around with the code, in order to get a better understand C# and add some fun functionalities. I'm no developer or anything(yet!). Br, ManOnFire.