Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Here is my test game for issue 1. I'll try to have this fixed asap.

start_at = my_location
locations {
   my_location : location "You are in a room." ;
}
integers {
   t : integer "0" ;
} on_tick {
   : increment "t" ;
}
on_command {
   : match "test _"  {
      : print {("There has been " + t + " tick(s).")}
      : append "This is " ;
      : append "the" ;
      : print " second line." ;
   }
}