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

by speechles
Tue May 14, 2013 4:03 pm
Forum: Script Requests
Topic: one command all channels
Replies: 25
Views: 15230

# main control channel set controlChan "#123" # flags required # global|channel set controlFlags "o|o" # create bind using flags and chan bind pubm $controlFlags "$controlChan .all *" pub:all proc pub:all {nick uhost hand chan text} { # pubm binds pass entire text, rem...
by speechles
Tue May 14, 2013 5:37 am
Forum: Script Requests
Topic: one command all channels
Replies: 25
Views: 15230

set controlChan "#123" bind pubm -|- "$controlChan .all *" pub:all proc pub:all {nick uhost hand chan text} { set text [join [lrange [split $text] 1 end]] foreach ch [channels] { if {![botonchan $ch] || [string equal $ch $::controlChan} continue puthelp "PRIVMSG $chan :$tex...
by speechles
Sun May 12, 2013 5:18 pm
Forum: Script Support & Releases
Topic: Eggdrop RSS Syndication (rss-synd) v0.5b1
Replies: 399
Views: 652098

Output in channel is Req 3962 - The_History_Channel_Battle_For_The_Pacific_EUR_PS3-Googlecus PAL BLURAY ggl-thcbftpe 48x50MB Script is "output" "\0037[a.b.console.ps3]\003 @@item!title@@" How can I remove the req ID and PAL BLURAY ggl-thcbftpe 48x50MB. "output" "\...
by speechles
Sat May 11, 2013 9:39 pm
Forum: Script Support & Releases
Topic: Durby - 0.3.0. New project page on code.google.com
Replies: 49
Views: 84508

The problem is, the http package version you are using unfortunately. It is a mistake in tcl8.5, where it is assumed zlib is present. Even if you have installed trf correctly, the problem is your version of http package is zlib dependent. It cannot work without it. The only alternative is, to compil...
by speechles
Fri May 10, 2013 6:43 pm
Forum: Script Support & Releases
Topic: Durby - 0.3.0. New project page on code.google.com
Replies: 49
Views: 84508

Found a bug as well http://screenrant.com/24-season-9-fox <title> Fox to Bring Back ’24′ for Season 9</title> IRC: ~ Fox to Bring Back 242 for Season 9 Patching your eggdrop for utf-8 support solves this without requiring any changes. But for those with unpatched eggdrops/windrops this is indeed an...
by speechles
Tue Apr 30, 2013 9:22 pm
Forum: Eggdrop Help
Topic: Bot keeps kicking on text flood
Replies: 4
Views: 6177

Re: Bot keeps kicking on text flood

intel wrote:I have in the eggdrop bot the user flags as aflo and put in the various hosts. It still kicks the sitebot. Is there something I need to add?

Code: Select all

.chanset #chan flood-chan 0:0
If that solves it you didn't have the sitebot added correctly, try using:

Code: Select all

.adduser sitebot
.chattr sitebot +f
by speechles
Sat Apr 13, 2013 6:35 pm
Forum: Script Support & Releases
Topic: Public Quotes System (current version: 1.32)
Replies: 53
Views: 72244

Ups! I see these errors on the bot console [20:59:41] Tcl error in script for 'timer19': [20:59:41] can't read "instance(#MYCHANNELglobal)": no such element in array Indeed, it's the odd shimmering effect rampant in this script it causes problems.. I've hopefully fixed the issue you were ...
by speechles
Sat Apr 13, 2013 1:35 pm
Forum: Script Support & Releases
Topic: Public Quotes System (current version: 1.32)
Replies: 53
Views: 72244

Ok, it was missing indeed. Added it, enabled it with the bot. Still does not work. When someone tries one of the commands: [16:47:11] Tcl error [pubqsys::quote]: illegal channel: USERSNICKNAME On snap dog, that isn't cool... So ran the thing myself this time, tested it, and now she works...exactly ...
by speechles
Sat Apr 13, 2013 1:05 am
Forum: Script Support & Releases
Topic: Public Quotes System (current version: 1.32)
Replies: 53
Views: 72244

But that disables this setting completely and makes the script reply in all channels the bot is on... setudef flag quotes ... if {[pubqsys::channel_check $chan $nick] == 0} { ... proc pubqsys::channel_check {chan nick} { if {[channel get $chan quotes] && [isop $chan $nick]} { return 1 } ret...
by speechles
Fri Apr 12, 2013 10:58 pm
Forum: Script Support & Releases
Topic: Public Quotes System (current version: 1.32)
Replies: 53
Views: 72244

How to support networks with & , % and ~ user modes? This is what I've set in my eggdrop config file: set opchars "@%&~" And this is what I've set in the quote script config: variable delquotecmd "!delquote" # authorizations for !delquote variable delquoteauth "-|o&...
by speechles
Fri Apr 12, 2013 5:24 pm
Forum: Modules & Programming
Topic: megahal installed which problem? help-me
Replies: 2
Views: 14570

Those options are part of Barkerjr's megahal which is no longer offered at his website. You can see the way it was before on the wayback machine: http://wayback.archive.org/web/20080529035117/http://barkerjr.net/wiki/MegaHAL Since this is no longer offered (officially) here is a (n unofficial) mirro...
by speechles
Sun Apr 07, 2013 11:58 pm
Forum: Script Requests
Topic: Parse metal-archives
Replies: 25
Views: 36568

# Metal v1.0 2013-04-07 # metal-archives.com script # (cl)2013 speechles # # TO ENABLE IN YOUR CHANNEL: # .chanset #yourchan +metal # # TO SEARCH: # ( use -search ) # !metal *band -search # !metal -search *band* # !metal band* -search # !metal -search band # # TO DISPLAY RESULTS: # ( don't use -sea...
by speechles
Tue Apr 02, 2013 4:51 pm
Forum: Scripting Help
Topic: problem in shoutcast by domsen 1.03
Replies: 9
Views: 11872

Re: Thanks for replying

gamble27 wrote:<(Radio> [07:41] invalid command name "}"
oops... I fixed that in the above post.. my bad. :)
by speechles
Tue Apr 02, 2013 12:48 am
Forum: Script Requests
Topic: Matching Text
Replies: 13
Views: 8507

The problem is both \0034 and \00304 both lead to red . So you need to anticipate both to accurately handle this. The script I wrote below is modified from SpiKe^^'s above. So of course this is a collaboration. I want to relay from #chanA to #chanB for example, in the scripts config I would set the ...
by speechles
Mon Apr 01, 2013 3:48 pm
Forum: Scripting Help
Topic: problem in shoutcast by domsen 1.03
Replies: 9
Views: 11872

Re: Thanks for replying

I have tried your tcl madalin, but its a little too simple and my eggdrop keep getting ping timeout when i uses your tcl. Domsen tcl is perfect but unfortunately it is displaying the above stated error. Okay, the script had 3 places really where streamstatus is checked when it's possible it may not...