yo, thanks for the help but this doesnt seem to adress the issue, i dont think the way i had the check for the mod implemented is the problem, because if i change the check to something i know how to check e.g. rarity the bot properly stores the item only when i try to check for the highly salvageable mod it doesnt work. i still tried to change the code in the way you suggest but it doesnt work
Func highsalvage($aItem)
Local $ModStruct = GetModStruct($aItem)
Local $MeasureForMeasure = StringInStr($ModStruct, "32000826", 0, 1)
If $MeasureForMeasure > 0 Then
Return True
Else
Return False
EndIf
Endfunc
this is the current check function but it again doesnt work(other criteria do work so im quite sure that the issue is the mod check).
do mod codes work for anyone here or do they need to be figured out again and if so how would i got about doing that?