home *** CD-ROM | disk | FTP | other *** search
/ Fanclub Das Freakmagazin 1 / FANCLUB1.ISO / cheats / lemm2.txt < prev    next >
Text File  |  1996-05-13  |  1KB  |  55 lines

  1. ~Lemmings 2
  2.  
  3. Edit Cheats Contributed By J.Robertson
  4.  
  5.  
  6. If you can't get the cheat mode to work then try the following....
  7.  
  8. Save the game in position 1 and the exit back to DOS.Edit the file 
  9. SAVE.DAT and change the following offsets:
  10.  
  11. To mark a level as complete enter the following byte sequence: 
  12.   
  13.   3C 00 03 00
  14.  
  15. The various levels/tribes are stored in the locations below:
  16.  
  17. $C8     = Classic Tribe         Level 1
  18. $C8 + 4 = Classic Tribe         Level 2
  19. $C8 + 8 = Classic Tribe         Level 3
  20. etc.
  21. etc.
  22.  
  23. $F0     = Beach
  24. $118    = Cavelems
  25. $140    = Circus
  26. $168    = Egyptian
  27. $190    = Highland
  28. $1B8    = Medieval
  29. $1E0    = Outdoor
  30. $208    = Polar
  31. $230    = Shadow
  32. $258    = Space
  33. $280    = Sports
  34.  
  35. So level 3 for Highland tribe is $190 + 8 where you enter the 
  36. byte sequence 3C 00 03 00 to flag the level as completed.
  37.  
  38. If you want to mark all the levels as completed then go to your 
  39. Lemmings directory,type Qbasic to start Dos basic and type in the 
  40. following little program.
  41.  
  42. OPEN "save.dat" FOR BINARY AS #1
  43. a% = &H3C
  44. b% = &H3
  45. FOR f = &HC8 TO &H3A8 STEP 4
  46. PUT #1, f + 1, a%
  47. PUT #1, f + 3, b%
  48. NEXT f
  49. CLOSE #1
  50.  
  51. If you run this program it will flag all the levels as completed.
  52. You can now play any level of your choice and if you click on the 
  53. Ark in the centre of the map screen you can see the final sequence 
  54. and credits.
  55.