home *** CD-ROM | disk | FTP | other *** search
/ Sound Sensations! / sound_sensations.iso / voice / ringbck2 / bbsbatch.bat < prev    next >
Encoding:
DOS Batch File  |  1990-09-28  |  1.0 KB  |  38 lines

  1. echo off
  2. cls
  3.  
  4. rem *** WILDCAT BATCH FILE EXAMPLE -- Modifications may be required ***
  5. rem This Batch file is called by Loadbbs.Bat when a remote caller is on-line
  6. rem or by Start.Bat for local testing.
  7.  
  8. rem This example illustrates how to pass Wildcat!'s "/b" run time arguments
  9. rem using replaceable Batch file parameters.
  10. rem Your current copy of "Cat.Bat" could be copied to this file but, make
  11. rem sure that the "/b %1" argument is added to start Wildcat!.
  12. rem The Wildcat exit with ErrorLevel value = 60 must be set in Makewild.
  13.  
  14. rem SysOps using software other than Wildcat! are referred to their
  15. rem BBS software documentation for instructions on installing
  16. rem "Front-end" programs (aka: Mailers).  The proceedure is simular.
  17.  
  18.  
  19. rem The following line may be deleted:
  20. if not exist wildcat.exe goto no_find
  21.  
  22. WILDCAT /b %1
  23. if errorlevel=60 goto reload
  24. if errorlevel=50 live.bat
  25. if errorlevel=1 goto reload
  26. if errorlevel=0 goto end
  27.  
  28. :reload
  29. Start.Bat
  30.  
  31.  
  32. :no_find
  33. echo Can not find Wildcat.Exe!
  34. echo Exiting to DOS ...
  35.  
  36. :end
  37.  
  38.