home *** CD-ROM | disk | FTP | other *** search
/ Various Unprotection Examples / unprotect.zip / unprotect / FIX-123 / FIX-123.DOC < prev    next >
Text File  |  1989-10-07  |  5KB  |  106 lines

  1.                       The Dirty Birdy Presents:
  2.  
  3.                             His Very Own
  4.  
  5.                          Lotus 123 Release 2.2
  6.                Registration Name And Serial Number Remover
  7.  
  8. Howdy folks! The Dirty Birdy here to tell you all how to remove those unwanted
  9. and unsightly names and serial numbers from your copy of Lotus 123 Release 2.2!
  10. You can also set them to anything you want, and it couldn't be easier!
  11.  
  12. Required files (these should be in this .ZIP):
  13. FIX-123.DOC    -    This documentation file.
  14. FIX-123.BAT    -    Batch file to make the changes.
  15. FIXNAME.SCR    -    Debug script file to change name and serial number.
  16. NOINTRO.SCR    -    Debug script file to remove intro screen when loading 123.
  17. INTRO.SCR      -    Debug script file to allow intro screen when loading 123.
  18.  
  19. First off, no, you don't have to do any assembly programming, you just have to
  20. be able to use an ASCII text editor and read a character translation table.
  21. To fix 123 run FIX-123.BAT, it tells you what options you have, which I will
  22. repeat here:
  23.  
  24. Type FIX-123 FIXNAME to change Name, Company and Serial Number.
  25. Type FIX-123 NOINTRO to remove the intro screen during program loading.
  26. Type FIX-123 INTRO to put intro screen back in during program loading.
  27.  
  28. Using FIX-123 NOINTRO will remove the intro screen while loading 123 and has
  29. the advantage of speeding up program loading.  If you want to see your name
  30. appear on screen in the intro screen after running FIX-123 FIXNAME, then run
  31. FIX-123 INTRO if you had already removed the intro screen.
  32.  
  33. Now comes the complicated part.  You must modify the file FIXNAME.SCR in order
  34. to put your own name on the screen.  A copy of the file appears below.
  35.  
  36.  
  37. E 0B98 AC 98 9B E0 BC 97 8E 8C 87 E0 BE 97 8E 9C 87
  38. E 0BA7 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0 E0
  39. E 0BB6 BC 97 8E 8C 87 E0 BE 97 8E 9C 87 E0 BB 92 8C
  40. E 0BC5 9B 8E 90 8E 97 8D 9B 8D E0 E0 E0 E0 E0 E0 E0
  41. E 0BD4 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0
  42. E 0BE3 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0 D0
  43. E 1345 EB 13
  44. W
  45. Q
  46.  
  47. The first two lines correspond to the Name field on the intro screen.
  48. The second two lines correspond to the Company Name field on the intro screen.
  49. The third two lines correspond to two copies of the serial number, and must
  50. be identical for the program to load properly.
  51. The seventh line fixes a jump in the program to bypass the results of a
  52. checksum done on the name, company name, and serial number bytes.  Do not
  53. change this line, or your copy of 123 will not work!
  54.  
  55. NOTE: When changing the FIXNAME.SCR file, DO NOT CHANGE the FIRST SEVEN
  56.       CHARACTERS IN EACH LINE, these are important for making changes in
  57.       the proper program locations.
  58.  
  59. To change your name simply change the bytes in the first two lines using the
  60. translation table given at the end of this document.  The name can be no more
  61. than 30 characters in length (30 bytes).  The same thing goes for the second
  62. two lines for the company name.  The fifth and sixth lines are the serial
  63. number, 15 characters in length and currently set to 000000000000000.  Both of
  64. these lines MUST have the same byte pattern (serial number) in order for the
  65. program to load.
  66.  
  67. EXAMPLE:
  68. FIXNAME.SCR is currently set up for the following:
  69.  
  70.                  Name: The Dirty Birdy
  71.          Company Name: Dirty Birdy Enterprises
  72.         Serial Number: 000000000000000
  73.  
  74. The first line of FIXNAME.SCR is translated as follows:
  75.  
  76. E 0B98 AC 98 9B E0 BC 97 8E 8C 87 E0 BE 97 8E 9C 87
  77.        T  h  e     D  i  r  t  y     B  i  r  d  y
  78.  
  79. Notice that the E0 byte gets translated as a SPACE.
  80.  
  81.  
  82. Character Translation Table:
  83. Format: First line is the character wanted,
  84.         Second line is the byte value for FIXNAME.SCR.
  85.  
  86.  A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z
  87.  BF BE BD BC BB BA B9 B8 B7 B6 B5 B4 B3 B2 B1 B0 AF AE AD AC AB AA A9 A8 A7 A6
  88.  
  89.  a  b  c  d  e  f  g  h  i  j  k  l  m  n  o  p  q  r  s  t  u  v  w  x  y  z
  90.  9F 9E 9D 9C 9B 9A 99 98 97 96 95 94 93 92 91 90 8F 8E 8D 8C 8B 8A 89 88 87 86
  91.  
  92.  0  1  2  3  4  5  6  7  8  9  space  period
  93.  D0 CF CE CD CC CB CA C9 C8 C7  E0      D2
  94.  
  95. I haven't included all the ASCII characters but the pattern is obvious.
  96. To those assembly programmers out there, here's how the bytes are translated.
  97.  
  98.           MOV AL,byte  ;where byte is the value to be translated
  99.           NEG AL       ;takes negative of byte, AL now has the proper
  100.                        ;character value to be put on the screen.
  101.  
  102. Well, that's all for now.  I hope you all like this little public service,
  103. supplied by The Dirty Birdy.  Comments and suggestions are graciously accepted,
  104. if you can only find me...
  105.  
  106.