--------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3K00001 Date: 03/14/96 From: JOHN MCLACHLAN Time: 07:10pm \/To: DANIEL BERENS (Read 4 times) Subj: Script to... On 03-11-96 Daniel Berens wrote to John Mclachlan... DB> DB> P.S. Here's something of what I want it to do (a learn script): DB> Put "i", DB> Waitfor "wish to examine? [" DB> Put "270^M", DB> Waitfor "(?=Help)? " DB> Put "i", DB> Waitfor "wish to examine? [" DB> Put "271^M", DB> Waitfor "(?=Help)? " DB> Put "i", DB> G'day Daniel, You are probably on the right track with what you are trying to achieve. I always found that the best way to learn, is to do it yourself. Thats not to say that we won't help :-) But have you checked out TMSCRIPT.DOC which explains all the scripting commands. It is part of your Telemate program and runs to about 80 pages. It seems that you are logging on to another machine and searching file(?) areas until the "(?=Help)?" string is received, then searching the next one. Sounds like a good opportunity to use Repeat Loop Command maybe. Check it out |\_/| | c | John McLachlan +-+ +-- Brisbane, Qld, Australia ___ * OFFLINE 1.58 * ... Modeming takes a lot of time. Oh well, I'd just be asleep otherwise! --- Maximus/2 3.01 * Origin: madHouse Inc (3:640/820) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3K00002 Date: 03/14/96 From: THOMAS SMITH Time: 11:11pm \/To: WINFRED HU (Read 4 times) Subj: Intelec's Telemate echo Winfred... I'm posting this on behalf of the Intelec network, which is asking if your connection to them (Land of the Gypsys BBS) is no more. If so, can you give me a new location you can access Intelec from, or at least let me know if you are going to be participating with them and their TM echo any longer? I'll get the info to them asap....tnx... * RM 1.31 2831 * And To Think, Wimmin Still Wanna Date O.J. Simpson. Sigh... CircuitNET 3.10: Node: 616000 Phone 616-668-2391 The Shadow Castle BBS National CNI Host/Hub --- FreeMail/SF-Quick 1.20 # Origin: CNFDNET International Gateway (169:206/100) * Origin: CNFDNet <-> FidoNet Gate! (1:18/2.0) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3K00003 Date: 03/15/96 From: DON FOSTER Time: 01:54pm \/To: JEFF FRIEND (Read 4 times) Subj: Re: TMW V1.1 JF> I downloaded the TMW 1.10 from ftp.europa.com/outgoing/telemate JF> Hope this helps. Thanks, I had already found it though. I am still experiencing the slow choppy screen display in the terminal. :o( Guess I will just have to stay with the DOS version. lter Don * SFEMB 0.47 [TS80013] | Help, I've fallen and I can't...Hey, nice carpet! --- Alexi/Mail 2.02b (#10000) * Origin: BrickYard BBS Gonic, NH 603 332-0419 (1:132/243) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3L00000 Date: 03/15/96 From: DANIEL BERENS Time: 06:07am \/To: CHRIS CLARK (Read 5 times) Subj: Script to... You can put: When "Press Enter",^M Repeat .. . . . . Until This should work. For a better example look in the docs under WHEN. --- Maximus/2 3.00 * Origin: Warp Speed BBS (1:212/2012) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3L00001 Date: 03/15/96 From: DANIEL BERENS Time: 07:28pm \/To: FRANCIS NG (Read 5 times) Subj: Script to... FN> I see that you're doing this for Trade Wars 2002. I wrote a FN> bunch of scripts that do various things in TW and I don't FN> see the purpose of doing sector examinations for each FN> sector. But if you really want to do the above, the FN> following should work. I was asking because a sysop around here doesn't want/know how to fix the CIM. It always hangs up when it is about 250 lines done. FN> There is no easy way to get a script to stop using the ESC FN> key. If you want to stop it, just push Alt-S. Hope this FN> helps. Thanks. DB --- Maximus/2 3.00 * Origin: Warp Speed BBS (1:212/2012) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3L00002 Date: 03/15/96 From: JOHN MCLACHLAN Time: 08:07pm \/To: CHRIS CLARK (Read 5 times) Subj: Script to... On 03-12-96 Chris Clark wrote to John McLachlan... CC> I have used this method successfully to get into the BBS, but is it CC> possible to continue the script for when you have got into Blue Wave CC> mail door? Several times you are asked to "press ENTER to continue..." CC> How do you enter ENTER? And then you have to select D for down-load CC> (and of course you may wish to select U for up-grade)? Any ideas? G'day Chris, I have a script that logs on, uploads if I have any to go, downloads my selected packets and logs off, it runs every day at 6-25am. I am not logging on to a B'Wave but the theory is the same. Set AutoStop,On When "Press ENTER to continue","^M~~~~" ; if this string recd - always enter Set MultiLine,1 #include "toolbox1.scr" True = 1 ; set Boolean logic values False = 0 EchoToLocal = true EchoToRemote = false Put "^[~", ; escape to quit alarm music (if on) Put "^[~", ; escape to enter BBS (& no CR) and half Waitfor "What is your name:",35 ; wait up to 35 seconds for string to be Put "John McLachlan~" ; and half sec pause Waitfor "John McLachlan [Y,n]?",5 ; wait up to 5 seconds for string to be Put "Y~~~" ; and 1 & half sec pause Waitfor "Password:",2 ; wait up to 2 seconds for string to be Put "^&~~~" ; the password field in the phone direct ; BBS greeting screen Delay 25 ; 2 & half second wait ;auto ENTER ; See 2nd line at start ; User statistics Delay 35 ; wait 3 & half seconds ;auto ENTER ; that 2nd line again ; first bulletin screen Delay 25 Waitfor "More [Y,n,=]?",10 ; wait up to 10 seconds for string to be If found Put "N~~~", ; No (to more bulletins) and 1 & half se EndIf Waitfor "Scan for new files? [Y,n]",15 ; wait up to 15 seconds for string to be If found Put "N~~~", ; No (to new files) and 1&half sec pause EndIf ;scanning for personal mail ;auto ENTER ; there's that 2nd line ;personal message found Waitfor "More [Y,n,=]?",15 ; if message longer than one screen If found Put "N~~~", EndIf EchoColor yellow EchoHilite Echo " determining all options ... please wait " Print EchoNormal Waitfor "Next Msg [Y)es, N)o, A)gain, R)eply, *)NextArea]:",10 ; wait up to 10 If found Delay 95 ; 9 & half second wait to read screen Put "N~~~~~", ; No and 2 & half sec pause & no CR EndIf ;no personal messages EchoColor green EchoBlink Echo " still determining all options ... please wait" Print EchoNormal Delay 35 ; wait for 3 & half seconds Put "O~~~", ; Offline mail reader selected and 1 & FileExist "c:\telemate\upload\madhouse.rep", Found If Found = True ; if an upload file exists then upload i Put "U~~~", Send "z","c:\telemate\upload\madhouse.rep" If Success = True ; if it transferred successfully then de DOS "call madstore.bat" ; batch file zips my uploads Delete "c:\telemate\upload\madhouse.rep" ; delete the original upload EndIf Waitfor "Select:",300 EndIf If Found = False EchoColor cyan EchoHilite echo " nothing to upload this time" Print EchoNormal EndIf Delay 25 ; wait for 2 & half seconds Put "D~~~", ; Download and 12 sec pause & no CR Waitfor "Download these in QWK format [Y,n]?",55 ; wait up to 55 seconds for s If found Put "Y~~~", ; Yes download and 1 & half sec pause & EndIf Delay 25 ; wait 2 & half seconds Waitfor "Select:",300 ; wait up to 5 minutes for string to be Put "Q~~~", ; Quit and 1 & half sec pause & no CR Put "G~~~", ; Goodbye and 1 & half sec pause & no Waitfor "Disconnect [Y,n,?=help]?",5 ; wait 5 seconds for string to be receiv If found Put "Y~~", ; Yes and 1 sec pause & no CR EndIf Waitfor "Leave a message to SysOp [y,N,?=help]?",5 ; wait up to 5 seconds Put "N~", ; No and half sec pause & no CR Delay 15 ; wait 1 & half seconds ExitTelemate I have found that the responses and timings need to be adjusted for every different BBS. Apologies for the length of this post. TTYL |\_/| | c | John McLachlan +-+ +-- Brisbane, Qld, Australia ___ * OFFLINE 1.58 * ... I am meticulous about being exact and precise (more or less) --- Maximus/2 3.01 * Origin: madHouse Inc (3:640/820) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3L00003 Date: 03/16/96 From: KERRY PIERCE Time: 01:26am \/To: HAWLEY WARREN (Read 5 times) Subj: Winfred's Out???? -=> Quoting Hawley Warren to Kerry Pierce <=- HW> With the abuse that I have had to endure with people logging in with HW> Telemate, I think that perhaps the time has come for me to eliminate HW> the special logon as well. For the most part people have been real HW> good, but then you get those who attempt to use my callback verifier to HW> upgrade the Telemate account access. There are also those who can't HW> figure out why I allow them to read the Telemate echo, but not post. Hi Hawley, I understand what you're saying. I don't know why folks have to play their silly games.... Well, you know what is best for your system. Now that the heavy coding is done, I am looking forward to more participation in the echo by Winfred. Perhaps things will get a lot smoother then. take care ... Taxes are not levied for the benefit of the taxed. --- Blue Wave/DOS v2.30 * Origin: Egghead's Place (1:2410/297) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3M00000 Date: 03/07/96 From: JOHN EWIN Time: 11:33pm \/To: ALL (Read 6 times) Subj: Hello! ABSOLUT(e)LY TEMPORARY, of Las Vegas, NV, USA, +1-702-254-8601 <=14,400, +1-702-254-9902 <=33,600, is now carrying this echo! +++ ABSOLUT(e)LY TEMPORARY's Co-Sysop/FIDO Sysop --- RM 1.3 03162 So what if I want to strut around nude? -Bart Simpson * Origin: ABSOLUT(e)LY TEMPORARY, Las Vegas, NV +1-702-254-8601 (1:209/232) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3M00001 Date: 03/16/96 From: ERIC SHIEH Time: 09:14pm \/To: ALL (Read 6 times) Subj: hey can someone tell me how to do a batch upload with telemate ver 4.21 --- Renegade v10-05 Exp * Origin: The Connection BBS - Modesto, Ca. - Team OS/2 (1:208/800) --------------- FIDO MESSAGE AREA==> TOPIC: 177 TELEMATE Ref: D3M00002 Date: 03/17/96 From: DENNIS TRAVIS Time: 12:29am \/To: EARL LACURE (Rcvd) (Read 8 times) Subj: Winfred's Out???? Hello EARL! 15 Mar 96 08:23, EARL LACURE wrote to DARR HOAG: -=>> Quoting Kerry Pierce to Darr Hoag <=- KP>> Regardless, if you don't v4.21, I can get it yo you. EL> Don't bother with 4.21, it has some frustrating bugs in it, and EL> for some odd reason, Winfred Hu is not even responding to EL> questions regarding them. There have been several messages here EL> and else where about 4.21, and attempts to reach Winfred have EL> been fruitless. EL> ___ Blue Wave/386 v2.21 What bugs are you talking about?? I have used Telemate 4.21 everyday since it first was released on the Internet and not one problem so far doing all sorts of stuff and under DOS, Win 95 and OS/2! ...Dennis --- GoldED/2 2.42.G0214 * Origin: The Connection BBS - Modesto, Ca. - Team OS/2 (1:208/800)