home *** CD-ROM | disk | FTP | other *** search
/ Merciful 3 / Merciful_Release_3.bin / software / h / humans_iii / humansiiihdinstaller.lha / Humans3 / Humans3_Installer next >
Text File  |  1996-04-18  |  2KB  |  95 lines

  1. ; Humans III Hard Disk Install script
  2. ; by Woober/Cannabis
  3.  
  4. (complete 0)
  5.  
  6. (set name
  7.   (askdir
  8.     (prompt "Please select the directory where you\n"
  9.             "would like to install Humans III"
  10.             "NOTE: Make the directory before installing!"
  11.             "Ex. Makedir Work:Games/Humans3")
  12.     (help @askdir-help)
  13.     (default "Work:Games/")
  14.   )
  15. )
  16.  
  17. (set fullname (cat name "Humans3"))
  18.  
  19. (makedir fullname)
  20.  
  21. (set fullname (cat fullname "/"))
  22.  
  23.  
  24. (textfile
  25.    (prompt "Creating executable script")
  26.    (help "This script file must be executed either from CLI or WorkBench to run the game.")
  27.    (dest (cat fullname "Humans3HD"))
  28.    (append (cat "Assign Evo1: " fullname))
  29.    (append "\n")
  30.    (append (cat "Assign Evo2: " fullname))
  31.    (append "\n")
  32.    (append (cat "Assign Evo3: " fullname))
  33.    (append "\n")
  34.    (append (cat "Assign Evo4: " fullname))
  35.    (append "\n")
  36. )
  37.  
  38. (copyfiles
  39.    (prompt "Copying Disk 1 files to %s" fullname)
  40.    (help "The installer is currently copying the files from Disk 2 to %s. There is nothing to fear." name)
  41.    (source "Evo1:")
  42.    (dest fullname)
  43.    (all)
  44. )
  45.  
  46. (complete 20)
  47.  
  48. (askdisk
  49.    (prompt "Please insert Disk 2")
  50.    (help "The installer now needs Disk Two to complete the installation.")
  51.    (dest "Evo2")
  52. )
  53.  
  54. (copyfiles
  55.    (prompt "Copying Disk 2 files to %s" fullname)
  56.    (help "The installer is currently copying the files from Disk 2 to %s. There is nothing to fear." name)
  57.    (source "Evo2:")
  58.    (dest fullname)
  59.    (all)
  60. )
  61.  
  62. (complete 40)
  63.  
  64. (askdisk
  65.    (prompt "Please insert Disk 3")
  66.    (help "The installer now needs Disk Two to complete the installation.")
  67.    (dest "Evo3")
  68. )
  69.  
  70. (copyfiles
  71.    (prompt "Copying Disk 3 files to %s" fullname)
  72.    (help "The installer is currently copying the files from Disk 3 to %s. There is nothing to fear." name)
  73.    (source "Evo3:")
  74.    (dest fullname)
  75.    (all)
  76. )
  77.  
  78. (complete 60)
  79.  
  80. (askdisk
  81.    (prompt "Please insert Disk 4")
  82.    (help "The installer now needs Disk Two to complete the installation.")
  83.    (dest "Evo4")
  84. )
  85.  
  86. (copyfiles
  87.    (prompt "Copying Disk 4 files to %s" fullname)
  88.    (help "The installer is currently copying the files from Disk 4 to %s. There is nothing to fear." name)
  89.    (source "Evo4:")
  90.    (dest fullname)
  91.    (all)
  92. )
  93.  
  94. (complete 100)
  95.