home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC-Online 1998 February
/
PCOnline_02_1998.iso
/
filesbbs
/
frei
/
bimodem.arj
/
BIMOD.SLT
< prev
next >
Wrap
Text File
|
1989-01-18
|
1KB
|
30 lines
// ________________________________________________________________________
// | |
// | A Sample Script file for use with Telix 3.10 |
// | |
// | This script will execute BiPath so you may modify your transfer |
// | request lists, and then will Request BiModem from the Bulletin Board. |
// | If selection of BiModem is not done by typing a B and pressing the |
// | carriage return, you will have to either modify this script file or |
// | start BiModem on the board before executing this script. |
// |________________________________________________________________________|
//
// Very simple yet it really helps. now if you execute this script from
// Telix, it should do the trick. Feel free to enhance this as there are
// many directions you could take.
//
main()
{
dos("BiPath BiModem.Pth",0);
clear_scr();
box (0,0,79,2,1,0,30);
pstraxy(" Please enter the command which brings up BiModem on the BBS ",1,1,30);
pstraxy(" ",1,3,03);
while (!(waitfor(" ",100))) ;
dos("BiModem",0); // change to dos("BiModem /L 2"),0); for com2 support
clear_scr();
dos("del BiModem.Pth");
}