home *** CD-ROM | disk | FTP | other *** search
/ Sunny 1,000 Collection / SUNNY1000.iso / Files / W31 / Misc / RE97.ZIP / RA_EXEC.BAT < prev    next >
Encoding:
DOS Batch File  |  1997-07-12  |  750 b   |  41 lines

  1. @echo off
  2.  rem (c) RogerSoft Ancient OS Support Functions
  3.  rem Advice & Tips Via Childs Play Software Inc
  4.  
  5. rem store app directory
  6.  
  7. if "%1" == "?" goto help
  8. if "%1" == "" goto help
  9.  %1
  10.  cd %1\%2
  11. rem change to drive\directory
  12.  
  13.  
  14. if not exist %1\%2\nul goto error
  15.  rem if drive\directory not exist major boob
  16.  rem else
  17.  cls
  18.  echo Loading Red Alert....
  19.  echo:
  20.  call ra.exe
  21. goto end
  22.  
  23. :error
  24.  echo Does Not Exists Development Error FindRa#1
  25.  echo No Valid Red Alert directory on %1 called %2
  26.  echo:
  27.  echo Press Any Key To Return To RedEdit 97
  28.  pause >nul
  29. goto end
  30.  
  31. :help
  32.  echo Incorrect, I Need A Valid Parameter, Incorrect Useage,
  33.  echo You Are Obviously NOT RedEdit 97!!!!
  34.  echo:
  35.  pause >nul
  36. goto end
  37.  
  38. :end
  39.  exit
  40.  
  41.