Hi all!
I just don't think it's worth it to pick up other rares, but I don't want my bot to pick up armor of other categories, so it won't waste time identifying junk..
I tried setting up custom item rules, and setting trinity to use custom rules, but it just won't pick up anything if I use them..
What am I doing wrong?
Anybody got a way to fix that?
Thanks
I just don't think it's worth it to pick up other rares, but I don't want my bot to pick up armor of other categories, so it won't waste time identifying junk..
I tried setting up custom item rules, and setting trinity to use custom rules, but it just won't pick up anything if I use them..
What am I doing wrong?
Anybody got a way to fix that?
Thanks
Code:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="My Pickup rules - ONLY USE WITH PLUGIN ENABLED" useRoundedValues="false">
<!-- These loot rules are really for people that don't use World Object Handler to disable/ignore item pickup rules -->
<Priority />
<Categories>
<Category ruleType="PickUp">
<ItemRule itemType="Gloves">
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
<ItemRule itemType="Bracer">
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
<ItemRule itemType="Ring">
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
<ItemRule itemType="Amulet">
<StatRules>
<Rule quality="Rare4" />
</StatRules>
</ItemRule>
<ItemRule description="Keep Legendary Items 62+">
<StatRules>
<Rule quality="Legendary" />
<Rule stat="Level" minValue="62" />
</StatRules>
</ItemRule>
<ItemRule itemName="Gold">
<StatRules>
<Rule stacks="1500" />
</StatRules>
</ItemRule>
<ItemRule itemName="Plan*">
<StatRules>
<Rule quality="Legendary" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>