S Salcifufu New Member Joined Nov 9, 2014 Messages 8 Reaction score 0 Nov 20, 2014 #1 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 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
HeyLookItsBrett New Member Joined Jun 4, 2012 Messages 33 Reaction score 0 Nov 20, 2014 #2 Are you using custom item rules or the trinity settings/scoring?
S Salcifufu New Member Joined Nov 9, 2014 Messages 8 Reaction score 0 Nov 20, 2014 #3 no I do not use.
HeyLookItsBrett New Member Joined Jun 4, 2012 Messages 33 Reaction score 0 Nov 21, 2014 #4 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.
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.
S Salcifufu New Member Joined Nov 9, 2014 Messages 8 Reaction score 0 Nov 22, 2014 #5 thank you for helping me