home *** CD-ROM | disk | FTP | other *** search
- @Echo Off
- Rem MSGS.CMD from Nibbles & Bytes - Node 1:124/1113
- Rem In your BINKLEY.CFG setup, use the line:
- Rem READER MSGS
- Rem For interactive use, use MSGS rather than MSG
- Rem Change what you need...
-
- Rem This is an example of how to set up MSG for multiple users
- Rem You should rename this batch file to a unique name for each
- Rem user for which you have a configuration. Also, be sure to
- Rem make changes only to the "MYCONFIG.CFG" files, since MSG.CFG
- Rem will be overwritten each time one of these batch files is used.
- Rem
- Rem Copy %BBS%\MYCONFIG.CFG %BBS%\MSG.CFG
-
- Msg Xchange More Clear Hotkeys ^^ %1 %2 %3 %4 %5 %6 %7 %8 %9
- If ErrorLevel 3 Goto Error
- If ErrorLevel 2 Goto EchoMail
- If ErrorLevel 1 Goto NetMail
- Goto Exit
-
- :Error
- Echo Fatal Error! MSG did not execute properly!
- Pause
- Goto Exit
-
- :EchoMail
- Emmie /N /S /P
- ScanBld %MAX%\User.BBS %MAX%\Area.Dat Local Matrix @%BBS%\ScanBld.Log /ND
- Goto Exit
-
- :NetMail
- Emmie /P
- ScanBld %MAX%\User.BBS %MAX%\Area.Dat Matrix
-
- :Exit
-