Can I lock the choice button?

Posted: 13 Mar 2023 07:19
by booksuny

I want to make it possible to choice a choice button by solving a puzzle or doing the second round of the game while the option is locked in a specific situation.

Does naninovell offer this function?


Re: Can I lock the choice button?

Posted: 13 Mar 2023 08:32
by idaot

You can create a different button for each state and conditionally show them using a ternary operator.

Example:
@choice "Option 1" button:{ HasPlayed() ? "Locked" : "Normal" }