home *** CD-ROM | disk | FTP | other *** search
- // Telix Autodial script routine. (3-Oct-1992)
- // Albert J. Hawker -- HCS BBS, Cleveland, Ohio (216)273-8224
-
- // 1. This file is placed on the startup command line for Telix.
- // TELIX /Scall_hcs
- //
- // 2. Edit the number in the first "redail" function field to
- // the appropriate listing number in you Telix phone directory.
- // For instance, if HCS BBS is listed as the 7th and 8th, and
- // 9th entries in your Telix dialing directory, you would change
- // the "redial" function call to: redial("7 8 9", 0);
- //
- // 3. Recompile this script: CS filename.slt (i.e., CALL_HCS.SLT)
- // if it was necessary to change the dialing directory numbers.
- // If HCS is the first 3 number in your Telix directory, the
- // example script will work as is.
- //
- // This will begin dialing through the listed numbers in the first
- // "redial" function parameter until a connect is established.
- // If you want to limit the number of redials, change the 0 in the
- // second parameter to the number of attempts desired.
-
- // Note: PLACE THIS FILE IN TELIX SCRIPT DIRCTORY
-
- main()
- {
- redial("1 2 3", 0); // dial listed numbers until a connection is made
- return; // return to Telix, run script attached to number
- }
-