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

by avilon
Thu Jul 13, 2006 5:11 pm
Forum: Script Requests
Topic: Script to make bot part channels when not in use
Replies: 5
Views: 3480

What's the definition of an unused channel?
by avilon
Thu Jul 13, 2006 5:08 pm
Forum: Scripting Help
Topic: Possible to count 2 things with one trigger?
Replies: 2
Views: 2830

bind pub - !stats voiced proc voiced {nick uhost hand chan arg} { set i 0 set cname #chan foreach n [chanlist $cname] { if { [isvoice $n $cname] } { incr i } } set fname "path/to/file.txt" set fs [open $fname r] set data [read $fs] close $fs set lines [split $data \n] set length [llength ...
by avilon
Sat Jul 08, 2006 9:26 pm
Forum: Script Requests
Topic: Kick some type of nick.
Replies: 6
Views: 3941

I don't see a problem there really?!
by avilon
Sat Jul 08, 2006 10:40 am
Forum: Script Requests
Topic: Kick some type of nick.
Replies: 6
Views: 3941

set droneRegEx {^[A-Z][a-z]{3,}[12][0-9]$} bind join - * droneKick proc droneKick {nick host hand chan} { if { [regexp -- ${::droneRegEx} $nick] } { newban $nick!*@* $::botnick "Your nick matches a pattern typical for certain spam drones." } } bind msg - !unban droneUnBan proc droneUnBan ...
by avilon
Fri Jun 02, 2006 9:51 am
Forum: Scripting Help
Topic: Welcome message delay [solved]
Replies: 9
Views: 6918

Code: Select all

utimer 15 [list putserv "PRIVMSG $chan :<message>"]
by avilon
Sat May 27, 2006 10:22 am
Forum: Scripting Help
Topic: Splitting into lines
Replies: 2
Views: 3550

Code: Select all

set fs [open QUOTES.txt]
set data [read $fs]
close $fs

foreach Quote [split $data \n] {
	foreach Line [split $Quote "|"] {
		puthelp "PRIVMSG #CHANNEL :$Line"
	}
}
by avilon
Sat May 13, 2006 5:10 pm
Forum: Script Requests
Topic: Join chan, get op'd in diff chan
Replies: 6
Views: 5232

Code: Select all

bind join - "#b *" chanJoin

proc chanJoin {nick host hand chan} {
  if { [validchan #a] && [botisop #a] && [onchan $nick #a] } {
    pushmode #a +o $nick
  }
}
by avilon
Thu May 04, 2006 11:54 am
Forum: Scripting Help
Topic: regexp
Replies: 7
Views: 6757

Code: Select all

set RE {$t1|$t2}

set r [regexp -nocase -all -- [subst -nocommands -nobackslashes $RE] $arg]
by avilon
Wed Mar 08, 2006 8:32 am
Forum: Eggdrop Help
Topic: auto auth when joining
Replies: 2
Views: 4043

Code: Select all

set init-server { putserv "PRIVMSG Q@CServe.quakenet.org :AUTH user password" }
by avilon
Fri Jan 13, 2006 3:11 pm
Forum: Script Requests
Topic: check site
Replies: 19
Views: 24614

Use rssnews.tcl by demond and add this feed url: http://www.eurosport.com/football/rss.xml
by avilon
Sat Jan 07, 2006 11:50 am
Forum: Scripting Help
Topic: handling regular expression
Replies: 12
Views: 13257

by avilon
Sun Jan 01, 2006 7:34 pm
Forum: Modules & Programming
Topic: help making a module
Replies: 10
Views: 16970

by avilon
Sat Dec 31, 2005 6:03 pm
Forum: Scripting Help
Topic: simple question
Replies: 7
Views: 9678

*sigh* Have you even tested my script? e//: (23:44:44) (@avilon) !news (23:44:45) (+bot) (1) Eifel X-Mas PC Cup (23:44:47) (+bot) (2) NEW: Comments (23:44:49) (+bot) (3) Exclusive Interview with Jon Hare That's what you requested. Btw.: I can't believe you are not able to express yourself. 90% of yo...
by avilon
Sat Dec 31, 2005 11:51 am
Forum: Scripting Help
Topic: simple question
Replies: 7
Views: 9678

What's your problem? The script is faultless, isn't it?
by avilon
Fri Dec 30, 2005 4:37 pm
Forum: Scripting Help
Topic: simple question
Replies: 7
Views: 9678

package require http bind pub - !news www:news proc www:news {nick host handle chan text} { set token [::http::geturl http://www.sensiblesoccer.de/index.php?lng=en -timeout 10000] set status [::http::status $token] if {$status!="ok"} { switch -exact -- [string tolower $status] { reset { p...