' **************************************************************************** ' Description: Tutorial 8b, Send/Receive Session. setup up two BBSs, TNC, and ' the retrieve options, and kicks off Outpost. Note the compact ' formatting for the system variables. Use semi-colons to put ' more than one command on a line; not recommended. ' 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 ' **************************************************************************** SCRIPT BEGIN LOOP BBS="K6FB-2"; TNC="GARAGE-TNC"; MYCALL="KN6PE"; RETRIEVE="PB" SENDRECEIVE Print(" ") ' this forces a line between sessions BBS="W6SJC-1"; TNC="GARAGE-TNC"; MYCALL="KN6PE"; RETRIEVE="P" SENDRECEIVE Print(" ") ' this forces a line between sessions Pause(600) ' wait 10 minutes before doing it again ENDLOOP END