home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / BBS / NETMAIL / FT4A_IBM.ZIP / F5.SCR < prev    next >
Encoding:
Text File  |  1989-05-23  |  555 b   |  24 lines

  1. ;
  2. ;This is a very crude script that dials FidoNet nodes
  3. ;from the current Fido/FidoNet nodelist files. It doesn't
  4. ;do anything nice like autologin like F4.SCR does. 
  5. ;
  6. ;For now, this is the only documentation for the
  7. ;NODE script command:
  8. ;
  9. ; NODE <z:n/f> returns:
  10. ;
  11. ;    &1= rate;        /* baud rate */
  12. ;    &2= phone[40];        /* phone number */
  13. ;    &3= name[40];        /* node name */
  14. ;    &4= city[40];        /* city and state, */
  15. ;
  16. input "FidoNet node to dial"
  17.     &s= &1
  18.     if "" end
  19.     node &1
  20.     message "Name:&3  Phone:&2  Speed:&1"
  21.     &b= &1
  22.     call dial "&2"
  23. :end
  24.