I made the changes except for textbox_capitalization, I don't really like capital letters.
Can I change the content of the Parser-type message?
>CREDITS
Parser type : Sometimes may require more than two-words.
Hi,
To solve this do not use the following in your game.
or adjective1_is "" or adjective2_is "" noun2_is "" or adjecitve2_is "" or preposition_is "" or verb2_is "" or verb_is ""
If you want to detect if the player is using more than two words, use the following logic
: match "_ _" { : if (inputs() > 2) { : print "Maximum of two words please."; : done; } }
Regards,
Chris