home *** CD-ROM | disk | FTP | other *** search
- @echo off
- :start
- cd\ubbs
- ubbs
- if errorlevel 7 goto start
- if errorlevel 6 goto event3
- if errorlevel 5 goto event2
- if errorlevel 4 goto exit
- if errorlevel 3 goto fatal
- if errorlevel 2 goto external
- if errorlevel 1 goto event1
- if errorlevel 0 goto start
- :external
- command /C rundoor.bat
- goto start
- :fatal
- cls
- echo Fatal Error Occurred, Check UBBS.ERR!
- goto start
- :event1
- echo Do your Event # 1 commands or COMMAND /C the batch file here
- goto start
- :event2
- echo Do your Event # 2 commands or COMMAND /C the batch file here
- goto start
- :event3
- echo Do your Event # 3 commands or COMMAND /C the batch file here
- goto start
- :exit
- cls
- echo UltraBBS Exiting to DOS!
-