home *** CD-ROM | disk | FTP | other *** search
/ Gamer's Paradise: Sports / Hracuv-raj-Sportovni-Hry.bin / Carvin' / carvin.bat < prev    next >
Encoding:
DOS Batch File  |  1999-07-01  |  2.1 KB  |  68 lines

  1. wgtlib store.lib @x_tract.txt
  2. speed.exe
  3. title.exe
  4. :start
  5. cls
  6. @echo off
  7. cls 
  8. echo                    ███   █   ████  █   █ █ █   █ ██
  9. echo                   █     █ █  █   █ █   █ █ ██  █  █
  10. echo                   █     █▀█  █▀██   █ █  █ █ █ █
  11. echo                   █    █   █ █  █   █ █  █ █  ██
  12. echo                    ███ █   █ █   █   █   █ █   █
  13. echo __________________________________________________________________________
  14. echo If you have completed the game and would like to download more levels -or- 
  15. echo if you would like to download someone else's game to view, please visit:
  16. echo                  http://home2.paralynx.com/~phoffman/
  17. echo __________________________________________________________________________
  18. echo __________________________________________________________________________
  19. echo If you want to submit your hi-score to the "online hi-score list" 
  20. echo attach your "replay.lib" file to an e-mail addressed to:
  21. echo                  phoffman@paralynx.com
  22. echo __________________________________________________________________________
  23. echo                                ╔═════════════════╗
  24. echo                                ║      MENU       ║
  25. echo                                ║═════════════════║
  26. echo                                ║   1. play game  ║
  27. echo                                ║   2. replay     ║
  28. echo                                ║   3. demo       ║
  29. echo                                ║   4. exit       ║
  30. echo                                ╚═════════════════╝
  31. Choice      Your choice:  /c:1234
  32. if errorlevel 4 goto exit
  33. if errorlevel 3 goto demo
  34. if errorlevel 2 goto replay
  35. if errorlevel 1 goto snow_99
  36.  
  37. :snow_99
  38. snow_99.exe
  39. cls
  40. Choice Would you like to save this game? /c:yn
  41. if errorlevel 2 goto start
  42. if errorlevel 1 goto save
  43. goto start
  44.  
  45. :save
  46. wgtlib replay.lib @save.dat
  47. erase r0*.dat
  48. goto start
  49.  
  50. :replay
  51. wgtlib replay.lib @extract.dat
  52. replay.exe
  53. erase r0*.dat
  54. goto start
  55.  
  56. :demo
  57. demo.exe
  58. goto start
  59.  
  60. :exit
  61. erase *.dat
  62. erase demo.exe
  63. erase title.exe
  64. erase replay.exe
  65. erase snow_99.exe
  66. erase speed.exe
  67.  
  68. cls