... Did cause a question tho: condition DAY or nite says requires "2 entries" so I added AND weekday... just removed the AND weekday and macro still works with just 1 entry "dawn." What does this mean?
The "Is it day?" or "is it night?" conditions MUST use two of the condition slots, because of how they REALLY work:
1. "Is it day?" really means:
a) is it AFTER Dawn?
AND
b) is it BEFORE Dusk?
2. "Is it night?" really means:
a) is it BEFORE Dawn? (between 12:00 AM and Dawn)
OR
b) is it AFTER Dusk? (between Dusk and 11:59 PM)
Since AHP uses midnight as the cutoff for each day, any conditions based on day/night must cross that threshold, so they need to use two condition slots.
For the same reason, conditions that will cross Midnight need to be split. For example, if I want a conditon based on "Between 10 PM and 2 AM", I need to write it as:
a) After 10 PM (between 10:00 PM and 11:59 PM)
OR
b) Before 2 AM (between 12:00 AM and 2:00 AM)
If you used an "AND" instead, it would never work (The two blocks of time are on opposite ends of the day)
To get around this, you can use a Dusk/Dawn timer to set a flag, and use that flag as your condition.
That would only use one condition slot ("is the flag set?").
I hope the way I explained it makes sense.