home *** CD-ROM | disk | FTP | other *** search
/ ftp.wwiv.com / ftp.wwiv.com.zip / ftp.wwiv.com / pub / BBS / SBBS1B00.ZIP / EXEC.EXE / EXEC / QNET.SLT < prev    next >
Text File  |  1992-07-20  |  972b  |  30 lines

  1. // Main QWK Networking SALT script for calling Synchronet QWK Network Hub(s)
  2.  
  3. main()
  4. {
  5.  
  6. // These two paths need to point to your SBBS\DATA directory
  7.  
  8. copystr("C:\SBBS\DATA",_down_dir,0,40);
  9. copystr("C:\SBBS\DATA",_up_dir,0,40);
  10.  
  11. // Add additional call lines for other systems
  12. // the first parameter must be sbbsqnet, the second is the HUB's system ID,
  13. // the third is phone number list, the fourth is your logon name (should be
  14. // same as your system's QWKID), the fifth is your password, and the sixth is
  15. // the maximum retry count
  16.  
  17. // The phone number list can either contain a list of dialing directory
  18. // entries, or a manual phone number preceeded by an 'M'.
  19. // Example; both of the following are valid phone number lists:
  20. // "1 2 3" and "m1-714-529-9525"
  21. // You can only have one number per hub using the manual dial method.
  22.  
  23. call("sbbsqnet","VERT","m1-714-529-9525","QWKID","password","3");
  24.  
  25. cputs_tr("~~ATM0H1^M");
  26.  
  27. exittelix(0,0);
  28. }
  29.  
  30.