home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
-
- rem *** WILDCAT BATCH FILE EXAMPLE -- Modifications may be required ***
- rem This Batch file is called by Loadbbs.Bat when a remote caller is on-line
- rem or by Start.Bat for local testing.
-
- rem This example illustrates how to pass Wildcat!'s "/b" run time arguments
- rem using replaceable Batch file parameters.
- rem Your current copy of "Cat.Bat" could be copied to this file but, make
- rem sure that the "/b %1" argument is added to start Wildcat!.
- rem The Wildcat exit with ErrorLevel value = 60 must be set in Makewild.
-
- rem SysOps using software other than Wildcat! are referred to their
- rem BBS software documentation for instructions on installing
- rem "Front-end" programs (aka: Mailers). The proceedure is simular.
-
-
- rem The following line may be deleted:
- if not exist wildcat.exe goto no_find
-
- WILDCAT /b %1
- if errorlevel=60 goto reload
- if errorlevel=50 live.bat
- if errorlevel=1 goto reload
- if errorlevel=0 goto end
-
- :reload
- Start.Bat
-
-
- :no_find
- echo Can not find Wildcat.Exe!
- echo Exiting to DOS ...
-
- :end
-