Probably I'm stupid, but I've set the system to use the NoCommons loot rules and yet the bot keeps picking up white items. Additionally can you put in a randomizer for selling so that it doesn't sell the entire inventory instantly?
Additionally, it won't sell off the magic and rare items it picks up but evaluates as useless.
*Edit*
Screwed around a bit and changed my loot rules to the following. Seems to have fixed it.
Additionally, it won't sell off the magic and rare items it picks up but evaluates as useless.
*Edit*
Screwed around a bit and changed my loot rules to the following. Seems to have fixed it.
PHP:
<?xml version="1.0" encoding="utf-8" ?>
<ItemRules name="Giles Equipper Rules - No Commons" useRoundedValues="false">
<Priority priority1="Sell" />
<Categories>
<Category ruleType="PickUp">
<ItemRule description="Pickup All">
<StatRules>
<Rule stat="Level" minValue="1" quality="Magic1" />
</StatRules>
</ItemRule>
<ItemRule itemName="Gold" stack="1" />
<ItemRule itemName="*Plan:*" stack="1" />
<ItemRule itemName="*Design:*" stack="1" />
<ItemRule itemName="*Tome of*" stack="1" />
<ItemRule itemName="*Health Potion*" stack="1" />
</Category>
<Category ruleType="Keep">
<ItemRule description="Keep Legendary Items">
<StatRules>
<Rule stat="Quality" value="Legendary" />
</StatRules>
</ItemRule>
<ItemRule itemName="Tome of*" description="Tome of Secrets"/>
<ItemRule itemName="Plan*" description="Blacksmithing Plan"/>
<ItemRule itemName="Design*" description="Jewelcrafting Plan"/>
<ItemRule itemName="*Health Potion*" description="Health Potions"/>
</Category>
<Category ruleType="Sell">
<ItemRule description="Sell Everything Left">
<StatRules>
<Rule stat="Quality" value="Magic1" />
</StatRules>
</ItemRule>
</Category>
</Categories>
</ItemRules>
Last edited: