home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem (c) RogerSoft Ancient OS Support Functions
- rem Advice & Tips Via Childs Play Software Inc
-
- rem store app directory
-
- if "%1" == "?" goto help
- if "%1" == "" goto help
- %1
- cd %1\%2
- rem change to drive\directory
-
-
- if not exist %1\%2\nul goto error
- rem if drive\directory not exist major boob
- rem else
- cls
- echo Loading Red Alert....
- echo:
- call ra.exe
- goto end
-
- :error
- echo Does Not Exists Development Error FindRa#1
- echo No Valid Red Alert directory on %1 called %2
- echo:
- echo Press Any Key To Return To RedEdit 97
- pause >nul
- goto end
-
- :help
- echo Incorrect, I Need A Valid Parameter, Incorrect Useage,
- echo You Are Obviously NOT RedEdit 97!!!!
- echo:
- pause >nul
- goto end
-
- :end
- exit
-
-