Bot Exploit
Loot Rules Problem - Printable Version

+- Bot Exploit (http://www.botexploit.com/en/forum)
+-- Forum: Bot Exploit Forum (/Forum-Bot-Exploit-Forum)
+--- Forum: Support (/Forum-Support)
+--- Thread: Loot Rules Problem (/Thread-Loot-Rules-Problem)



Loot Rules Problem - dbuddy - 07-27-2013 11:17 PM

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]


RE: Loot Rules Problem - Titanium - 07-28-2013 01:59 AM

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.


RE: Loot Rules Problem - dbuddy - 07-28-2013 01:12 PM

ah, thanks! my fault