home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / TELIX.ZIP / TLX322FX.BAT < prev    next >
DOS Batch File  |  1994-03-10  |  1KB  |  52 lines

  1. @echo off
  2.  
  3. @echo:
  4. @echo Telix 3.22 Fix - Removes shareware intro and ending screens
  5. @echo:
  6. @echo Patching file: TELIX.EXE (version 3.22 only!)
  7. @echo:
  8. @echo     File info: 275024   31-01-94   3:22a
  9. @echo:
  10. @echo ┌──────────────┬────────────┬────────────┬──────────────────────────────┐
  11. @echo │  Hex offset  │  Original  │  Replace   │  Info                        │
  12. @echo ├──────────────┼────────────┼────────────┼──────────────────────────────┤
  13. @echo │     038C4    │  9A 8F 09  │  E9 07 02  │  Exit screen and 15 sec wait │
  14. @echo │     2B26C    │  7D        │  EB        │  Intro screen and wait       │
  15. @echo └──────────────┴────────────┴────────────┴──────────────────────────────┘
  16.  
  17. @goto PATCH
  18.  
  19. N TELIX.###
  20. L 5000:0
  21. E 5000:38C4 E9 07 02
  22. E 7000:B26C EB
  23. W 5000:0
  24. Q
  25.  
  26. :PATCH
  27.  
  28. echo:
  29. echo Press Ctrl-C now to abort patch or
  30. pause
  31. if not exist TLX322FX.BAT goto ERROR1
  32. if not exist TELIX.EXE goto ERROR2
  33. ren TELIX.EXE TELIX.### > NUL
  34. debug < TLX322FX.BAT > NUL
  35. ren TELIX.### TELIX.EXE > NUL
  36. echo:
  37. echo Patch successful!
  38. goto END
  39.  
  40. :ERROR1
  41.  
  42. echo:
  43. echo File not found. Patch aborted.
  44. goto END
  45.         
  46. :ERROR2
  47.  
  48. echo:
  49. echo TELIX.EXE not in current directory. Patch aborted.
  50.  
  51. :END
  52.