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

When DB crashes (blizz error)

Jaypwns

New Member
Joined
Apr 17, 2012
Messages
146
Reaction score
0
What reloggers work with this and giles loot stasher. I have a problem because it doesnt use the giles
 
What reloggers work with this and giles loot stasher. I have a problem because it doesnt use the giles

Did you try this plugin?
http://www.thebuddyforum.com/demonbuddy-forum/63473-request-db-stop-starter.html

if that is not working I made some changes to giles plugins myself which are working for me..


GilesStashReplacer
replace the OnEnabled event with this one:
Code:
public void OnEnabled()
        {
            if (!Directory.Exists(pluginPath))
            {
                Log("Fatal Error - cannot enable plugin. Invalid path: " + pluginPath);
                Log("Please check you have installed the plugin to the correct location, and then restart DemonBuddy and re-enable the plugin.");
                Log(@"Plugin should be installed to \<DemonBuddyFolder>\Plugins\GilesStashReplacer\");
            }
            else
            {
                LoadConfiguration();
                Log("****************************");
                Log("Locked and Loaded!");
                Log("DB's item handling now replaced");
                Log("****************************");
                Zeta.CommonBot.BotMain.OnStart += GilesStashReplacerHandleBotStart;
                Zeta.CommonBot.BotMain.OnStop += GilesStashReplacerHandleBotStop;
                Zeta.CommonBot.GameEvents.OnGameJoined += GilesStashReplacerOnJoinGame;
                Zeta.CommonBot.GameEvents.OnGameLeft += GilesStashReplacerOnLeaveGame;

                if (Zeta.CommonBot.BotMain.IsRunning)
                {
                    GilesStashReplacerHandleBotStart(null);
                    if (ZetaDia.IsInGame)
                        GilesStashReplacerOnJoinGame(null, null);
                }
            }
        }

GilesCombatReplacer
again replace the OnEnabled event with this
Code:
public void OnEnabled()
        {
            if (!Directory.Exists(pluginPath))
            {
                Log("Fatal Error - cannot enable plugin. Invalid path: " + pluginPath);
                Log("Please check you have installed the plugin to the correct location, and then restart DemonBuddy and re-enable the plugin.");
                Log(@"Plugin should be installed to \<DemonBuddyFolder>\Plugins\GilesCombatReplacer\");
            }
            else
            {
                LoadConfiguration();
                Zeta.CommonBot.BotMain.OnStart += GilesCombatBotStart;
                Zeta.CommonBot.GameEvents.OnPlayerDied += GilesCombatOnDeath;
                ITargetingProvider newTargetingProvider = new GilesCombatTargetingReplacer();
                CombatTargeting.Instance.Provider = newTargetingProvider;
                Log("ENABLED: Giles combat replacer now in effect!");

                if (Zeta.CommonBot.BotMain.IsRunning)
                    GilesCombatBotStart(null);
            }
        }


the things I added are simple but effective for me
 
Last edited:
DB-Run is working for me with Giles loot and stash plugin (without any custom changes to the code).
 
And if the giles isnt the problem its the profile switchers
 
Overnight ill just use drelogger on 1 part script since profile switchers aint working for me
 
I am using CIGGARC plugin and seems to be working just fine without any changes.

I tried the latest and it will not switch just quits after the first section.
I am using his plugin for multi part profiles and it does nothing.
 
Back
Top