home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if "%1"=="" goto Erreur
-
- @cd %1\
-
- :deb
- Cls
- echo
- echo ╔══════════════════════╗
- echo ║ TIME WARRIORS DEMO ║
- echo ╚══════════════════════╝
- echo
- echo (C) Copyright Silmarils 1997
- echo
- if exist %1\TIMEDEMO\start.exe goto dinst0
- md %1\TIMEDEMO >nul
- goto iok0
-
- :dinst0
- echo
- echo Time Warriors already installed,
- choice /CYN /N "continue installation (Y/N) : "
-
- IF ERRORLEVEL 2 GOTO fin
- :iok0
-
- echo
- echo please wait, installation in progress...
-
- copy start.exe %1\timedemo >nul
- copy *.io %1\timedemo >nul
- copy *.to %1\timedemo >nul
- copy *.pcx %1\timedemo >nul
- copy *.flc %1\timedemo >nul
-
- @%1
- @cd %1\timedemo
- goto ok
-
- :Erreur
- echo
- echo *** Procedure Interrupted - Installation Failed ***
- echo Install Destination_Drive
- echo ex: INSTALL C:
- goto fin
-
- :ok
- echo
- echo *** Installation finished ***
- echo To play, type START from your Hard drive
-
- :fin
- echo
-