• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Bootstrap Condition syntax

Kathorus

Well-known member
I remember seeing some information about bootstrap condition syntax, but now can't seem to find it. Anyone who could point me in the right direction would be greatly appreciated.

What I have need to do is test two compound statements and it does not seem to be working as I would expect. Written out it is

Condition1 AND Condition2
OR
Condition3 AND Condition4 AND Condition5

I am fairly certain I remember & = AND and | = OR, and figured that they should be grouped by parenthesis to evaluate correctly.

Therefore, I have this written in the tag expression of the bootstraps condition as

(Condition1 & Condition2) | (Condition3 & Condition4 & Condition5)
 
What you have listed above in theory should work. Maybe best to actually show the exact tags expression, your timing, and what the result is.

One Thing that got me when first working with this stuff is that the tags that are being checked are on the HERO not on the Pick itself. So are the tags your checking located on the hero?
 
Okay, may syntax was good, my logic was bad. As part of the condition I was seeking to check if the APG was being used - instead of count:source.APG <> 0 I had count:source.APGHeader <> 0.

Everything seems to be working now, thanks.
 
Back
Top