PathOfBot 1 Report post Posted September 2, 2015 Hey guys, i noticed some weird bug (i guess) regarding a combination of the pickit operators "&&" and "||". If u want an item to have the mods A and B or C you have to write it like this: # (B || C) && A that works fine. but if you use: # A && (B || C) it wont work as intended and the bot will stash any item with one of the mods A or B or B Example: I had the line: [Category] == "Gloves" && [Rarity] == "Rare" # [base_maximum_life] >= "50" && ([attack_speed_+%] >= "10" || [attack_minimum_added_physical_damage] >= "5") and the bot stashed gloves with 11% IAS but without any life I tryed [Category] == "Gloves" && [Rarity] == "Rare" # ([attack_speed_+%] >= "10" || [attack_minimum_added_physical_damage] >= "5") && [base_maximum_life] >= "50" and it worked fine. Any ideas or is is really just a bug? Share this post Link to post Share on other sites
sploitz 0 Report post Posted September 2, 2015 Would like to check but still waiting for the 2.0.2e patch cant bot right now. I have an similar issue with the IAS Gloves but i was too lazy to check. Share this post Link to post Share on other sites
alkpone 1000000 Report post Posted September 6, 2015 Looks like an ugly bug lol. Gonna investigate. Share this post Link to post Share on other sites