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

Bot Cannot vendor or stash with new client?

satan2004

New Member
Joined
Jun 12, 2012
Messages
456
Reaction score
0
The bot refuses to vendor n stash items

it heartstones when the bags are full but then i get disonnect from server..

and its ONLY when it goes to stash n vendor


What is going on?
 
Its looting the gold and picking up blues and yellow,


Im using my own edited lootrules so it keeps magic find, gold find and certain dps weapons



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 all magic+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>

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

      <!-- Health potions -->
      <ItemRule itemName="*Health Potion*" stack="1" />
    </Category>

    <Category ruleType="Keep">
      
      <ItemRule itemBaseType="Weapon" twoHanded="true" description="High DPS 2h Weapons">
        <StatRules>
          <!-- Magic Weapons should have at least 1200 DPS -->
          <Rule stat="DPS" minValue="1200" quality="Magic1" />
          <!-- Rare weapons should have at least 1100 considering they provide extra stats most of the time. -->
          <Rule stat="DPS" minValue="1100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Weapon" twoHanded="false" description="High DPS 1h Weapons">
        <StatRules>
          <Rule stat="DPS" minValue="1000" quality="Magic1" />
          <Rule stat="DPS" minValue="900" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Dexterity">
        <StatRules>
          <Rule stat="Dexterity" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Srength">
        <StatRules>
          <Rule stat="Strength" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Gold Find">
        <StatRules>
          <Rule stat="GoldFind" minValue="25" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Magic Find">
        <StatRules>
          <Rule stat="MagicFind" minValue="20" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Gold Find">
        <StatRules>
          <Rule stat="GoldFind" minValue="25" quality="Magic1" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Magic Find">
        <StatRules>
          <Rule stat="MagicFind" minValue="20" quality="Magic1" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Armor" description="Rare armor with Resist All">
        <StatRules>
          <Rule stat="ResistAll" minValue="65" quality="Rare4" />
        </StatRules>
      </ItemRule>
      
      <ItemRule itemBaseType="Jewelry" description="Rare jewelry with Intelligence">
        <StatRules>
          <Rule stat="Intelligence" minValue="100" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Jewelry" description="Rare jewelry with Dexterity">
        <StatRules>
          <Rule stat="Dexterity" minValue="90" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemBaseType="Jewelry" description="Rare jewelry with Resistall">
        <StatRules>
          <Rule stat="ResistAll" minValue="60" quality="Rare4" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="String of Ears" description="High DR% String of Ears">
        <StatRules>
          <!-- String of Ears should have at least 17% damage reduction. Any lower and its not worth a whole lot.-->
          <Rule stat="DamageReductionPhysicalPercent" minValue="17" />
        </StatRules>
      </ItemRule>

      <ItemRule itemName="Talisman of Aranoch" description="Talisman of Awesome Lowbieness" />

      <!-- Keep rares and legendaries, regardless of stats. -->
      <ItemRule ruleType="Keep" description="Rare and better items!">
        <StatRules>
          <Rule quality="Rare4" />
        </StatRules>
      </ItemRule>
      
    </Category>

    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>
    
  </Categories>
</ItemRules>
 
Back
Top