Are you guys really sure, that it solves the problem, if the Value is changing from 0 to 6?
It still just compares, "if Whatever=0 or Whatever=6" is true, then it triggers once (meaning triggering only if previously not true). But if you want to trigger once each occasion, that is not going to work in my understanding.
Exapmle:
Whatever = 8
Whatever=0 or Whatever=6 is NOT TRUE > nothing happens
Change Whatever to 0
Whatever=0 OR Whatever=6 is TRUE for the first time > trigger once
Change Whatever to 6
Whatever=0 OR Whatever=6 remains TRUE > nothing happens, already triggered
Seems to be the same problem as described already in an earlier post of mine.
One question Toddler: why exactly does the function solution bother you? Where does ist show up, and why is that any problem? I don't want to convince you, I just think, I can learn something there, I don't know about Please explain.