home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / dirs / mechfight_410.lzh / MechFight / UnPackGame < prev    next >
Text File  |  1990-11-24  |  2KB  |  61 lines

  1. .K ""
  2. echo "This script will create a new, bootable, MechFight game disk."
  3. echo "You will need the following:"
  4. echo ""
  5. echo "    (1)    A blank disk."
  6. echo "    (2)    Drive df1: free."
  7. echo "    (3)    A standard WorkBench 1.3.2 disk."
  8. echo ""
  9.  
  10. ask "Do you have all three of the above ready?"
  11. if not WARN
  12.     echo "Try again when you do ..."
  13.     echo "All Done.  Click close gadget to get rid of window."
  14.     endcli
  15. endif
  16.  
  17. echo "Formatting MechFight disk in df1:"
  18. sys:system/format drive df1: name MechFight noicons
  19.  
  20. echo "Making MechFight disk bootable."
  21. c:install drive df1:
  22.  
  23. echo "Unpacking MechFight distribution files."
  24. :c/lharc -n -x -a -m x MechFight.lzh MechFight:
  25.  
  26. echo "Retrieving required WorkBench files to ram:"
  27. makedir ram:MechFight
  28. makedir ram:MechFight/c
  29. makedir ram:MechFight/l
  30. makedir ram:MechFight/devs
  31. makedir ram:MechFight/libs
  32. makedir ram:MechFight/GAME
  33. copy WorkBench1.3:c/Run ram:MechFight/c/Run quiet
  34. copy WorkBench1.3:c/delete ram:MechFight/c/delete quiet
  35. copy WorkBench1.3:c/endcli ram:MechFight/c/endcli quiet
  36. copy WorkBench1.3:c/NewCLI ram:MechFight/c/NewCLI quiet
  37. copy WorkBench1.3:c/echo ram:MechFight/c/echo quiet
  38. copy WorkBench1.3:c/execute ram:MechFight/c/execute quiet
  39. copy WorkBench1.3:c/copy ram:MechFight/c/copy quiet
  40. copy WorkBench1.3:c/cd ram:MechFight/c/cd quiet
  41. copy WorkBench1.3:c/IconX ram:MechFight/GAME/IconX quiet
  42. copy WorkBench1.3:c/LoadWB ram:MechFight/c/LoadWB quiet
  43. copy WorkBench1.3:c/Wait ram:MechFight/c/Wait quiet
  44. copy WorkBench1.3:l/Disk-Validator ram:MechFight/l/Disk-Validator quiet
  45. copy WorkBench1.3:l/NewCon-Handler ram:MechFight/l/NewCon-Handler quiet
  46. copy WorkBench1.3:l/Ram-Handler ram:MechFight/l/Ram-Handler quiet
  47. copy WorkBench1.3:devs/ramdrive.device ram:MechFight/devs/ramdrive.device quiet
  48. copy WorkBench1.3:libs/icon.library ram:MechFight/libs/icon.library quiet
  49. copy WorkBench1.3:libs/info.library ram:MechFight/libs/info.library quiet
  50. copy WorkBench1.3:libs/diskfont.library ram:MechFight/libs/diskfont.library quiet
  51.  
  52. echo "Installing selected WorkBench files on MechFight disk."
  53. copy ram:MechFight MechFight: all quiet
  54. delete ram:MechFight all quiet
  55.  
  56. echo ""
  57. echo "All done.  Reboot with MechFight disk to play."
  58. echo "Click close gadget to get rid of window."
  59. endcli
  60.  
  61.