This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Search found 963 matches

by stdragon
Sun Mar 21, 2004 4:10 pm
Forum: Archive
Topic: transfer of variables
Replies: 24
Views: 5160

bot2: bind bot - "accept" procbot proc procbot {bot command text} { global mychanjoin set nick [lindex [split $text] 0] set jointime [lindex [split $text] 1] set [getchanjoin $nick #channel] jointime } I think the point of this code was to use the var mychanjoin, not [getchanjoin]. So it ...
by stdragon
Wed Mar 17, 2004 6:32 pm
Forum: Archive
Topic: adding color
Replies: 5
Views: 1710

JOE,

Those lines of code you posted work for me.

Also, to add color to the channel name, you'll have to do like \00304B\00305e\00306l etc.
by stdragon
Tue Mar 16, 2004 7:41 pm
Forum: Archive
Topic: AVOnJoin problem
Replies: 15
Views: 3677

Could you be a little more vague? When you do .channel, I really hope you don't just see "N". And no, N is not the same as n, and it's not a +m either. Hopefully you see something like this: <stdarg> .channel <martian> [19:36] #stdarg# (#trivia) channel <martian> Channel #trivia, 34 member...
by stdragon
Tue Mar 16, 2004 6:40 pm
Forum: Archive
Topic: AVOnJoin problem
Replies: 15
Views: 3677

Simple then, the bot doesn't see you, or you don't have +m. Make sure your host is correct, and that you see your handle on .channel output. Make sure the user you're identified as has +m. You'll know it's working when ".av blahblah" makes the bot send you the notice I indicated above.
by stdragon
Mon Mar 15, 2004 9:29 pm
Forum: Archive
Topic: AVOnJoin problem
Replies: 15
Views: 3677

What about the other test?
by stdragon
Mon Mar 15, 2004 8:48 pm
Forum: Archive
Topic: AVOnJoin problem
Replies: 15
Views: 3677

When you are in the channel, and on the partyline you type .channel, does the bot see you as the right user? Do you have +m?

When you type ".av dragon" does the bot send you a notice that says "Usage: .avjoin on|off" ??
by stdragon
Mon Mar 15, 2004 8:08 pm
Forum: Archive
Topic: adding color
Replies: 5
Views: 1710

Try \ instead of /
by stdragon
Mon Mar 15, 2004 8:07 pm
Forum: Archive
Topic: story teller
Replies: 5
Views: 1152

Hard to tell if it will work with the horrible formatting, and I didn't test it... bind pub * !start join:story proc join:story {nick uhost hand chan rest} { global story_timers set story "story.txt" if {![info exists story_timers($story)]} { slowmsg $story } else { puthelp "privmsg $...
by stdragon
Mon Mar 15, 2004 2:51 pm
Forum: Archive
Topic: story teller
Replies: 5
Views: 1152

Does it happen when the bot rejoins the channel?
by stdragon
Mon Mar 15, 2004 2:47 pm
Forum: Archive
Topic: tcl script that refuses to work
Replies: 11
Views: 1962

That's the problem then -- you are running it wrong. It expects arguments and you are giving it none. Try:

.tcl identify_notc somenick uhost hand text dest
by stdragon
Mon Mar 15, 2004 1:53 pm
Forum: Archive
Topic: tcl script that refuses to work
Replies: 11
Views: 1962

When do you get the error? Where do you see the error?
by stdragon
Fri Mar 12, 2004 3:27 pm
Forum: Archive
Topic: "Too many open files" problem
Replies: 3
Views: 1177

You also have to make sure that the files are closed. If there's a return statement before the close, like inside an if or a loop, the file won't be closed. Same goes with sockets, which can be more problematic because they may be asynchronous, so tracking down the closing bit and making sure it's a...
by stdragon
Thu Mar 11, 2004 10:25 pm
Forum: Archive
Topic: regular expression question
Replies: 4
Views: 1193

You'd be better off using tclsh to do the testing. Not all regular expression parsers are the same.
by stdragon
Thu Mar 11, 2004 8:49 pm
Forum: Archive
Topic: regular expression question
Replies: 4
Views: 1193

Depends if you're using { } or " " to enclose the regular expression. If { }, then \\ is right. Otherwise, you actually need \\\\.
by stdragon
Tue Mar 09, 2004 6:57 pm
Forum: Archive
Topic: need a tcl with a oppositi use of "bad channel"
Replies: 9
Views: 2569

Yup. Try a different text editor. Looks like you used wordpad or word or something.