I just wondering if there an *selectable if not statement like there’s a *if not statement, if there isn’t one I have an idea to make it work but I want that to be a last resort
1 Like
Selectable if not? Why not trigger it instead if only the variable is false?
*selectable_if (rep = false)
2 Likes
I hadn’t thought of using the Boolean code for some reason. it will cause a little revamp of the variables but is should work
2 Likes
Yes, by what you described, works the same.
1 Like
it should, i’ll just need to check but if it does thank you
1 Like
You could also use != for “not equal”, like *selectable_if (variable != number) or (variable != “string”).
3 Likes
that also may be what I was looking for let me just check
1 Like
Also, there is not(foo)
which IIRC in an option needs to be *selectable_if (not(foo)) #Option
.
1 Like
got it. 20 (characters)
1 Like