home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Game Guide / AmigaGameGuide_CD.iso / Amiga / Patches / OnEscapee / Install_OnEscapee_Rtg next >
Text File  |  1977-12-31  |  3KB  |  120 lines

  1. ;---------------------------------------------------------------
  2. ; Script to install onEscapee Rtg Patch 
  3. ;
  4. ; $VER: onEscapeeRtgPatchInstall 1.0 (09.01.98)
  5. ;---------------------------------------------------------------
  6.  
  7. (set #ModeCD 0)
  8. (set #ModeHD 1)
  9.  
  10. ;---------------------------------------------------------------
  11.  
  12. (message "O N E S C A P E E   R T G\n\nThis scripth will install a gfx-card supporting patch for the game 'onEscapee'.\n This will only work with the commercial release, so don't try it with the old demo releases!\nA Spanish translation of the ReadMe file also included in this package.")
  13.  
  14.  
  15. (if
  16.     (< (getversion) (* 39 65536))
  17.     (message "You need at least KickStart 3.0 to run onEscapee!\nAnyway this patch can be installed now.")
  18. )
  19.  
  20. (if
  21.     (patmatch "68000|68010" (database "cpu"))
  22.     (message "You need at least a Motorola M68020 CPU to run onEscapee!\nMind this after installing this patch!")
  23. )
  24.  
  25. (welcome)
  26.  
  27. (set #ActiveStorage
  28.     (askchoice
  29.         (prompt "Do you have and playing onEscapee from the original CD, or have you already copied to your harddisk?")
  30.         (choices
  31.             "Playing form CD"
  32.             "Playing from HardDrive"
  33.         (help "When playing from CD, a drawer will be created that will contain the new patch files.\nIf you go for the HD option, your old files on the HD will be replaced.")
  34.         )
  35.         (default 0)
  36.     )
  37. )
  38.  
  39. (complete 20)
  40.  
  41.  
  42. (if
  43.     (= #ActiveStorage #ModeCD)
  44.     (
  45.  
  46.         (set #OEPath
  47.             (askdir
  48.                 (prompt "Choose a directory for the onEscapee starter files.\nA drawer named onEscapee will be created there.")
  49.                 (help "It should be your main game directory for example: 'Entertain:Games'.")
  50.                 (default "DH2:Games")
  51.             )
  52.         )
  53.  
  54.         (set #OEPath (tackon #OEPath "onEscapee"))
  55.  
  56.     )
  57. )
  58.  
  59. (if
  60.     (= #ActiveStorage #ModeHD)
  61.     (
  62.  
  63.         (set #OEPath
  64.             (askdir
  65.                 (prompt "Select the root directory of onEscapee on your HD.")
  66.                 (help "This must be the location where from you running onEscapee, on your HD.")
  67.                 (default "DH2:Games/onEscapee")
  68.             )
  69.         )
  70.  
  71.         (complete 50)
  72.  
  73.     )
  74. )
  75.  
  76. (askbool #spwanted
  77.     (prompt    "Do you want to copy the Spanish Doc for onEscapee?\n(Spanish version translated by Fernando Brischetto)")
  78.     (help    "You should have this file if you know or want to learn Spanish!")
  79. )
  80.  
  81. (copyfiles
  82.     (if (= #ActiveStorage #ModeHD)
  83.         (source "onEscapee/Start_HD")
  84.         (source "onEscapee/Start_CD")
  85.     )
  86.     (dest #OEPath)
  87.     (newname "Start")
  88. )
  89.  
  90. (copyfiles (source "onEscapee/Start.info") (dest #OEPath) )
  91.  
  92. (copyfiles (source "onEscapee/Game") (dest #OEPath) )
  93.  
  94. (copyfiles (source "onEscapee/EscMode") (dest #OEPath) (infos) )
  95.  
  96. (if (not #spwanted) 
  97.     (
  98.         (copyfiles 
  99.         (source "onEscapee/ReadMe") 
  100.         (dest (tackon #OEPath "ReadMe") )
  101.         (all)
  102.         )
  103.         (copyfiles (source "onEscapee/ReadMe.info") (dest #OEPath) )
  104.     )
  105.  
  106.  
  107.  
  108. (complete 90)
  109.  
  110.  
  111.  
  112. (complete 100)
  113.  
  114. (exit    (cat     "All the files have been copied to the location \""
  115.         #OEPath
  116.         "\"\n\nNow you should run the program Escmode there and select the suitable screenmodes.\nThen click on the onEscapee icon named 'Start' !"
  117.     )
  118. )
  119.