home *** CD-ROM | disk | FTP | other *** search
- ; A script file for Qmodem or QmodemPro for calling IOMAG-Net HUB
- ; Command line: QMPRO/S=IOMAGNET.SCR
- ; This file must be edited to your paramaters as indicated below.
-
- TurnON 8_BIT
- TurnOFF LINEFEED
- TurnON XON/XOFF
- TurnOFF NOISE
- TurnOFF MUSIC
- TurnON SCROLL
- TurnOFF PRINT
- TurnOFF SPLIT
- TurnON STATUSLN
- TurnOFF DOORWAY
- String counter
- assign counter 0
-
- Capture C:\Tribbs\trinet\arv.log ;keep track in case something bombs
- ; ^^^^^^^^^ insert your log
- TimeOut 50 Redail ; this will set up the didn't answer cycle
- Redail:
- Hangup ; hang up the phone, then try again
- Pause 2000
- Incr counter ; keep track of attempts
- If "$counter" = "101" GoodBye ; give up on it
- ; ^^^^^^^^^^^^^^^^^^ Dials 100 attempts then quits
- clrscr
- displayln " "
- displayln "Calling network."
- displayln " "
- displayln " Attempt $counter"
- displayln " "
-
- Delay 100
- Send "ATDT9687450^M" ; change the T to P for pulse dial
- ; ^^^^^^^^ Insert Hub's Phone #
-
-
- Waitfor "What is your first name?"
- Delay 500
- Send "*first last password^M"
- ; ^ Ater the asteric enter first name, last name and password
- ;Waitfor "ase ENTER your menu choice =^P ?"
- ;Delay 500
- ;Send "M^M"
-
- ;Waitfor "ase ENTER your menu choice =^P ?"
- ;Delay 500
- ;Send "t^M"
-
- Waitfor "Q V Y S U D N G H ? J I W T] ?"
- Delay 500
- Send "m^M"
-
- Waitfor ": [M J R S E K G H ? F T U C] ?"
- Delay 500
- Send "t^M"
-
-
- EXIST C:\TRIBBS\TRINET\ARV.REP ARVUP
-
- ARVDOWN:
- Waitfor "TOMCAT MENU [D U C H G Q]:"
- Delay 500
- Send "d^M"
- Pause 2000
- WHEN "Nothing found to download!" goodbye
- Waitfor "]es, [N]o, [G]oodbye when done?"
- Delay 100
- Send "g^M"
- Download Z C:\TRIBBS\TRINET\
-
- Waitfor "ds before disconnect: 10^H^H10^H^H 9"
- Delay 100
- GOTO GOODBYE
- Exit
-
- ARVUP:
-
- Waitfor "TOMCAT MENU [D U C H G Q]:"
- Delay 500
- Send "U^M"
- UPLOAD Z C:\TRIBBS\TRINET\ARV.REP
- DELAY 500
- When "Transfer successful, processing reply packet" DELREP
-
- GOTO ARVDOWN
-
- Goodbye:
- send "g^M"
- Hangup
- TurnOFF Capture
- System Y
-
- DELREP:
- DELETEF C:\TRIBBS\TRINET\ARV.REP
- ; ^ Enter path and name of your .REP file
- GOTO ARVDOWN
-