home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / comm / mbbs25a4.zip / BINKLEY.BAT < prev    next >
DOS Batch File  |  1993-05-14  |  1KB  |  66 lines

  1. :
  2. : This file has been included to demonstrate how you can use MacroBBS in
  3. : conjunction with a front-end mailer (like BinkleyTerm) and a message
  4. : reader such as msged,  MacroBBS does NOT support FIDO message sreas
  5. : itself but will accept a carrier from a front-enf mailer.
  6. :
  7. :start
  8. echo off
  9. cls
  10. cd \binkley
  11. bt
  12.  
  13. cls
  14. if errorlevel 31 goto start
  15. if errorlevel 30 goto reader        : F3 boots a message reader
  16. if errorlevel 25 goto start
  17. if errorlevel 24 goto 2400
  18. if errorlevel 21 goto start
  19. if errorlevel 20 goto term          : F2 executes a term program
  20. if errorlevel 13 goto start
  21. if errorlevel 12 goto 1200
  22. if errorlevel 11 goto midnite
  23. if errorlevel 10 goto local         : F1 allows a BBS local logon
  24. if errorlevel 3 goto 300
  25. if errorlevel 1 goto exit
  26.  
  27. :2400
  28. set BD=2400          : set BD = 2400 for a 2400 bps caller
  29. goto exit1
  30.  
  31. :1200
  32. set BD=1200          : set BD = 1200 for a 1200 bps caller
  33. goto exit1
  34.  
  35. :300
  36. set BD=300           : set BD = 300 for a 30 bps caller
  37. goto exit1
  38.  
  39. :local
  40. set BD=local
  41. goto exit1
  42.  
  43. :term
  44. cd \commo
  45. commo /v10000
  46. goto start
  47.  
  48. :reader
  49. cls
  50. cd msg
  51. msged
  52. goto start
  53.  
  54. :midnite
  55. set BD=mid           : BD must equal mid or midnight maintenance will not occur
  56.  
  57.  
  58. :exit1
  59. cd \commo
  60. commo /iN /v10000 /mMACROBBS.MAC /:bink
  61.  
  62. goto start
  63.  
  64. :exit
  65.  
  66.