This shows like a pop-up message but it has an input to write in, then you can detect what you have written in the answer. Will be something like this:
/+(Message)
if answer = (value)
[answer]
If the command /+Write your game skill level from 1 to 5
Will show like a pop-up message with that message but with also an input
Then, when you click enter, the value you entered will be the answer, so if answer = 5
will detect if you entered 5 in the input.
Example to use this
/+Enter your age for family-friendly reasons
if answer < 13
{
_Activating child filter
game var 1 = [answer]
}
Other example:
/+Enter the password to continue
if answer = 1581
{
unlock = blue
<block 3>Correct password. You can pass!
}
else
{
<block 3>Wrong password! You cannot pass!
}