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

How can i make the bot save rare rings?

Crysie

New Member
Joined
Mar 28, 2014
Messages
65
Reaction score
0
How can i make the bot save rare rings and Salvage the rest?
i have Weapnscore on max and armor score on max and still it put it in the bank =/
 
Plugins > Trinity > Config > Items > "Choose Item Type Rules" - File Based Script Rules

Edit the rules file for rare.dis under \Plugins\Trinity\ItemRules\Rules\[ruleset]

It would be something along the lines of

[QUALITY] == "Rare" && [TYPE] == "Ring" -> [KEEP]

[QUALITY] == "Rare" -> [TRASH]

and you could get more specific than that for example:

[QUALITY] == "Rare" && [TYPE] == "Ring" # ([CRIT%] >= 5 || [CRITDMG%] >=80) && ([DEX] >= 300 || [STR] >= 300 || [INT] >= 300)
 
Last edited:
is there a way to make it save stuff that have lets say CRIT% , CRITDMG% , attackspeed and int .. and the amount dosent mather? like if they have all those stats it will pick it up whatever number its on them..

extra question to that.. lets say im looking for those 4 .. but only 3 of those stats will pop.. can i make a rule like:

[QUALITY] == "Rare" && [TYPE] == "Ring" # ([CRIT%] >= 0 || [CRITDMG%] >= 0) && ([DEX >= 0)
[QUALITY] == "Rare" && [TYPE] == "Ring" # ([CRIT%] >= 0 || [CRITDMG%] >= 0) && ([STR >= 0)
[QUALITY] == "Rare" && [TYPE] == "Ring" # ([CRIT%] >= 0 || [CRITDMG%] >= 0) && ([INT >= 0)

and it will cover any combo? if u understand what i mean.

P.s .. i can ask you tho if u have a file done for something like that.. playing WD and i want those 4 stats .. but 3 will do on a drop cuz i can enchant the last one :)
that goes for rings, weapons and armor (CRIT% , CRITDMG% , attackspeed and int)

dont know how many lines that would take? like 9 or 16? for each object ex Rings
 
Last edited:
Back
Top