so this is your code for JB
Func ItemToKeep($ItemMID, $ItemRarity)
Switch $ItemMID
Case 736 ; Gold skins to keep - 736 = Dragon Staff
If $ItemRarity = 2624 Then
Return True
Else
Return False
EndIF
Case 794,742,330,345,744,777,778,735,873,699,1011 ; Gold skins to keep - oni blade, katanas, shinobi swords, crude shields, bladed shields, bo staffs
If $ItemRarity = 2624 Then
Return True
Else
Return False
EndIF
Case Else
Return False
EndSwitch
^now this DOES keep dragon staffs, it kept a purple one i just found, but it doesnt keep the others, maybe if you altered it to...
Func ItemToKeep($ItemMID, $ItemRarity)
Switch $ItemMID
Case 736,794,742,330,345,744,777,778,735,873,699,1011 ; Gold skins to keep - 736 = Dragon Staff
If $ItemRarity = 2624 Then
Return True
Else
Return False
EndIF
Case 794,742,330,345,744,777,778,735,873,699 ; Gold skins to keep - oni blade, katanas, shinobi swords, crude shields, bladed shields, bo staffs
If $ItemRarity = 2624 Then
Return True
Else
Return False
EndIF
Case Else
Return False
EndSwitch
that may work?
*edit1* right tested that, didnt work. it kept another purple dragon staff but salvaged a gold platinum wand which id added to the list. im guessing its only keeping grapes? im guessing "If $ItemRarity = 2624 Then" is wrong?
*edit2* pulled this from google If $ItemRarity = 2623 Or $ItemRarity = 2626 Or $ItemRarity = 2624
so im assuming those are blue, purple and gold? which means 2624 is correct, then why isit keeping purples and not golds. FML, wish i knew how to code XD
ill try flip it to 2626, see what that does
*edit3* that didnt work either, salvaged a gold, try 2623 i guess