home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
-
- if %1a == a then goto HELP
-
- :START
- echo. Now upgrading The Apothecary to v1.6...
- echo. Moving data files to the appropriate directory...
- move %1\atime.dat atime.dat
- echo. Complete! That was easy, wasn't it?
- if %2 == Y then goto RESET
- if %2 == y then goto RESET
- goto EXIT
-
- :HELP
- echo. {---------------------------------------------------------------------}
- echo. { The Apothecary Upgrade Batch File v1.6 }
- echo. { }
- echo. { Proper usage thereof is: }
- echo. { upgrade x:\path\to\lord [Y] *MUST* be run from Apoth dir...}
- echo. { }
- echo. { Path to lord is obviously path to LORD. }
- echo. { Optional switch Y is if you want to reset The Apothecary along with }
- echo. { upgrading it. }
- echo. {---------------------------------------------------------------------}
- goto EXIT
-
- :RESET
- echo. Now resetting The Apothecary...
- apoth.exe reset
- echo. Completed. Thanks for using The Apothecary Upgrade
- goto EXIT
-
- :EXIT
-
-