SCRIPT ' ***************************************************************** ' Description: Loop on 3 BBSs. This script will continuously loop ' on 3 BBSs. To exit the loop, press the STOP button ' on Run Monitor Form. ' NOTE!!! The TNCs and BBSs assigned to the TNC and BBS variables ' must be previously set up in Outpost from the ' Setup > TNC and Setup > BBS forms. ' Author: Jim KN6PE ' Revision: 10/09/08 Original ' ' ***************************************************************** BEGIN TNC = "GARAGE-TNC" ' use this TNC for all runs. This ' TNC must be set up in Outpost first LOOP Print(CRLF & "Checking K6FB-2 BBS as KN6PE…") MYCALL = "KN6PE" ' check for personal messages BBS = "K6FB-2" ' Las Cumbres ARC PBBS RETRIEVE = "PB" ' retrieve Private and Bulletins SENDRECEIVE Print(crlf & "Checking K6MOV-1 BBS as K6KP…") MYCALL = "K6KP" ' Check for any messages to CARES BBS = "K6MOV-1" ' Mountain View PBBS RETRIEVE = "P" ' retrieve Private messages only SENDRECEIVE Print(crlf & "Checking W6SJC-1 BBS as KN6PE…") MYCALL = "KN6PE" ' check for personal messages BBS = "W6SJC-1" ' San Jose RACES F6FBB BBS RETRIEVE = "PF" ' retrieve Private and Filtered msgs FILTER = "RACES:SCCNOR:SCCSOU" SENDRECEIVE PAUSE(600) ' Pause 10 minutes… ENDLOOP ' … then repeat END