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

[Help]Pre-made item rules!

For rings / amulets filtering out those that have the stats Attack Speed, Critical Hit Chance or Critical Hit Damage or MF/GF over 15 for rings and over 30 for amulets should be sufficient. If a ring / amulet doesn't have one of these stats it would be worthless anyhow.
 
Bot skipped all items. Didn't loot anything. Used +Loot all don't sell legendary
 
Bot skipped all items. Didn't loot anything. Used +Loot all don't sell legendary
Make sure the looting is turned on in the profile. Also, have ~40 loot radius.

For rings / amulets filtering out those that have the stats Attack Speed, Critical Hit Chance or Critical Hit Damage or MF/GF over 15 for rings and over 30 for amulets should be sufficient. If a ring / amulet doesn't have one of these stats it would be worthless anyhow.
You want me to do this for you? What do you want it to loot / sell besides what you described?
 
Last edited:
Hey man don't wish to be an ass and your profiles are awesome but i just cant figure out why my bot wont move towards gold. I have a huge pickup range so it usually isnt much of a problem but this is what i made, as simple as i could think off but it still wont move towards gold. "loot radius" is set to the default 60.

<?xml version="1.0" encoding="utf-8" ?> <ItemRules name="Gold Farm" useRounde - Pastebin.com

Also one question, can u explain me why noone uses Legendary+? Won't you miss set items?
 
Make sure the looting is turned on in the profile. Also, have ~40 loot radius.

If this "PickupLoot>True</PickupLoot>" in the profile means that loot is on, so Looting is turned on and i did ~40 loot radius.
 
Has anyone figured out how to KEEP item with a specific stat combo?

Like, keep ARMOR with STR>50 & VIT>50 & RESALL>50
 
Hey man don't wish to be an ass and your profiles are awesome but i just cant figure out why my bot wont move towards gold. I have a huge pickup range so it usually isnt much of a problem but this is what i made, as simple as i could think off but it still wont move towards gold. "loot radius" is set to the default 60.

<?xml version="1.0" encoding="utf-8" ?> <ItemRules name="Gold Farm" useRounde - Pastebin.com

Also one question, can u explain me why noone uses Legendary+? Won't you miss set items?

You do not need to put a "+" near the quality in your code. The guy that started the thread, was speaking of adding "+" and "-" on the file name, so people can identify which config file does what and so on. That is why you are not looting anything, even gold, because your config is bogus!

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

<ItemRules name="Gold Farm" useRoundedValues="true">
  <!-- Pure gold and legendary+ pickup -->
  <Priority priority1="Keep" priority2="Salvage" priority3="Sell" />

  <Categories>

    <Category ruleType="PickUp">
      <!-- Pick up all Legendary+ items -->
      <ItemRule>
        <StatRules>
          <Rule quality="Legendary+" />
        </StatRules>
      </ItemRule>

      <!-- Pick up gold, at least in stacks of 10 -->
      <ItemRule itemName="Gold" stack="10" />
      
      <!-- Note: picks up NO pages and tomes, blacksmithing/jewelcrafting, NO Gems and NO Health potions -->
    </Category>


    <Category ruleType="Keep">
      <ItemRule ruleType="Keep" description="Legendary and better (Set)">
        <StatRules>
          <Rule quality="Legendary+" />
        </StatRules>
      </ItemRule>
    </Category>


    <Category ruleType="Sell">
      <ItemRule description="Sell Everything">
        <StatRules>
          <Rule quality="Magic1" />
        </StatRules>
      </ItemRule>
    </Category>

  </Categories>
</ItemRules>

For example:
Code:
<Rule quality="Legendary+" />
->
Code:
<Rule quality="Legendary" />

That means, it will loot everything from Legendary UPWARDS!
 
Has anyone figured out how to KEEP item with a specific stat combo?

Like, keep ARMOR with STR>50 & VIT>50 & RESALL>50
I explained this in the other thread.
Here.
If I need to elaborate any further let me know.
 
Last edited:
Also one question, can u explain me why noone uses Legendary+? Won't you miss set items?
When you tell it to pick up legendary it is basically saying legendary and above. That is why it picks up everything is you set it to magic1. Goes the same way with the keep logic, you keep everything at and above the level you state. Set items are above legendary meaning you loot them and keep them if you put it as legendary.
If this "PickupLoot>True</PickupLoot>" in the profile means that loot is on, so Looting is turned on and i did ~40 loot radius.
I'm afraid I can't do much for you then. Have you got the newest version of the bot? Please screencap your settings window in the bot and let me see.
 
This is my settings Безымянный.webp
 
This is my settings
Alright time to be childish and experiment around with the settings to see what is causing it. From what I can see you have your stash pages protected, something I don't. Could you try putting it to "None"? When did you download the set of rules you have?
 
Fuck me, ama tard. I did stash pages protected-none and its work. So can you explain for what this option?
 
Fuck me, ama tard. I did stash pages protected-none and its work. So can you explain for what this option?
Please report this as a bug. It is not supposed to be like this. The option is meant to prevent the bot from stashing items into a stash page you want to use for something else. If you pick none it should just keep the desired items in the bag.
 
Going to make rules that are a lot more specific for personal use. If you need any custom rules let me know.
 
-loot items only dont sell legendarys

ive edited this so it will only pick up legendarys and ignore rares

basically i changed this line
<!-- Pick up all rare+ items -->
<ItemRule>
<StatRules>
<Rule quality="legendary" />
</StatRules>
</ItemRule>

my huge problem now is, it keeps looting tomes and pages of smith and jewelcrafting + health pots
know how to fix that ?
 
-loot items only dont sell legendarys

ive edited this so it will only pick up legendarys and ignore rares

basically i changed this line
<!-- Pick up all rare+ items -->
<ItemRule>
<StatRules>
<Rule quality="legendary" />
</StatRules>
</ItemRule>

my huge problem now is, it keeps looting tomes and pages of smith and jewelcrafting + health pots
know how to fix that ?
Completely delete the rules for the stuff you don't want it to loot. It's a bug.
 
Uploaded rules for looting gold and legendaries only. Not selling at all.
 
Back
Top