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

can't start demonbuddy

ieatrice

New Member
Joined
Aug 9, 2012
Messages
13
Reaction score
0
I download the file, and unzip it, and put it on my desktop. Double click , and enter my key. Start my D3, but I got this error.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

My demonbuddy, Tab is all gray. Main>Info Dumping>Plugins>Setting is all gray.

Help please, thanks
 
I download the file, and unzip it, and put it on my desktop. Double click , and enter my key. Start my D3, but I got this error.

WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].

My demonbuddy, Tab is all gray. Main>Info Dumping>Plugins>Setting is all gray.

Help please, thanks

Have you installed :
Microsoft .NET Framework 4
Microsoft Visual C++ 2010 Redistributable Package
?

If not, then go to the Help folder, and open up the DemonBuddy User manual. then use the links in there to install these programs (Getting Started, page 2) :)
 
You need to start D3 before Starting DB, cause DB need to be attached to a D3 session.

If you multibotting, you need to tell each DB what D3 you want to attach with it ;)
 
Have you installed :
Microsoft .NET Framework 4
Microsoft Visual C++ 2010 Redistributable Package
?

If not, then go to the Help folder, and open up the DemonBuddy User manual. then use the links in there to install these programs (Getting Started, page 2) :)

K will try again, thank
 
I download the file in help, and restart the computer. Getting the same message. I using windows 7, if that make any different.
 
With one of my PC dunno why i have a problem with my user account, when i log on the admin account all go well.

With the other i can log on user account ,run exe as admin and all go well.

Try to log on admin account to see if you had the same pb.
 
[10:38:21.252 N] Demonbuddy v1.0.880.204 started
[10:38:22.416 N] Logging in...
[10:38:23.005 N] Error attaching to Diablo III, Reason:System.IO.FileNotFoundException: Could not load file or assembly 'fasmdll_managed, Version=1.0.880.204, Culture=neutral, PublicKeyToken=f20f8f99ca0718ca' or one of its dependencies. The system cannot find the file specified.
File name: 'fasmdll_managed, Version=1.0.880.204, Culture=neutral, PublicKeyToken=f20f8f99ca0718ca'
at Zeta.MemoryManagement.ExternalProcessReader..ctor(Process proc)
at Zeta.ZetaDia.TryInitialize(Process proc, String& reason)

forgot to post that error also.
 
Have you tried to run on your admin account? Not run as admin but the real admin account?
 
first off all you have to run our wizard


also all DB files must be under the same folder and dont use any shortcuts for the DB exe
 
got it to work fine now.. i put everything in 1 folder and it work.

I running the core 3-7-3 gold. anyone know how I can set it NOT to pick up anything or just legendary?
 
In the DemonBuddy profiles forum you have a subforum "other" you ll find here the loot rule you need.
 
got it to work fine now.. i put everything in 1 folder and it work.

I running the core 3-7-3 gold. anyone know how I can set it NOT to pick up anything or just legendary?

Legendaries only:

Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Default Item Rules" useRoundedValues="true">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">
      
      <!-- Keep all Legendary items -->
      <ItemRule>
        <StatRules>
          <Rule stat="quality" value="Legendary" />
        </StatRules>
      </ItemRule>
	  
    </Category>

    <Category ruleType="Keep">
      
      <!-- Keep all Legendary items -->
      <ItemRule>
        <StatRules>
          <Rule stat="quality" value="Legendary" />
        </StatRules>
      </ItemRule>
	  
    </Category>
    
  </Categories>

I guess to pick up nothing, you could use a loot rule file like this:

Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Default Item Rules" useRoundedValues="true">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    
  </Categories>

And here's one just for gold:

Code:
<?xml version="1.0" encoding="utf-8" ?>

<ItemRules name="Default Item Rules" useRoundedValues="true">
  <!-- The order in which item rules are evaluated. Typically, this is fine for almost all rule sets. 
  However, you may want to switch things around sometimes if you want to force-sell things that may match keep rules. -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>
    <Category ruleType="PickUp">

      <!-- Pick up gold, at least in stacks of 100 -->
      <ItemRule itemName="Gold" stack="100" />
	  
    </Category>
    
  </Categories>

These should be saved as .xml files, and placed in the Rules folder.

Guide:
http://www.thebuddyforum.com/demonb...guides/54086-item-rules-quickstart-guide.html

This guide is not upto date, as far as I know, so it's a good idea to do as the previous poster said, and read through the loot rule other people have created.
 
Last edited:
Back
Top