Bot Exploit

Full Version: Loot Rules Problem
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi!

i just updated my loot rules a bit and restarted the bot.

got Blackthorne's Jousting Mail in my inventory but the bot does NOT sell it, even it got less stats.

picture attached.

any idea why?


[QUALITY] == "Legendary" && [NAME] == "Blackthorne's Jousting Mail" # [VIT] >= 230 || [STR] >= 220 || [DEX] >= 220 || [INT] >= 220 || [SOCKETS] == 2 || [ALLRES] > 30 || -> [KEEP]
Can you delete the last "||" and try again?
i.e. change
[QUALITY] == "Legendary" && [NAME] == "Blackthorne's Jousting Mail" # [VIT] >= 230 || [STR] >= 220 || [DEX] >= 220 || [INT] >= 220 || [SOCKETS] == 2 || [ALLRES] > 30 || -> [KEEP]
to
[QUALITY] == "Legendary" && [NAME] == "Blackthorne's Jousting Mail" # [VIT] >= 230 || [STR] >= 220 || [DEX] >= 220 || [INT] >= 220 || [SOCKETS] == 2 || [ALLRES] > 30 -> [KEEP]

As "||" means "or" but there isn't a condition after this "||" operator, it'll cause problems.
ah, thanks! my fault
Reference URL's