home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / pocketbk / games / blitz / BLZRCOM.BAT < prev    next >
DOS Batch File  |  1994-09-19  |  950b  |  37 lines

  1. @ECHO OFF
  2. IF "%1"=="" GOTO HELP
  3. IF "%1"=="?" GOTO HELP
  4.  
  5. MD %1\APP
  6. MD %1\APP\BLITZ
  7. COPY BLITZ.OPA %1\APP
  8. COPY BLITZ\TITLE.PIC %1\APP\BLITZ
  9. COPY BLITZ\BUILDING.PIC %1\APP\BLITZ
  10. COPY TITLE.PIC %1\APP\BLITZ
  11. COPY BUILDING.PIC %1\APP\BLITZ
  12.  
  13. IF "%2"=="" GOTO NORMAL
  14.  
  15. COPY BLITZ\ANDBCKD*.PIC %1\APP\BLITZ\BACKGND*.PIC
  16. COPY ANDBCKD*.PIC %1\APP\BLITZ\BACKGND*.PIC
  17. GOTO THEEND
  18.  
  19. :NORMAL
  20. COPY BLITZ\BACKGND*.PIC %1\APP\BLITZ
  21. COPY BACKGND*.PIC %1\APP\BLITZ
  22. GOTO THEEND
  23.  
  24. :HELP
  25. ECHO ------------------------------------------------
  26. ECHO Blitz copy utility
  27. ECHO Must be run under RCom
  28. ECHO Use blzrcom remoteDrive: [X]
  29. ECHO Example blzrcom l:
  30. ECHO Or blzrcom l: X to use alternative backgrounds
  31. ECHO Dont worry too much if you see a lot of file not found messages -
  32. ECHO depending on how you have unzipped blitz, the files could be in
  33. ECHO different places.
  34. ECHO -------------------------------------------------
  35. :THEEND
  36. @ECHO ON
  37.