home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 35 / hot35.iso / ficheros / VDUKE / UCHAOS.ZIP / UCHAOSM.BAT < prev    next >
DOS Batch File  |  1997-08-29  |  1KB  |  48 lines

  1. echo off
  2. cls
  3. echo.
  4. echo Looking for necessary files !
  5. echo.
  6. if not exist uchaos.map echo Can't find uchaos.map
  7. if not exist uchaos.art echo Can't find uchaos.art
  8. if not exist uchaos.con echo Can't find uchaos.con
  9. if not exist uchaos.dmo echo Can't find uchaos.dmo
  10. echo.
  11. echo Backing up original files !
  12. copy /y tiles014.art tiles014.old
  13. copy /y user.con user.old
  14. copy /y demo1.dmo demo1.old
  15. echo Done.
  16. echo.
  17. echo Initializing new files !
  18. copy /y uchaos.art tiles014.art
  19. copy /y uchaos.con user.con
  20. copy /y uchaos.dmo demo1.dmo
  21. echo Done.
  22. echo.
  23. echo Urban Chaos V1.00 - Multiplayer Game
  24. echo.
  25.  
  26. setup
  27. echo Restoring original files !
  28. erase tiles014.art
  29. copy /y tiles014.old tiles014.art
  30. erase user.con
  31. copy /y user.old user.con
  32. erase demo1.dmo
  33. copy /y demo1.old demo1.dmo
  34. echo Done.
  35. echo.
  36. echo Deleting Temporary Files !
  37. erase user.old
  38. erase tiles014.old
  39. echo Done.
  40. echo.
  41. echo That's All Folks !!!
  42. echo URBAN CHAOS - By Vedran Jelenic, 1997.
  43. echo.
  44. goto end
  45. :end
  46.  
  47.  
  48.