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 1406 matches

by rosc2112
Tue Mar 11, 2008 2:22 pm
Forum: Scripting Help
Topic: Help with regexp
Replies: 1
Views: 1586

Code: Select all

regexp -- {NEW SLAP: (.*?) pimp slaps (.*?) with (.*?)} $arg -> by who with
by rosc2112
Tue Mar 11, 2008 2:19 pm
Forum: Scripting Help
Topic: My PCW scripts
Replies: 3
Views: 2135

Use puthelp instead of putserv, then it won't flood. Also, since you're sending notices to the nick $n, the only thing to worry about is exceeding sendq, not necessarily channel flooding.
by rosc2112
Tue Mar 11, 2008 4:35 am
Forum: Script Support & Releases
Topic: Lastfm script not fully working
Replies: 8
Views: 6348

Easier to re-write it (and use package http, instead of the external lynx binary) and proper regexp's. I'll put it on my todo list. If I get a spurt of ambition I might write it by the weekend.
by rosc2112
Fri Mar 07, 2008 4:26 pm
Forum: Script Support & Releases
Topic: murf's weather script v2112 =p
Replies: 46
Views: 39932

Typo fixed. Uploaded.

Change:

Code: Select all

if {$pressure != ""} {
		set baro1 "[lindex $pressure 0]in."
		set baro2 "[lindex $pressure 12]hPa."
to

Code: Select all

if {$pressure != ""} {
		set baro1 "[lindex $pressure 0]in."
		set baro2 "[lindex $pressure 1]hPa."
by rosc2112
Wed Mar 05, 2008 2:19 pm
Forum: Script Support & Releases
Topic: dict (tcl module)
Replies: 16
Views: 26108

The script will load it, if it's available.
by rosc2112
Tue Mar 04, 2008 5:45 pm
Forum: Script Requests
Topic: US & CA TV SHOW DAY SCHEDULE -- BASED ON TVRAGE
Replies: 1
Views: 1973

Its already been done. There's a thread for it in the support forum.
by rosc2112
Fri Feb 29, 2008 3:52 pm
Forum: Other Topics
Topic: best/coolest/ most useful scripts??
Replies: 4
Views: 4744

mine :P
by rosc2112
Wed Feb 27, 2008 2:00 am
Forum: Script Requests
Topic: Proxyscanner
Replies: 14
Views: 10203

How would you ever detect them, outside of having a list of known proxies? It's not like you can /whois someone and see something that identifies them as a proxy.

This should be a faq, because it's been discussed to death here.
by rosc2112
Tue Feb 26, 2008 7:24 pm
Forum: Script Requests
Topic: Proxyscanner
Replies: 14
Views: 10203

That still implies adding them to a list, does it not?
by rosc2112
Tue Feb 26, 2008 2:38 am
Forum: Script Support & Releases
Topic: incith:weather (2.8p) (Dec. 18th, 2008)
Replies: 311
Views: 453918

Getting to be a real pain in the arse aren't they =p

Shame METAR doesn't provide more data, at least that format doesn't change.
by rosc2112
Tue Feb 26, 2008 2:32 am
Forum: Script Requests
Topic: Proxyscanner
Replies: 14
Views: 10203

dnsbl does work, try adding more blacklist sites to it. Many of the older dnsbl sites are defunct, so try google searching for active ones, these are still active afaik:

spamhaus.org
njabl.org
sorbs.net

Might also need dialup blacklists and so on. Google is your friend.
by rosc2112
Tue Feb 26, 2008 2:29 am
Forum: Eggdrop Help
Topic: Error 127
Replies: 11
Views: 19345

Compiling statically linked binaries makes it include the lib in the binary.. Makes it much larger. I'd us the LD_LIBRARY_PATH var and compile it dynamically. Just FYI.
by rosc2112
Sun Feb 24, 2008 7:39 pm
Forum: Script Requests
Topic: authentication tcl --- needed badly
Replies: 3
Views: 7681

chanservneed.tcl from de-kus works too, with a bit of modification.
by rosc2112
Wed Feb 20, 2008 4:11 pm
Forum: Script Requests
Topic: [req] ym check - new feature !
Replies: 10
Views: 8071

You don't need http.tcl, since you're using "package http" which is part of libtcl.

I think http.tcl (as well as egghttp.tcl) are obsoleted by package http.
by rosc2112
Tue Feb 19, 2008 7:25 am
Forum: Scripting Help
Topic: Explanation on File Reading?
Replies: 4
Views: 2701

If you have questions after reading the FAQ forum, specifically the faq dealing with reading/writing files, let us know.