From StrategyWiki, the video game walkthrough and strategy guide wiki
Jump to navigation Jump to search

Level skip[edit]

Start the game, go into the Options menu and hold Down DpadA ButtonX ButtonL Button. If it works, the clouds in the background will move faster. After you have started a new game, push Select Button to skip the current stage.

Passwords[edit]

These passwords give you maximum life and time:

Password creation[edit]

If you finish the game and check all your passwords, you can easily find a pattern in it so you can create your own passwords. Here's what you should know :

  • Passwords are exactly 6 letters long.
  • Passwords only use the letters BCDFGHJKLMNPRTVW.
  • Each letter is a value from 0 to 15, in programmation, the first value is 0, so treat it like a 1.

The first four letters control a piece of the game :

  • 1st letter : Level, from 0 to 12
  • 2nd letter : Life bottle, from 0 to 7
  • 3rd letter : Time remaining, last digit, from 0 to 9
  • 4th letter : Time remaining, first digit, from 0 to 9
  • 5th letter : Validation, add 1, 2 and 3 together, then modulo 16; e.g. after you add 1, 2 and 3, call this x, then : x - floor(x/16)
  • 6th letter : Validation, add 1, 2 and 3 together and divide by 16, just take the first digit of this division and add the 4th numbers. Or : (floor((1+2+3)/16))+4