home *** CD-ROM | disk | FTP | other *** search
/ 500 Game Surplus / XSurplus.iso / 43 / DIRFIX.BAT < prev    next >
DOS Batch File  |  1997-02-14  |  2KB  |  63 lines

  1. @echo off
  2.  
  3. cls
  4.  
  5. if "%1"=="GO" goto yes
  6. if "%1"=="go" goto yes
  7. if "%1"=="Go" goto yes
  8.  
  9. echo DIRFIX.BAT for Get Piste! by Tim Furnish
  10. echo"
  11. echo A helpful batch file to put all the files needed for Get Piste! into the right
  12. echo directories... just in case you didn't unzip the compressed file with the -d
  13. echo flag (and let's face it, you probably didn't know that you should have done).
  14. echo"
  15. echo In case you have no idea what I'm going on about, that's fine... but put it
  16. echo this way. If the program told you to run DIRFIX then you're doing the right
  17. echo thing. If the program found all its files and came up with some other error,
  18. echo then running this won't help at all. And if the program works fine then again,
  19. echo I have no idea why you're here.
  20. echo"
  21. echo If you haven't tried the main Get Piste! program yet, then go and do so. It's
  22. echo very good.
  23. echo"
  24. echo To run the DIRFIX batch file, type DIRFIX GO and prepare to be not dazzled at
  25. echo all.
  26.  
  27. goto done
  28.  
  29. :yes
  30.  
  31. echo Here we go... attempting to sort your life out, please wait.
  32. echo"
  33.  
  34. echo 1)  Creating GP-GFX directory...
  35. md GP-GFX
  36. echo"
  37.  
  38. echo 2)  Moving graphics files...
  39. move *.320 GP-GFX
  40. move *.SHD GP-GFX
  41. move *.LTS GP-GFX
  42. move *.WOT GP-GFX
  43. echo"
  44.  
  45. echo 3)  Creating GP-SOUND directory...
  46. md GP-SOUND
  47. echo"
  48.  
  49. echo 4)  Moving sound files...
  50. move *.NEW GP-SOUND
  51. move *.RAW GP-SOUND
  52. move *.INS GP-SOUND
  53. echo"
  54.  
  55. echo And there we have it. Type SETUP to change your soundcard settings, or PISTE
  56. echo to run the game. For further information take a look at the README.TXT file.
  57.  
  58. :done
  59.  
  60. echo"
  61. echo - Tim Furnish, 1997
  62. echo"
  63.