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

by strikelight
Sun Aug 31, 2008 11:36 am
Forum: Script Requests
Topic: Weather Scripts
Replies: 2
Views: 2883

There is rawweather.tcl on www.tclscript.com which pulls and interprets raw METAR and TAF data from weather.noaa.gov, which looks up by ICAO (airport) codes for your location. Theory being that this will result in little breakage in the script over time, like other weather scripts.
by strikelight
Thu Jul 24, 2008 12:32 pm
Forum: Script Requests
Topic: Help With Bans in TCL Script
Replies: 5
Views: 3718

Mmmm... if the user is banned, I wouldn't suspect he's on the channel necessarily... so getchanhost will most likely fail.
by strikelight
Sun Jul 20, 2008 1:05 am
Forum: Script Support & Releases
Topic: UNOFFICIAL incith-google 2.1x (Nov30,2o12)
Replies: 855
Views: 1052651

Thats unfortunate, as I liked the call back feature egghttp has vs http packages. :( I just looked at your code, and you seem to be using -timeout instead of -command... Use the command parameter with the http package to have it behave similarly to egghttp (non-blocking). eg. proc callbackproc {soc...
by strikelight
Sat Jul 19, 2008 11:05 pm
Forum: Script Support & Releases
Topic: UNOFFICIAL incith-google 2.1x (Nov30,2o12)
Replies: 855
Views: 1052651

Might also port the entire thing over to egghttp if [fconfigure] works. Which also means a complete rewrite of the script where I can use the knowledge I now have to condense it immensely and reduce alot of the amateur tricks I used early on to something more elegant.. By christmas expect a total r...
by strikelight
Sat Jul 12, 2008 12:42 pm
Forum: Script Requests
Topic: AFK-Script
Replies: 11
Views: 6615

I would guess you would need to change this part of the code: regsub -all {\(} $text "" text regsub -all {\)} $text "" text regsub -all {\{} $text "" text regsub -all {\}} $text "" text regsub -all {\[} $text "" text regsub -all {\]} $text "&quo...
by strikelight
Tue Jul 01, 2008 2:09 pm
Forum: Eggdrop Help
Topic: Newbie :( Stuck with Eggdrop and BGExec
Replies: 4
Views: 4424

Re: Newbie :( Stuck with Eggdrop and BGExec

Now when i first installed this yesterday, i followed the install guide and it worked perfectly using the command .tcl exec /shoutcast/server/./start & BUT when i type that now i just get this. [18:25] <[M]onaro800> .tcl exec /shoutcast/server/./start & * [18:25] <Monaro800-Bot> What? You n...
by strikelight
Sat Jun 28, 2008 11:36 am
Forum: Eggdrop Help
Topic: vHost on my bot
Replies: 4
Views: 3137

Then either the vhost for that IP you use has changed on the shell box you are using, or, you are /whois'ing someone else who has taken your bot's nick.
by strikelight
Mon Jun 23, 2008 7:02 pm
Forum: Eggdrop Help
Topic: 1 channel, 0 users
Replies: 11
Views: 7550

If it works with -n (foreground) but doesn't without it (background), then you most likely have a Tcl threading problem, which I suspected earlier. Easiest method would be to have the admin compile Tcl as unthreaded, or you can search the forums here for what you need to edit to allow eggdrop to wor...
by strikelight
Mon Jun 23, 2008 6:58 pm
Forum: Script Requests
Topic: Looking for little script here.
Replies: 7
Views: 3550

speechles wrote:

Code: Select all

bind mode - "* +b*" check:ban
Might want to bind the mode to a +b (ban) rather than a -b (unban). :wink:
Good catch ;x
by strikelight
Sun Jun 22, 2008 11:01 pm
Forum: Script Requests
Topic: Looking for little script here.
Replies: 7
Views: 3550

bind mode - "* -b*" check:ban proc check:ban {nick uhost hand chan mode dest} { set bancount 0 foreach user [chanlist $chan] { if {[string match $dest *![getchanhost $nick]]} { incr bancount if {$bancount > 1} { break } } } if {$bancount > 1} { putquick "MODE $chan -bk $dest PROTECTE...
by strikelight
Sun Jun 22, 2008 12:02 am
Forum: Eggdrop Help
Topic: 1 channel, 0 users
Replies: 11
Views: 7550

It will still join channels even with no owner set, as long as there is a static channel defined in the conf, which there is by the startup message, but yes, he should correct the owners variable anyway.
by strikelight
Sat Jun 21, 2008 3:28 pm
Forum: Script Requests
Topic: multi cmdchars
Replies: 8
Views: 3549

As I told you, you can't do it like that. You will either have to set multiple binds, or create a pubm bind to match against * and parse the text inside the proc. Both have their benefits and fallbacks. Multiple binds means, well, multiple bindings (which isn't a bad thing unless you create a millio...
by strikelight
Sat Jun 21, 2008 2:58 pm
Forum: Script Requests
Topic: multi cmdchars
Replies: 8
Views: 3549

Nor7on wrote:

Code: Select all

bind pub -|- !say pub:say 
bind pub -|- .say pub:say 
bind pub -|- `say pub:say 
That's what my code above did. He doesn't want that apparently.
:roll:
by strikelight
Sat Jun 21, 2008 12:13 pm
Forum: Eggdrop Help
Topic: 1 channel, 0 users
Replies: 11
Views: 7550

And in that, your problem is noticed. Why did you choose net-type 0? Is quakenet an efnet ratbox variety? I doubt it, you need to pick the "correct" net type. I am on efnet. zero works for me. Actually, ratbox a split branch of hybrid. That setting was actually meant for csircd, which pri...