Is there any way that I can have more than one condition for a single *selectable_if option?
For instance, when using *if statements, you can say:
*if (herp = 1) and (derp = 2)
Then this thing happens.
*else
The thing just doesn’t happen.
But that else statement can be a pain when I’ve got to insert it above a couple hundred lines of code. As you probably know, when I insert that if/else statement, everything below it will need to tab to the right to be in proper syntax alignment. Is there a way I can make a statement like this that works?
*selectable_if (herp = 1) and (derp = 2) # Option
Thanks for the assistance! You guys and girls are fantastic.