Jump to navigation
Jump to search
Level skip[edit | edit source]
Start the game, go into the Options menu and hold . If
it works, the clouds in the background will move faster. After you have started a
new game, push
to skip the current stage.
Passwords[edit | edit source]
These passwords give you maximum life and time:
- Level 1 : BKBMKM
- Level 2 : CKBMLM
- Level 3 : DKBMMM
- Level 4 : FKBMNM
- Level 5 : GKBMPM
- Level 6 : HKBMRM
- Level 7 : JKBMTM
- Level 8 : KKBMVM
- Level 9 : LKBMWM
- Level 10 : MKBMBN
- Level 11 : NKBMCN
- Level 12 : PKBMDN
- Level 13 : RKBMFN
Password creation[edit | edit source]
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