@CR
That is true but the variable is taking up more memory than a boolean number would. And yes you're right, you don't need to specify the "=" DB will assume you are checking for TRUE(=1) unless told otherwise.
I am disappointed with the lack of logic operators in DB

there's only AND and OR isn't there?
otherwise you could have things like: if NOT reachedthegate then ...
but in this situation it doesn't give much benefit.
I would like to see all of them
AND - both true (11)
OR - at least one true (10 OR 01 OR 11)
NOT - false (0)
XOR - only one true (10 OR 01)
is that right? I think there's another one too.
[edit]
NAND - both false (00)
any more?
In programming, nothing exists
