Hey guys, I've been farming using an updated version of the Kilroys bot and it's working fine, but it collects everything including worthless dyes.
The extra merch food is great but I can't seem to get the script to just sell the trash dyes to the merchant for 1g/ea. I've found the relevant bit of the script and played around with it a bit but I can't seem to get it to work.
Any pointers in the right direction would be appreciated.
Func CanSell($q, $m)
If $m = 0 OR $q > 1 Then
Return False
ElseIf $m = 146 OR $m = 22751 Then ;Dyes/Lockpicks
Return False
ElseIf $m = 2991 OR $m = 2992 Or $m = 2989 Or $m = 5899 Then ;ID/Salvage
Return False
ElseIf $m = $ALE OR $m = $AGED_ALE Then ;Dwarven Ale/Aged Dwarven Ale
Return False
ElseIf $m = 5594 OR $m = 5595 OR $m = 5611 OR $m = 5853 OR $m = 5975 OR $m = 5976 OR $m = 21233 Then
Return False
Else
Return True
EndIf
EndFunc