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

How can bot pick up legend and rare only?

mrnguyen

New Member
Joined
Nov 5, 2012
Messages
12
Reaction score
0
How can I do like the title? The bot picks up magic item and it makes the run slower. Thanks.
 
If you use Giles Trinity, you can set this up pretty easy in the loot tab. If you're using a loot rule, you need to search for
PHP:
<ItemRule>
	<StatRules>
		<Rule stat="Quality" value="Magic1" />
		...
	</StatRules>
</ItemRule>
And change it to
PHP:
<ItemRule>
	<StatRules>
		<Rule stat="Quality" value="rare4" />
		...
	</StatRules>
</ItemRule>
That will tell the bot to only loot rare items (the yellow ones).
 
Rare only or rare and legend? and where is those files to open. I have giles trinity, but there are many files inside that foler.Below is inside gile trinity/class/itemstat
private class GilesItemStats
{
public double iTotal { get; set; }
public double[] iTotalPerQuality { get; set; }
public double[] iTotalPerLevel { get; set; }
public double[,] iTotalPerQPerL { get; set; }
public double iTotalPotions { get; set; }
public double[] iPotionsPerLevel { get; set; }
public double iTotalGems { get; set; }
public double[] iGemsPerType { get; set; }
public double[] iGemsPerLevel { get; set; }
public double[,] iGemsPerTPerL { get; set; }
public double iTotalInfernalKeys { get; set; }

public GilesItemStats(double total, double[] totalperq, double[] totalperl, double[,] totalperqperl, double totalpotions, double[] potionsperlevel, double totalgems,
double[] gemspertype, double[] gemsperlevel, double[,] gemspertperl, double totalkeys)
{
iTotal = total;
iTotalPerQuality = totalperq;
iTotalPerLevel = totalperl;
iTotalPerQPerL = totalperqperl;
iTotalPotions = totalpotions;
iPotionsPerLevel = potionsperlevel;
iTotalGems = totalgems;
iGemsPerType = gemspertype;
iGemsPerLevel = gemsperlevel;
iGemsPerTPerL = gemspertperl;
iTotalInfernalKeys = totalkeys;
}
Thanks.
 
Last edited:
Rare only or rare and legend? Thanks.
Rare and above (legendary/set items). With <Rule stat="Quality" value="rare4" /> you set the minimum quality the item has got to be for DB to pick it up.
 
Back
Top