What do I all need?
I'm using
http://www.thebuddyforum.com/demonb...es/83134-full-questing-all-acts-complete.html
Do I need anything more?
Also, I wonder which "item rule type" I need
Trinity Scoring
File Based Script rule
DB Loot rules
What is the difference? Do I need anything more to level from 1-60?
Hello there! I too was once in your shoes about 3weeks or so ago! Here's everything you'll need to go from 1-70 using DB!
Use Trinity 1.8.17, myself and many others have had too much issue with 1.8.18.
Use the stock Quest plugin.
Use Armory plugin (latest), and visit my tutorial thread on how to customize its behavior for equipping upgrades:
Boop
I personally recommend something like (if damage > 0.00 && toughness > 0.00). You'll see what I mean by reading my tutorial thread. Or, if you're lazy, read the thread on how to edit the behavior and use the following rule for leveling upgrades:
Code:
private static bool CalculateUpgrade(float damage, float toughness, float healing)
{
bool isUpgrade = false;
if (toughness > 0.00 && damage > 0.00)
isUpgrade = true;
return isUpgrade;
}
This will ONLY consider an item an upgrade if both damage AND toughness are greater than 0% (aka: always green for both). This will help you gear up 1-70, but end-game you'll want more specific rules so I recommend laxing it up for damage or toughness, mainly damage as toughness is easier to obtain, or go with a specific loot rule system that lets you specify items with (Primary Stat + Critical Chance + Critical Damage + Elemental type [or life on hit etc]).
Furthermore, the Trinity loot rules are fine. Just tell it to loot EVERYTHING Rare or Magical from level 1+ (use the drop downs). Then tell the TownRun Scorer to always trash any magical and rare (and use the radial buttons to tell DB to always sell everything to venders). This allows Armory to do the bulk of the work. Anything that is NOT an upgrade will be salvaged or sold. I recommend for a new account to always sell for gold as below 10million gold on your account is horrible going. You can always change it to salvage when you hit 70 so you can craft stuff or reroll on items.
DB will NEVER salvage OR sell Legendaries. It will always ID them and put them into your stash if they're not upgrades according to Armory. You can tell it to NOT ID later for alt farming, but some suspect that might be a way to detect you (i disagree, but w/e).
I also recommend keeping your bot full on potions until you loot the legendary infinite potions later on. I also recommend keeping your game difficlty BELOW Expert until you're 60+ and have decent gear. The goal here is speed vs benefits as you'll get far more experience, and easier to get equipped, in Normal and Hard than it is in Expert or Master as without proper gear/paragon you'll be going at a snails pace being VERY inefficient at leveling AND gearing your new toon.
Try to keep your toon above 50 potions at any given time. This is why you'll want to sell everything except Legendaries that are NOT upgrades until 70 so you can get gold to fund your potion addiction

. The bot, and your equipment, will thank you later.
Hope this helped!