home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fanclub Das Freakmagazin 1
/
FANCLUB1.ISO
/
cheats
/
lemm2.txt
< prev
next >
Wrap
Text File
|
1996-05-13
|
1KB
|
55 lines
~Lemmings 2
Edit Cheats Contributed By J.Robertson
If you can't get the cheat mode to work then try the following....
Save the game in position 1 and the exit back to DOS.Edit the file
SAVE.DAT and change the following offsets:
To mark a level as complete enter the following byte sequence:
3C 00 03 00
The various levels/tribes are stored in the locations below:
$C8 = Classic Tribe Level 1
$C8 + 4 = Classic Tribe Level 2
$C8 + 8 = Classic Tribe Level 3
etc.
etc.
$F0 = Beach
$118 = Cavelems
$140 = Circus
$168 = Egyptian
$190 = Highland
$1B8 = Medieval
$1E0 = Outdoor
$208 = Polar
$230 = Shadow
$258 = Space
$280 = Sports
So level 3 for Highland tribe is $190 + 8 where you enter the
byte sequence 3C 00 03 00 to flag the level as completed.
If you want to mark all the levels as completed then go to your
Lemmings directory,type Qbasic to start Dos basic and type in the
following little program.
OPEN "save.dat" FOR BINARY AS #1
a% = &H3C
b% = &H3
FOR f = &HC8 TO &H3A8 STEP 4
PUT #1, f + 1, a%
PUT #1, f + 3, b%
NEXT f
CLOSE #1
If you run this program it will flag all the levels as completed.
You can now play any level of your choice and if you click on the
Ark in the centre of the map screen you can see the final sequence
and credits.