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

Just purchased 4 Licenses. I have a few general questions.

attacus

New Member
Joined
Mar 9, 2014
Messages
5
Reaction score
0
Hello, I am new to this forum and have recently purchased 4 licenses and I had a few general questions.
1. Is there any way to get the bot to identify then sell ALL rares that it finds?
2. Can I prevent it from picking up ALL the gems and instead only pick up quality, multistrike
3. Can I get the bot to stop picking up ALL flasks even if they are quality.
4. On the main window, there is a drop down menu with choices: Apoc's Ranger CR, Brainssss, and exile. How do I find out what each of these mean?
5. Also, right above that there is a drop down menu with 2 identical Grindbot {simplified} options, I am unsure of the difference between them.

If someone can please take the time to answer these questions I would really appreciate it. I am liking the community thus far and don't plan on leaving soon :p. Thank you in advanced.
 
For 1-3, you need to edit the default item filter. The gui has some known bugs, where you need to click between different filters in each category to get the right panel to update properly, so here's the result file of the steps I'm about to explain:
Code:
[
  {
    "Description": "Default pickup filter.",
    "Type": 1,
    "Filters": [
      {
        "Description": "Pickup all maps.",
        "Enabled": true,
        "Types": [
          "/Maps/"
        ]
      },
      {
        "Description": "Pickup all map fragments.",
        "Enabled": true,
        "Types": [
          "/MapFragments/"
        ]
      },
      {
        "Description": "Pickup all important items by rarity.",
        "Enabled": true,
        "Rarities": [
          3,
          2,
          6
        ]
      },
      {
        "Description": "Pickup all currency except...",
        "Enabled": true,
        "Names": [
          "Name Goes Here"
        ],
        "NameRegex": false,
        "NameMatchAnyRatherThanAll": false,
        "Rarities": [
          5
        ]
      },
      {
        "Description": "Pickup all quality skill gems.",
        "Enabled": true,
        "Rarities": [
          4
        ],
        "MinQuality": 1
      },
      {
        "Description": "Pickup all Vaal skill gems. This is needed due to the next filter excluding the common ones. (Disabled)",
        "Enabled": false,
        "Names": [
          "Vaal"
        ],
        "Rarities": [
          4
        ]
      },
      {
        "Description": "Pickup all non-common, no-quality skill gems. (Disabled)",
        "Enabled": false,
        "Names": [
          "Fireball",
          "Spark",
          "Sweep",
          "Ground Slam",
          "Cleave",
          "Double Strike",
          "Dual Strike",
          "Burning Arrow",
          "Heavy Strike",
          "Glacial Hammer",
          "Freezing Pulse",
          "Split Arrow",
          "Raise Zombie",
          "Ice Nova",
          "Leap Slam",
          "Shield Charge",
          "Whirling Blades",
          "Cold Snap",
          "Detonate Dead",
          "Poison Arrow",
          "Ice Shot",
          "Flicker Strike",
          "Ice Spear",
          "Infernal Blow",
          "Shock Nova",
          "Viper Strike",
          "Explosive Arrow",
          "Rain of Arrows",
          "Firestorm",
          "Puncture",
          "Lightning Arrow",
          "Bear Trap",
          "Fire Trap",
          "Reave",
          "Ethereal Knives",
          "Decoy Totem"
        ],
        "NameRegex": false,
        "NameMatchAnyRatherThanAll": false,
        "Rarities": [
          4
        ],
        "MaxQuality": 0
      },
      {
        "Description": "Pickup all items that can vendor for a Chromatic Orb.",
        "Enabled": true,
        "SocketColors": [
          "R-G-B"
        ]
      },
      {
        "Description": "Pickup all 5/6-link items.",
        "Enabled": true,
        "MinLinks": 5
      },
      {
        "Description": "Pickup all 6-socket items.",
        "Enabled": true,
        "MinSockets": 6
      },
      {
        "Description": "Pickup all items that can vendor for an Armourer's Scrap, Blacksmith Whetstone, or Glassblower's Bauble.",
        "Enabled": true,
        "Rarities": [
          0
        ],
        "MinQuality": 20
      },
      {
        "Description": "Pickup all quality flasks. (Disabled)",
        "Enabled": false,
        "Types": [
          "/Flasks/"
        ],
        "MinQuality": 1
      },
      {
        "Description": "Pickup all utility flasks. (Disabled)",
        "Enabled": false,
        "Types": [
          "FlaskUtility"
        ]
      },
      {
        "Description": "Loot multistrike",
        "Enabled": true,
        "Names": [
          "Multistrike"
        ],
        "NameMatchAnyRatherThanAll": true
      }
    ]
  },
  {
    "Description": "Default stash filter.",
    "Type": 3,
    "Filters": [
      {
        "Description": "Stash all currency, uniques, and skill gems.",
        "Enabled": true,
        "Rarities": [
          5,
          3,
          4
        ]
      },
      {
        "Description": "Stash all 6 socket items.",
        "Enabled": true,
        "MinSockets": 6
      },
      {
        "Description": "Stash all 5+ linked items.",
        "Enabled": true,
        "MinLinks": 5
      },
      {
        "Description": "Stash all maps and utility flasks",
        "Enabled": true,
        "Types": [
          "/Maps/",
          "FlaskUtility"
        ]
      },
      {
        "Description": "Stash all flasks that will not vendor for a bauble.",
        "Enabled": true,
        "Types": [
          "/Flasks/"
        ],
        "MinQuality": 1,
        "MaxQuality": 19
      }
    ]
  },
  {
    "Description": "Default vendor filter.",
    "Type": 2,
    "Filters": [
      {
        "Description": "This filter will sell all normal/magic chromatic items that are 3L and only have 5 or fewer sockets",
        "Enabled": true,
        "Rarities": [
          0,
          1
        ],
        "MaxSockets": 5,
        "MaxLinks": 3,
        "SocketColors": [
          "R-G-B"
        ]
      },
      {
        "Description": "Sell ided rares",
        "Enabled": true,
        "Rarities": [
          2
        ],
        "HasToBeIdentified": true
      }
    ]
  },
  {
    "Description": "Default id filter",
    "Type": 5,
    "Filters": [
      {
        "Description": "Id rares",
        "Enabled": true,
        "Rarities": [
          2
        ],
        "HasToBeIdentified": false
      }
    ]
  }
]

Simply exit the bot, edit the "Settings\Item Filters\Default Filter.json" file with those contents.

However, as I was checking this out, since it seems to be a common request, such that we need to add in some defaults, I noticed we had a few bugs in the Id logic that will be fixed in the next beta version (won't be deployed tonight, too late).

1. Is there any way to get the bot to identify then sell ALL rares that it finds?

The bot will not sell anything that matches a stash filter, so you have to do three sets of changes.

First, remove Rares from being stashed:
1. Expand the "Default stash filter." category.
2. Click on the "Stash all currency, uniques, and skill gems." filter.
3. Uncheck "Rare" from the "Rarities" category.
4. Click on "Save Filter"

Second: add an Id filter for rares:
1. Right click in the blank space in the "Categories & Filters" panel and choose "Add Category".
2. Give it a name, such as "Default id filter" and choose "Id" as the Category.
3. Click "Save Category"
4. Right click on this new category and choose "Add Filter"
5. Give the new filter a name, "Id rares"
6. Expand the "Rarities" category and check "Rare".
7. Expand the "Identified" category and click the "Identified" box until it's empty.
8. Click on "Save Filter".

Third: add a vendor filter:
1. Right click on the "Default vendor filter." category and choose "Add Filter".
2. Give it a name, "Sell ided rares".
3. Expand the "rarities" category and check "Rare".
4. Expand the "Identified" category and change the square to a check mark.
5. Click on "Save Filter".

2. Can I prevent it from picking up ALL the gems and instead only pick up quality, multistrike

The bot will pickup all quality skill gems already through the "Pickup all quality skill gems." filter.

You can disable the "Pickup all non-common, no-quality skill gems. " filter as well as the "Pickup all Vaal skill gems." filter if you don't want those.

To only pickup non-quality multistrike, you can:
1. Create a new filter (right click on the "Default pickup filter" and choose "Add Filter...")
2. Set the description "Loot Multistrike"
3. Expand the "Names and Types" box category and type "Multistrike" (without quotes) into the Names box.
4. Place a check mark in the "Match Any" box.
5. Expand the "Rarites" box category and check "Skill Gem".
6. Click on "Save Filter"

3. Can I get the bot to stop picking up ALL flasks even if they are quality.

In the "Item Filter Editor" window, right click on the "Pickup all quality flasks." and "Pickup all utility flasks." filters under "Default pickup filter" and choose Disable.

You might also want to disable the "Pickup all items that can vendor for an Armourer's Scrap, Blacksmith Whetstone, or Glassblower's Bauble." filter as well.

4. On the main window, there is a drop down menu with choices: Apoc's Ranger CR, Brainssss, and exile. How do I find out what each of these mean?

You want to pretty much use the Exile, as that's the default CR for the bot. Otherwise to know what each does, you'd just look at the code in the Routines folder.

5. Also, right above that there is a drop down menu with 2 identical Grindbot {simplified} options, I am unsure of the difference between them.

Either one is fine. I'm not sure why the second one was force added, but it'll be removed later to avoid confusion.
 
Hi, thank you so much for your help. Most of what you said worked but for some reason my characters are identifying the items then stashing them instead of selling them. Its really weird. I have checked through the item filters like 10 times to make sure everything is correct but I can't find the reason they are stashing instead of selling.
 
Post your complete item filter (or PM if you'd rather), and we'll give it a look over.
 
Back
Top