SCRIPT ' ***************************************************************** ' Description: Loop on 3 BBSs, same frequency. This script will ' continuously loop on 3 BBSs. To exit the loop, ' press the STOP button on Run Monitor Form. ' Note the compact form for defining a BBS session. ' 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"; BBS = "K6FB-2"; RETRIEVE = "PB" SENDRECEIVE Print(crlf & "Checking K6FB-2 BBS as K6KP…") MYCALL = "K6KP"; BBS = "K6MOV-1"; RETRIEVE = "P" SENDRECEIVE Print(crlf & "Checking W6SJC-1 BBS as KN6PE…") MYCALL = "KN6PE"; BBS = "W6SJC-1"; RETRIEVE = "PF"; FILTER="RACES:SCCNOR:SCCSOU" SENDRECEIVE PAUSE(600) ' Pause 10 minutes… ENDLOOP ' … then repeat END