Jump to content

Join our Slack

Talk to other users and have a great time
Slack Server

Welcome to our Community

Click here to get your Exiled Bot license
Donation Store
Sign in to follow this  
PathOfBot

0.51e pickit syntax bug

Recommended Posts

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

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
Sign in to follow this  

×
×
  • Create New...