home *** CD-ROM | disk | FTP | other *** search
/ Deathday Collection / dday.bin / serial / uni_doom / dload.bat next >
DOS Batch File  |  1994-03-02  |  4KB  |  120 lines

  1. @ECHO OFF
  2. ECHO.
  3. IF "%1"=="HELP" GOTO HELP
  4. IF "%1"=="help" GOTO HELP
  5. IF "%1"=="" GOTO ERROR_COM
  6. IF "%2"=="" GOTO ERROR_DIAL
  7. IF "%2"=="0" GOTO ANSWER
  8. Echo +-----------------+
  9. Echo + Doom Load v1.oo +
  10. Echo +  By WildStar    +
  11. Echo +  .-=UNITY=-.    +
  12. Echo +-----------------+
  13. Echo.
  14. Echo Loading DOOM v1.2 on Com%1 , dialing %2 ...
  15. REM INITS THE MODEM TO 9600 / NO COMPRESSION / NO ERROR CONTROL - NEEDED!
  16. ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N6 &K0 &M0 > COM%1
  17. REM LOADS .-./- DOOM v1.2 Reg -\.-.
  18. SERSETUP -COM%1 -DIAL %2 %3 %4
  19. REM RESETS THE MODEM 0 - 21.6k / COMPRESSION / ERROR CONTROL
  20. ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N0 &K1 &M4 > COM%1
  21. GOTO END
  22.  
  23. :ANSWER
  24. Echo +-----------------+
  25. Echo + Doom Load v1.oo +
  26. Echo +  By WildStar    +
  27. Echo +  .-=UNITY=-.    +
  28. Echo +-----------------+
  29. Echo.
  30. Echo Loading DOOM v1.2 on Com%1 , waiting for a caller ...
  31. REM INITS THE MODEM TO 9600 / NO COMPRESSION / NO ERROR CONTROL - NEEDED!
  32. ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N6 &K0 &M0 > COM%1
  33. REM LOADS .-./- DOOM v1.2 Reg -\.-.
  34. SERSETUP -COM%1 -ANSWER %3 %4
  35. REM RESETS THE MODEM 0 - 21.6k / COMPRESSION / ERROR CONTROL
  36. ECHO AT B0 X4 &B1 &H1 &R2 E1 V1 &N0 &K1 &M4 > COM%1
  37. GOTO END
  38.  
  39. :ERROR_COM
  40. Echo +-----------------+
  41. Echo + Doom Load v1.oo +
  42. Echo +  By WildStar    +
  43. Echo +  .-=UNITY=-.    +
  44. Echo +-----------------+
  45. Echo.
  46. Echo Usage of Doom Load 
  47. Echo Ex. DLOAD [comport] [number]
  48. Echo If you wanted to dial 555-1212 on Com 1 type
  49. Echo DLOAD 1 5551212
  50. Echo. 
  51. Echo If you wanted to answer the phone on Com 1 type
  52. Echo DLOAD 1 0
  53. Echo.
  54. Echo ERROR: YOU DIDN'T SPECIFY A COMPORT TO DIAL OUT OR ANSWER ON
  55. Echo.
  56. Echo Need More Help type DLOAD HELP
  57. Echo.
  58. Echo.
  59. GOTO END
  60.  
  61. :ERROR_DIAL
  62. Echo +-----------------+
  63. Echo + Doom Load v1.oo +
  64. Echo +  By WildStar    +
  65. Echo +  .-=UNITY=-.    +
  66. Echo +-----------------+
  67. Echo.
  68. Echo Usage of Doom Load 
  69. Echo Ex. DLOAD [comport] [number]
  70. Echo If you wanted to dial 555-1212 on Com 1 type
  71. Echo DLOAD 1 5551212
  72. Echo.
  73. Echo If you wanted to answer the phone on Com 1 type
  74. Echo DLOAD 1 0
  75. Echo. 
  76. Echo ERROR: YOU DIDN'T SPECIFY A NUMBER TO DIAL
  77. Echo.
  78. Echo Need More Help type DLOAD HELP
  79. Echo.
  80. Echo.
  81. GOTO END
  82.  
  83. :HELP
  84. Echo +-----------------+
  85. Echo + Doom Load v1.oo +
  86. Echo +  By WildStar    +
  87. Echo +  .-=UNITY=-.    +
  88. Echo +-----------------+
  89. Echo Not Rights Reserved - (It's only a batch file.. Nothing special,
  90. Echo BUT IT WORKS!!)
  91. Echo Is program should work on ALL USRobotics Modems. It's been teseted on
  92. Echo a 16800 D/S and a 14400 Sportster.
  93. Echo.
  94. Echo ---------------------------**TIPS**----------------------------------
  95. Echo If you still don't get it to work try to make a clean boot - Boot 
  96. Echo with an empty CONFIG.SYS and AUTOEXEC.BAT - If you have MS-DOS 6.0 
  97. Echo and up, press the Left [SHIFT] key when it says Starting MS-DOS ... 
  98. Echo Echo Also make sure you have DLOAD.BAT in the Doom Directory.
  99. Echo ---------------------------------------------------------------------
  100. Pause > Nul
  101. Echo.
  102. Echo -----------------------**KEYS / SWITCHES**---------------------------
  103. Echo When you load Doom with DLOAD 1 5551212 it loads in automaticly in
  104. Echo Coop mode. In this you are a team. You can "SPY" on the other person
  105. Echo by pressing [F12] and [F12] again to return to your own color. If you 
  106. Echo want to talk to the other person type [T] and type your message. 
  107. Echo Press [ENTER] when you finish the message. 
  108. Echo.
  109. Echo You can also load Doom in DeathMatch. In which you start on a level 
  110. Echo and you play agains your oponent. The object is not to finish the 
  111. Echo level (Fisnish it when you are bored of it) but to kill your oponent
  112. Echo as many times as posible. None of the codes work in this mode and
  113. Echo You can't "SPY" on them either. To load it in this mode type 
  114. Echo DLOAD 1 5551212 -DEATHMATCH . When you play like this the level will 
  115. Echo also be filled with enemies. If you want no enemies type 
  116. Echo DLOAD 1 5551212 -DEATHMATCH -NOMONSTERS
  117. Echo ---------------------------------------------------------------------
  118.  
  119. :END
  120.