home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1997 #6 / amigaacscoverdisc1997-061997.iso / games / commercialdemos / sword_demo / sword.dms / sword.adf / InstallHD < prev    next >
Text File  |  1997-06-19  |  2KB  |  100 lines

  1. ;                                                                    Sword
  2. ;                                                        Installation script
  3. ;                                            Author: Krzysztof Dura / Serio-Comic.
  4.  
  5.  
  6. (complete 0)
  7.  
  8. (message "\n\n\n\n\n\n\"Sword Preview\"\n\n"
  9.      "Installation requires about 1 MB of free disk space.")
  10.  
  11. (set destdir
  12.   (askdir
  13.     (prompt "Choose a place for installing \"Sword Preview\".\n"
  14.                         "Directory \"Sword\" will be created for you.")
  15.     (help @askdir-help)
  16.     (default @default-dest)
  17.   )
  18. )
  19.  
  20. (set @default-dest destdir)
  21.  
  22. (makedir (tackon destdir "Sword"))
  23.  
  24. (complete 10)
  25.  
  26. (working "Installing \"Sword Preview\"...")
  27.  
  28. (askdisk
  29.   (prompt "\n\n\n\n\n\nInsert disk \"SwordDisk1:\".")
  30.   (help @askdisk-help)
  31.   (dest "SwordDisk1")
  32. )
  33.  
  34. (copyfiles
  35.   (source "SwordDisk1:")
  36.   (dest (tackon destdir "Sword"))
  37.   (help @copyfiles-help)
  38.   (choices
  39.         "Sword.exe"
  40.         "SCtitle.cod"
  41.         "PrevInfo.cod"
  42.         "TitanLogo.cod"
  43.     "Menu.cod" "Menu.gfx" "Menu.mus1MB"
  44.     "Hero.img"
  45.     "Level2.img" "Level2.map" "Level2.smp" "Level2.cod" "Level2.mus" "Level2.bri"
  46.     "Sword.info"
  47.   )
  48. )
  49.  
  50. (copyfiles
  51.   (source (tackon "SwordDisk1:" "ICONS"))
  52.   (dest destdir)
  53.   (help @copyfiles-help)
  54.   (choices
  55.     "Sword.info"
  56.   )
  57. )
  58.  
  59.  
  60.  
  61. (complete 80)
  62.  
  63. (set libsdir
  64.   (askdir
  65.     (prompt "Where should I copy \n\"serio-comic.library\" ?")
  66.     (help @askdir-help)
  67.     (default "LIBS:")
  68.   )
  69. )
  70.  
  71. (complete 85)
  72.  
  73. (copylib
  74.   (source "SwordDisk1:libs/serio-comic.library")
  75.   (dest libsdir)
  76.   (help @copylib-help)
  77. )
  78.  
  79. (complete 95)
  80.  
  81. (textfile
  82.   (dest
  83.     (tackon destdir "Sword/Sword")
  84.   )
  85.   (prompt "Creating script for IconX...")
  86.   (append "assign SwordDisk1: \"" (tackon destdir "sword") "\"\n"
  87.                   "SwordDisk1:Sword.exe\n")
  88. )
  89.  
  90. (complete 100)
  91.  
  92. (message "\n\n\n\n\n\"Sword Preview\" has been installed.\n"
  93.      "Have a good time.\n\n"
  94.      "Serio-Comic. (1997)\n\n\n"
  95.      "PS. Do not forget to remove the disk from your floppy drive."
  96. )
  97.  
  98. (exit)
  99.  
  100.