home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS 1992 December / simtel1292_SIMTEL_1292_Walnut_Creek.iso / msdos / rbbs_pc / rbbsdoor.arc / RBBS.BAT < prev    next >
DOS Batch File  |  1986-10-11  |  1KB  |  30 lines

  1. rem example of a batchfile voor running RBBS-PC with RBBSDOOR
  2. rem call this batchfile as either RBBS.BAT 1 or RBBS.BAT 2
  3. rem where 1 or 2 is the required node-number
  4. rem the 1 or 2 parameter circulates through all the succesive
  5. rem batchfiles that are called by RBBS.BAT
  6. rem _________________________________________________________
  7. rem
  8. rem Written by Jan Terpstra of Bamestra RBBS, The Netherlands
  9. rem _________________________________________________________
  10. rem
  11. rem these two lines kill the no longer needed .BAT and .DEF files
  12. IF EXIST RCTTY%1.BAT DEL RCTTY%1.BAT
  13. IF EXIST RBBS%1F1.DEF DEL RBBS%1F1.DEF
  14. rem this line puts GUARD1 or GUARD2 to sleep.
  15. GUARD%1 OFF
  16. rem this line starts RBBS-PC.EXE with the proper node-number
  17. RBBS141D.EXE %1
  18. rem if a RCTTYn.BAT, activate the proper GUARD
  19. IF EXIST RCTTY%1.BAT GUARD%1 ON
  20. rem check for RBBSnF1.DEF and terminate batchfile if it exists
  21. IF EXIST RBBS%1F1.DEF GOTO END
  22. rem start RBBSDOOR.EXE with the proper node-number
  23. RBBSDOOR.EXE %1
  24. rem if a RCTTYn.BAT file exists, execute it  with the proper node-number
  25. IF EXIST RCTTY%1.BAT RCTTY%1.BAT %1
  26. rem if RCTTYn.BAT wasn't there, restart RBBS.BAT with the proper node-number
  27. RBBS.BAT %1
  28. rem this is the END label jumped to if RBBSnF1.DEF existed
  29. :END
  30.