home *** CD-ROM | disk | FTP | other *** search
/ Collection Encyclopedia of Computer Games / GAME_ENCYCLOPAEDIA_VOLUME_1.iso / msp / pirates! / conv.bat < prev    next >
Encoding:
DOS Batch File  |  1993-06-13  |  920 b   |  46 lines

  1. @echo off > nul
  2. rem             If you wish to convert to 16 color without erasing all of the
  3. rem     256 color files, start conv.bat with the parameter /no as follows
  4. rem
  5. rem             conv /no
  6. rem
  7. rem             To switch to the 16 color version of the game, run chver
  8. rem     as follows:
  9. rem
  10. rem             chver 16
  11. rem
  12. rem             If you have preserved the 256 color version run
  13. rem
  14. rem             chver 256
  15. rem
  16. rem     to switch back.
  17. rem
  18.  
  19. echo ⌠                                                     ⌠
  20. echo │  ***** CONVERTING 256 COLOR ART TO 16 COLORS *****  │
  21. echo ⌡                                                     ⌡
  22.  
  23. cd spr
  24. ..\grp2spr kill
  25. cd ..
  26.  
  27. call sprs %1
  28. call pcxs %1
  29.  
  30. cd spr16
  31. ..\spr2grp kill
  32. cd ..
  33.  
  34. if "%1"=="/no" goto fix
  35. if "%1"=="/No" goto fix
  36. if "%1"=="/nO" goto fix
  37. if "%1"=="/NO" goto fix
  38. goto done
  39.  
  40. :fix
  41. cd spr
  42. ..\spr2grp kill
  43. cd ..
  44.  
  45. :done
  46.