Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

start_at = room01

locations {
   room01 : location "You're in the living room." {
      on_command {
         : match "examine table" {
            : print "It's a coffee table.";
            : done;
         }
      }
   }
   room02 : location "You're in the library." {
   }
   room03 : location "You're in the dining room." {
   }
}

connections {
   from, direction, to = [
      room01, east, room02,
      room01, west, room03,
      ]
}

objects {
   coffee_table : scenery "a coffee table" start_at = "room01";
   reading_table : scenery "a reading table" start_at = "room02" examine_message = "It's a reading table.";
   dining_table : scenery "a dining room table" start_at = "room03" examine_message = "It's a dining room table.";
}