home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / CTIMEUNP / CTIME.UNP next >
Text File  |  1989-11-26  |  1KB  |  44 lines

  1. Unprotect for Where in Time is Carmen Sandiego.
  2.  
  3. This program checks for the original key disk each time you are
  4. promoted in the game.
  5.  
  6. I found another unprotect on this BBS (CARMNTME.ZIP) which did
  7. not work at all. If fact, it made it so you can not even get into
  8. the program!
  9.  
  10. Here's mine. You can patch the file either with a hex editor, or
  11. with debug.
  12.  
  13.  
  14. Using a hex editor, such as those in PC-Tools or Norton's Utilities:
  15.  
  16. Search for the hex byte string:   02 E1 07 C3 FA 55
  17.  
  18. Change the first byte only:       12
  19.  
  20. ------------
  21.  
  22. Using debug
  23.  
  24. >ren carmen.exe car
  25. >debug car
  26.  
  27. -S0000 FFFF 02 E1 07 C3 FA 55    <cr>
  28. xxxx:yyyy                        (note value of yyyy)
  29. -e yyyy                          (type e, then value of yyyy above)
  30. xxxx:yyyy 02.12                  <cr>
  31. -w                               <cr>
  32. -q                               <cr>
  33.  
  34.  
  35. >ren car carmen.exe
  36.  
  37. -------------
  38.  
  39. That's it. And a lot easier then the other patch that didn't work!
  40. Although this patch only changes one byte, it was difficult to
  41. come up with. They used a far call which was hard to follow, and
  42. could not be nop'ed out. Good Luck.
  43.  
  44.