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

why my bot is getting white items now?

aer0_x

New Member
Joined
Jun 18, 2012
Messages
234
Reaction score
0
2days ago my bot is getting white items and i touched nothinh..

this is the itemrules

<?xml version="1.0" encoding="utf-8" ?>
<!--
Set your bot settings and allow at least one page to deposit looted items.
Otherwise bot will just stand front of stash and do nothing.
-->
<ItemRules name="Roscopower's Loot Rules" useRoundedValues="true">

<Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

<Categories>
<Category ruleType="PickUp">

<!-- Pick up rare4+ ilvl63 items -->
<ItemRule>
<StatRules>
<Rule quality="Rare4" stat="level" minValue="63" />
</StatRules>
</ItemRule>

<!-- Pick up ?????, at least in stacks of 200 -->
<ItemRule itemName="?????" stack="250" />

<!-- Pick up designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="Plan:*" stack="1" />
<ItemRule itemName="Design:*" stack="1" />
</Category>

<Category ruleType="Keep">


<!-- Keep rare gear regardless of stats level 63+. -->
<ItemRule ruleType="Keep" description="Rare Gear">
<StatRules>
<Rule quality="Rare4" stat="level" minValue="63" />
</StatRules>
</ItemRule>

<!-- Keep designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="Plan:*" />
<ItemRule itemName="Design:*" />

<!-- Keep legendaries, regardless of stats. -->
<ItemRule ruleType="Keep" description="Legendary">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>

any idea?
 
Code:
<!-- Pick up ?????, at least in stacks of 200 -->
<ItemRule itemName="?????" stack="250" />

remove that, for starters
 
I believe you can only base the 'Pickup' conditions on Quality, so

Code:
<!-- Pick up rare4+ ilvl63 items -->
<ItemRule>
    <StatRules>
        <Rule quality="Rare4" stat="level" minValue="63" />
    </StatRules>
</ItemRule>

Should be:

Code:
<!-- Pick up rare4+ -->
<ItemRule>
    <StatRules>
        <Rule quality="Rare4" />
    </StatRules>
</ItemRule>

I could be wrong, though ;)
 
<ItemRule quality="rare4">
<StatRules>
<Rule stat="level" minValue="63" quality="Rare4" />
</StatRules>
</ItemRule>

try that
 
I believe you can only base the 'Pickup' conditions on Quality, so

Code:
<!-- Pick up rare4+ ilvl63 items -->
<ItemRule>
    <StatRules>
        <Rule quality="Rare4" stat="level" minValue="63" />
    </StatRules>
</ItemRule>

Should be:

Code:
<!-- Pick up rare4+ -->
<ItemRule>
    <StatRules>
        <Rule quality="Rare4" />
    </StatRules>
</ItemRule>

I could be wrong, though ;)

You can be, and are, wrong.
 
Firstly you have this line;
<Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

But you have no salvage or sell category. If you ONLY want a keep category, change it to this:
<Priority priority1="Keep" />

Secondly you have this rule:
<!-- Pick up ?????, at least in stacks of 200 -->
<ItemRule itemName="?????" stack="250" />

This is, I suppose, meant to be "Gold" not "????".

Next, your rules will not pickup any plans or designs. Plans/designs have colour codes in the item names, and so need a wildcard at the start and end. Rules for plans and designs should should look like this:
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />

Finally, your entire keep category is messed up. You don't add ruleTypes to the "itemRule" sections. For example this is wrong;
<ItemRule ruleType="Keep" description="Legendary">

If you want something to be "kept", it just needs to be a ruleset within the keep category. Try this replacement category:

Code:
<Category ruleType="Keep">

<!-- Keep rare gear regardless of stats level 63+. -->
<ItemRule description="Rare Gear">
<StatRules>
<Rule stat="Level" minValue="63" quality="Rare4" />
</StatRules>
</ItemRule>

<!-- Keep designs and plans, blacksmithing/jewelcrafting -->
<ItemRule itemName="*Plan:*" />
<ItemRule itemName="*Design:*" />

<!-- Keep legendaries, regardless of stats. -->
<ItemRule description="Legendary">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>

</Category>

Although, you have legendary added to your keep rules, but not your pickup rules, perhaps you should replace the entire ruleset with something a bit more advanced, for example this;
Code:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Silly Bug-Ridden Loot Rules" useRoundedValues="true">

<Priority priority1="Keep" />

<Categories>
<Category ruleType="PickUp">

   <!-- Jewelry that is ilvl 60+ and yellow -->
   <ItemRule itemBaseType="Jewelry" description="Rare Jewelry level 60+">
     <StatRules>
       <Rule stat="Level" minValue="60" quality="Rare4" />
     </StatRules>
   </ItemRule>
   <!-- Armor that is ilvl 63 and yellow -->
   <ItemRule itemBaseType="Armor" description="Rare Armor level 63+">
     <StatRules>
       <Rule stat="Level" minValue="63" quality="Rare4" />
     </StatRules>
   </ItemRule>
   <!-- Weapons that are ilvl 63 and blue or yellow  -->
   <ItemRule itemBaseType="Weapon" description="Blue+ Weapons level 63+">
     <StatRules>
       <Rule stat="Level" minValue="63" quality="Magic1" />
     </StatRules>
   </ItemRule>
   <!-- All Legendary or Set items  -->
   <ItemRule description="Any set or legendary">
    <StatRules>
     <Rule quality="Legendary" />
    </StatRules>
   </ItemRule>

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

<!-- Designs and Plans -->
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />
</Category>

<Category ruleType="Keep">

   <!-- Jewelry that is ilvl 60+ and yellow -->
   <ItemRule itemBaseType="Jewelry" description="Rare Jewelry level 60+">
     <StatRules>
       <Rule stat="Level" minValue="60" quality="Rare4" />
     </StatRules>
   </ItemRule>
   <!-- Armor that is ilvl 63 and yellow -->
   <ItemRule itemBaseType="Armor" description="Rare Armor level 63+">
     <StatRules>
       <Rule stat="Level" minValue="63" quality="Rare4" />
     </StatRules>
   </ItemRule>
   <!-- Weapons that are ilvl 63 and blue or yellow  -->
   <ItemRule itemBaseType="Weapon" description="Blue+ Weapons level 63+">
     <StatRules>
       <Rule stat="Level" minValue="63" quality="Magic1" />
     </StatRules>
   </ItemRule>
   <!-- All Legendary or Set items  -->
   <ItemRule description="Any set or legendary">
    <StatRules>
     <Rule quality="Legendary" />
    </StatRules>
   </ItemRule>

<!-- Designs and Plans -->
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />

</Category>
</Categories>
</ItemRules>

Which should pickup AND stash yellow ilvl 60+ jewelry, yellow ilvl 63 armor, blue ilvl 63 weapons, designs and plans, and any level set/legendary item. If you still have problems, check your plugins for buggy ones.
 
Back
Top