home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 26 / amigaformatcd26.iso / -screenplay- / hd_installers / hillsea2hd / installhd < prev    next >
Text File  |  1998-03-09  |  1KB  |  61 lines

  1. ; Hillsea Lido Hard Disk Install script
  2.  
  3.  
  4. (complete 0)
  5.  
  6. (set name
  7.   (askdir
  8.     (prompt "Please select the directory where you\n"
  9.             "would like to install Hillsea Lido"
  10.             "NOTE: Make the directory before installing!"
  11.             "Ex. Makedir Work:Games/HillseaLido")
  12.     (help @askdir-help)
  13.     (default "Work:Games/")
  14.   )
  15. )
  16.  
  17. (set fullname (cat name "HillseaLido"))
  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 "HillseaLidoHD"))
  28.    (append (cat "Assign DISK1: " fullname))
  29.    (append "\n")
  30.    (append (cat "Assign DISK2: " fullname))
  31.    (append "\n")
  32.    (append (cat "cd " fullname))
  33.    (append "\n")
  34. )
  35.  
  36. (copyfiles
  37.    (prompt "Copying Disk 1 files to %s" fullname)
  38.    (help "The installer is currently copying the files from Disk 2 to %s. There is nothing to fear." name)
  39.    (source "DISK1:")
  40.    (dest fullname)
  41.    (all)
  42. )
  43.  
  44. (complete 50)
  45.  
  46. (askdisk
  47.    (prompt "Please insert Disk 2")
  48.    (help "The installer now needs Disk Two to complete the installation.")
  49.    (dest "DISK2")
  50. )
  51.  
  52. (copyfiles
  53.    (prompt "Copying Disk 2 files to %s" fullname)
  54.    (help "The installer is currently copying the files from Disk 1 to %s. There is nothing to fear." name)
  55.    (source "DISK2:")
  56.    (dest fullname)
  57.    (all)
  58. )
  59.  
  60. (complete 100)
  61.