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

How to make bot salvage greys

deberry

New Member
Joined
Aug 6, 2011
Messages
25
Reaction score
0
my bot keeps selling greys instead of salvage and I just cant figure out how to fix this?
 
plugins>>Trinity>>DbProvider>>townrun.cs change ling 359 to this
if (qualityLevel > ItemQuality.Normal && qualityLevel <= ItemQuality.Superior)
Plugins\Trinity\Items\ TrinityItemManager.cs change line 533 too this
if (quality >= ItemQuality.Normal && quality <= ItemQuality.Superior)
 
This question gets asked just about every day it seems...

In Trinity\DbProvider\TownRun.cs change line 359 to
Code:
if (qualityLevel >= ItemQuality.Inferior && qualityLevel <= ItemQuality.Superior)

In in Trinity\Items\TrinityItemManager.cs change line 533 to
Code:
if (quality >= ItemQuality.Inferior && quality <= ItemQuality.Superior)

This will get trinity to salvage all greys and whites
 
why people need to salvage grey item? I don't understand. Don't you get enough Arcane dust from salvaging blue item?
 
Last edited:
why people need to salvage grey item? I don't understand. Don't you get enough Arcane dust from salvaging blue item?
Greys give reusable parts, the same crafting mat as whites do. For me at least I have far less reusable parts than veiled crystals. I'd rather use my inventory space on greys, whites and blues than rares.
 
This question gets asked just about every day it seems...

In Trinity\DbProvider\TownRun.cs change line 359 to
Code:
if (qualityLevel >= ItemQuality.Inferior && qualityLevel <= ItemQuality.Superior)

In in Trinity\Items\TrinityItemManager.cs change line 533 to
Code:
if (quality >= ItemQuality.Inferior && quality <= ItemQuality.Superior)

This will get trinity to salvage all greys and whites

Thank you for this
 
Back
Top