home *** CD-ROM | disk | FTP | other *** search
/ Gambler 34 A / GAMBLERCD34A.BIN / Utils / GP / Progs / MRipper / UTILS / XORFILE.ZIP / BUG.BTM < prev    next >
Text File  |  1996-03-15  |  1KB  |  41 lines

  1. :: Automatic Procedure to rip acme-bug.exe (BUG-FIXED by ACME)
  2. :: 4DOS required... if you still not own 4DOS download it now!
  3. @echo off
  4. setlocal
  5. iff exist acme-bug.exe then
  6.     mrip acme-bug.exe
  7.     iff exist demobase.exe then
  8.         set name=demobase.exe^gosub doit
  9.         set name=floor.exe   ^gosub doit
  10.         set name=fractal.exe ^gosub doit
  11.         set name=golf.exe    ^gosub doit
  12.         set name=part1.exe   ^gosub doit
  13.         set name=psycho.exe  ^gosub doit
  14.         set name=world.exe   ^gosub doit
  15.         set name=pdemo.smp   ^gosub doit
  16.         echo.
  17.         echo ----------------------------------------------------
  18.         echo ...now extract the PTMF header from DEMOBASE.EXE...
  19.         echo ----------------------------------------------------
  20.         echo.
  21.         pause
  22.         if exist rip0000.ptm del /q rip0000.ptm
  23.         mrip demobase.exe
  24.         if exist rip0000.ptm copy /b rip0000.ptm+pdemo.smp Bugfixed.ptm
  25.         if exist rip0000.ptm del /q rip0000.ptm
  26.     endiff
  27. else
  28.     echo ACME-BUG.EXE not found!
  29. endiff
  30. endlocal
  31. quit
  32.  
  33. :doit
  34. bugdec %name%
  35. ren %name% *.old
  36. ren decrypt.000 %name%
  37. iff %@upper[%@ext[%name]] == EXE  then
  38.     unp %name%
  39. endiff
  40. return
  41.