home *** CD-ROM | disk | FTP | other *** search
/ Beijing Paradise BBS Backup / PARADISE.ISO / software / BBSDOORW / HCSNET2C.ZIP / CALLHCS.SLT next >
Encoding:
Text File  |  1992-10-19  |  1.2 KB  |  30 lines

  1. //  Telix Autodial script routine.  (3-Oct-1992)
  2. //  Albert J. Hawker -- HCS BBS, Cleveland, Ohio (216)273-8224
  3.  
  4. //  1. This file is placed on the startup command line for Telix.
  5. //     TELIX /Scall_hcs
  6. //     
  7. //  2. Edit the number in the first "redail" function field to
  8. //     the appropriate listing number in you Telix phone directory.
  9. //     For instance, if HCS BBS is listed as the 7th and 8th, and
  10. //     9th entries in your Telix dialing directory, you would change
  11. //     the "redial" function call to:  redial("7 8 9", 0);
  12. //
  13. //  3. Recompile this script: CS filename.slt (i.e., CALL_HCS.SLT)
  14. //     if it was necessary to change the dialing directory numbers.
  15. //     If HCS is the first 3 number in your Telix directory, the
  16. //     example script will work as is.
  17. //
  18. //  This will begin dialing through the listed numbers in the first
  19. //  "redial" function parameter until a connect is established.
  20. //  If you want to limit the number of redials, change the 0 in the
  21. //  second parameter to the number of attempts desired.
  22.  
  23. // Note: PLACE THIS FILE IN TELIX SCRIPT DIRCTORY
  24.  
  25. main()
  26. {
  27.   redial("1 2 3", 0);   // dial listed numbers until a connection is made
  28.   return;             // return to Telix, run script attached to number
  29. }
  30.