Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Quick tutorial guide XD

  1. The player/players you control have "<space>" in them when they spawn.
  2. As you go through the levels it is going to pick up the letters from the "Letter Points".
  3. Picking up a letter will shift the position of the existing letters in the player by 1. Which in turn will cause the last letter in the player to be dropped in the "Letter Point". And add the picked up letter on the front. -> player("123_") -> Lpoint("4") -> player("4123") + Lpoint("_")
  4. The arrangement of the letters in the player is shown in this image. ( https://lospec.com/i/pejd ). The goal is to "Make Love", where "1234" in the image will spell "LOVE".
  5. Pressing Q will reverse the position of the letters. -> player("1234") -> Q -> player("4321")
  6. Pressing E will shift the position of the letters by 1. -> player("1234") -> E -> player("4123")

I hope this helps. :)