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
Sat Mar 06, 2004 12:39 pm
Forum: Archive
Topic: interesting question about windrop security
Replies: 8
Views: 4990

Try putting those as separate arguments, like

exec fgkey "/d" "pass"
by stdragon
Fri Mar 05, 2004 11:19 pm
Forum: Archive
Topic: create a listen party line socket
Replies: 6
Views: 2598

I suppose you could say "set my-ip 127.0.0.1" and that would make it only bind to that ip address. Then after the listen, set my-ip back to 0.0.0.0 or "" or something. I'm not sure, I've never tried.
by stdragon
Fri Mar 05, 2004 8:31 pm
Forum: Archive
Topic: Easy one (*hope*): binding "QUIT"
Replies: 3
Views: 1650

Just a note, if you want to watch *everybody* leaving the channel, be sure to bind kick too.
by stdragon
Fri Mar 05, 2004 8:30 pm
Forum: Archive
Topic: create a listen party line socket
Replies: 6
Views: 2598

You mean you want to make your own socket, but have eggdrop control it as a partyline socket? Why don't you use "listen" then? I don't think you can do it just in tcl, you'll need to write a module or modify the source. What I interpreted your post as asking was how to make a socket to *co...
by stdragon
Fri Mar 05, 2004 4:13 pm
Forum: Archive
Topic: interesting question about windrop security
Replies: 8
Views: 4990

Ya something like that.. so does it say v4.user when you type .unprotect, or give a tcl error?
by stdragon
Fri Mar 05, 2004 1:25 pm
Forum: Archive
Topic: interesting question about windrop security
Replies: 8
Views: 4990

You did type .unprotect first, right? Add a putlog to the uf:unprot to make sure it's all being executed, like after the exec: putlog "unprotected file" Also, I just noticed another error. In uf:unprot it makes a bind with the proc uf:lock, but it should be uf:copy (although the other name...
by stdragon
Fri Mar 05, 2004 12:10 pm
Forum: Archive
Topic: interesting question about windrop security
Replies: 8
Views: 4990

Probably the only problem is you're using
  • with exec. Try getting rid of that part and using exec directly.
by stdragon
Fri Mar 05, 2004 10:28 am
Forum: Archive
Topic: Tcl error [crap:list]: can not find channel named "fu..
Replies: 1
Views: 1134

It's because you seem to have copied some code from here and thought that your $wordlist (string) is the same as my $fp (file pointer).
by stdragon
Fri Mar 05, 2004 3:16 am
Forum: Archive
Topic: stopping at one line
Replies: 12
Views: 3159

no :/
by stdragon
Thu Mar 04, 2004 11:19 pm
Forum: Archive
Topic: Clan Ladder rank help
Replies: 11
Views: 7922

You forgot the part where you download the url. Take a look at some other web downloading scripts for hints.
by stdragon
Thu Mar 04, 2004 10:27 pm
Forum: Archive
Topic: Clan Ladder rank help
Replies: 11
Views: 7922

regexp "<b>(.*)</b>" $text match rank

$text = text of web page
$rank = clan's rank
by stdragon
Thu Mar 04, 2004 3:52 pm
Forum: Archive
Topic: create a listen party line socket
Replies: 6
Views: 2598

Use the "socket" command. See the tcl manual for more info.
by stdragon
Thu Mar 04, 2004 10:33 am
Forum: Archive
Topic: Are quicker log updates possible?
Replies: 3
Views: 2173

If you really want it to be every 30 seconds or so you could probably do it like this... (not tested) if {![info exists log_timer]} { set log_timer [utimer flush_logs 30] } proc flush_logs {} { global log_timer set log_timer [utimer flush_logs 30] foreach log [logfile] { foreach {mode chan file} $lo...
by stdragon
Thu Mar 04, 2004 10:21 am
Forum: Archive
Topic: stopping at one line
Replies: 12
Views: 3159

You should use the [ code ] and [ /code ] tags.

You should also close your file handle after reading it in.

It's too annoying to go through the code in any more detail without formatting, so I'll take another look when you've reposted with [ code ].
by stdragon
Wed Mar 03, 2004 6:47 pm
Forum: Archive
Topic: nicks including 4, 6 or 8 numbers
Replies: 1
Views: 2245

Try regexp with -all, it returns how many matches it made.