Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

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