home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / LSL2 / LSL2.UNP < prev   
Text File  |  1988-12-10  |  2KB  |  47 lines

  1.  
  2. ***************************************************************************
  3.                Almost Unprotecting Leisure Suit Larry II 
  4. ***************************************************************************
  5.  
  6. Leisure Suit Larry II is arguably Sierra Online's best interactive graphic
  7. adventure game. It is protected by the singularly obnoxious "answer a ques-
  8. tion from the manual" trick. When you start the game, you must fill in the
  9. last four digits of a girl's telephone number. The pictures of these girls
  10. appear throughout the manual. 
  11.  
  12. This unprotect requires changing four bytes in the file SIERRA.EXE, found
  13. on diskette #1. However, this unprotect is not as perfect as I'd like it to
  14. be. I set out to make the unprotect completely bypass the "Type in Phone
  15. Number" screen. Well, as I traced the code I found that to do so would
  16. be considerably difficult and would require the modification of extensive
  17. amounts of code.
  18.  
  19. Instead, the modification we will make will cause the same girl's picture
  20. to appear every time you start the program. This means that you will be
  21. able to enter the same phone number every time you start the program. The
  22. phone number will be 7448.
  23.  
  24. Nothing herein is to be construed as subversion of or violation of the rights 
  25. of the authors of these "copy protected" games and other items. These authors 
  26. certainly maintain the right to protect their works in any manner which they 
  27. deem fit. However, their decision to inflict difficulties in the operation of 
  28. their products by legitimate users should be protested vigorously.  This docu-
  29. ment is a living example of my heartfelt belief in this matter.
  30.  
  31. This unprotect requires a file utility such as PC-TOOLS DELUXE or NORTON's.
  32.  
  33. Search for the following four-byte hex string:
  34.  
  35.                         8B C2 EB F4
  36.  
  37. And replace it with this four-byte hex string:
  38.  
  39.                         B8 02 00 90
  40.  
  41. Write the changes and your done. The phone number will always be 7448!
  42.  
  43. For people familiar with debug, the location of these bytes is 8BBD through
  44. 8BC0.
  45.  
  46.  
  47.