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

Salvage Grey Items??

Salcifufu

New Member
Joined
Nov 9, 2014
Messages
8
Reaction score
0
I would like to salvage grey items, but the bot always sell them at NPC.....someone help me?

* I use Trinity v2.2.0

Thank you, and good game for all ;)
 
I believe the only way to salvage grey items is to use custom item rules. You can get a pretty good set of rules from this forum, but you will have to edit the pickup.dis file and the salvagesell.dis file in a text editor in order to pickup and salvage whites/greys.

Whichever rule set you choose, you'll need to make sure that in the pickup.dis file these 2 lines are included and uncommented (no // before them):
Code:
[QUALITY] == "Inferior"
[QUALITY] == "Normal"

Then, in the salvagesell.dis file you need these 2 lines to make sure that all normal and grey items get turned into delicious reusable parts:
Code:
[QUALITY] == "Normal" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry") -> [SALVAGE]
[QUALITY] == "Inferior" && ([BASETYPE] == "Weapon" || [BASETYPE] == "Armor" || [BASETYPE] == "Jewelry") -> [SALVAGE]

It's a lot to take in at first, but once you get the hang of ItemRules2 you can really customize and optimize your bot!

You can read a guide for ItemRules2 here.
 
Back
Top