home *** CD-ROM | disk | FTP | other *** search
- @echo off
- echo ***********************************************
- echo * Ultima VII - The Black Gate update program *
- echo * Ver 1.1 (C) 1992 Origin Inc. *
- echo * Problem: Once in a great while, items or *
- echo * terrain disappear or are altered. Keys are *
- echo * removed from party inventory while sleeping.*
- echo ***********************************************
-
- if not exist U7.KZ goto :explain1
- if not exist UPDATEU7.BAT goto :explain1
- if not exist KZ.EXE goto :explain1
- if not exist %1\U7.EXE goto :explain
-
- echo Patching...
- echo Y|KZ u7.kz %1\u7.exe
- if not errorlevel==0 goto :oops
-
- xxx %1 -s
-
- echo ***********************************************
- echo * Patch completed. *
- echo * Problem will no longer occur. *
- echo ***********************************************
- goto :end
-
- :oops
- echo ***********************************************
- echo * Sorry, an error occured during the update *
- echo * process! *
- goto :explain1
-
- :explain1
- echo ***********************************************
- echo * You must run this program from the drive *
- echo * containing the update program. For example,*
- echo * if the update program is on a disk in drive *
- echo * A: you would type *
- echo * A: [ENTER] *
- goto :explain2
-
- :explain
- echo ***********************************************
- :explain2
- echo * Specify your full Ultima VII path. *
- echo * For example, you would type *
- echo * UPDATEU7 C:\ULTIMA7 [ENTER] *
- echo * if Ultima VII was installed on your C drive *
- echo * in a subdirectory called ULTIMA7. *
- echo ***********************************************
- goto :end
-
- :end