home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / disks / disk453.lzh / Lemmings / UnPackDisk < prev    next >
Text File  |  1991-02-15  |  967b  |  35 lines

  1. .K ""
  2. echo "This script will unpack the Lemmings Demo disk using the"
  3. echo "lharc program and the LemmingsDemo.lzw file.  It requires"
  4. echo "a blank disk and floppy drive df1: to be free."
  5. echo ""
  6.  
  7. ask "Do you have a blank disk ready?"
  8. if not WARN
  9.     echo "Try again when you do ..."
  10.     echo "All Done.  Click close gadget to get rid of window."
  11.     endcli
  12. endif
  13.  
  14. ask "Is floppy drive df1: free?"
  15. if not WARN
  16.     echo "You will need to do the unpacking yourself."
  17.     echo "All Done.  Click close gadget to get rid of window."
  18.     endcli
  19. endif
  20.  
  21. ; Note that the drive must be named as follows (with 11 trailing blanks).
  22.  
  23. echo "Formatting disk in drive df1: ..."
  24.  
  25. sys:system/format drive df1: name "SKID ROW 1990           " noicons
  26. install drive df1:
  27.  
  28. echo "Using lharc to unpack the demo disk."
  29.  
  30. :c/lharc -x -a -m x LemmingsDemo.lzh "SKID ROW 1990           :"
  31.  
  32. echo "All Done.  Click close gadget to get rid of window."
  33. echo "Reboot with game disk to run the Lemmings demo."
  34. endcli
  35.