; EXIT.txt created by AJ0C ; PMS: WinPack V6.80 ; TNC: KPC3PMX-F7FC05160-9.1 (KPC-3 Plus) ; ; Place this file in the WINPACK\SCRIPTS directory ; ; Should be used with its associated STARTUP.txt file: a: Startup KPC-3 ; ; ; The title. TITLE a2: EXIT KPC-3 Plus ;wait until disconnected - just a precaution! WAITDIS ; ;send just a and wait for the prompt. ;helps to get things going with some TNCs when ;they have been left connected to the radio and ;disconnected from the PC. SEND ; ;wait for the prompt. WAITFOR cmd: ; ; set CONOK OFF. Don't allow connects to occur while the scipt is ; running. Last command issued will be set CONOK ON. SEND CONOK OFF WAITFOR cmd: ; ; set BEACON EVERY 0. A value of 0 turns beacon OFF. SEND B EVERY 0 WAITFOR cmd: ; SEND CMSG PBBS. When set to PBBS the KPC-3 will automatically. ; re-direct connections to your MYCALL address to your PBBS ; address. Since you are exiting WinPack and wont be monitoring ; the MYCALL data streams you want people to use your PBBS to leave ; a message. SEND CMSG PBBS WAITFOR cmd: ; clear Conection Text SEND CTEXT % WAITFOR cmd: ; ; set BREAK OFF. Default value is OFF. We want to place items at their ; default values. The next program we use may not check for non-default ; settings (good housekeeping). SEND BREAK OFF WAITFOR cmd: ; set CSTAMP OFF. Default value is OFF. SEND CSTAMP OFF WAITFOR cmd: ; ; set ECHO ON. Default value is ON. (Remember set FLOW the same as ECHO.) SEND ECHO ON WAITFOR cmd: ; ; set FLOW ON. Default is ON. (Should always match ECHO.) SEND FLOW ON WAITFOR cmd: ; set MCOM OFF. Default is OFF. SEND MCOM OFF WAITFOR cmd: ; ; set MCON OFF. Default is OFF. SEND MCON OFF WAITFOR cmd: ; ; set MONITOR OFF. Default is OFF. SEND MONITOR OFF WAITFOR cmd: ; ; set MRESP OFF. Default is OFF. SEND MRESP OFF WAITFOR cmd: ; ; set MRPT ON. Default is ON. SEND MRESP ON WAITFOR cmd: ; set MSTAMP OFF. Default is OFF. SEND MSTAMP OFF WAITFOR cmd: ; set MXMIT ON. Default is ON. SEND MXMIT ON WAITFOR cmd: ; set XFLOW ON. Default is ON. SEND XFLOW ON WAITFOR cmd: ; set STREAMSW $7C. Default is $7C. SEND STREAMSW $7C WAITFOR cmd: ; ; Last but not least... set CONOK ON. Default is ON. SEND CONOK ON WAITFOR cmd: