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

by greenbear
Mon Jul 18, 2005 9:38 am
Forum: Archive
Topic: Bot removing user-placed bans
Replies: 8
Views: 3790

it should be -userbans
by greenbear
Wed Jul 13, 2005 12:57 pm
Forum: Archive
Topic: hoe to change hippie-D language
Replies: 3
Views: 2881

real hippies speak english :lol:
by greenbear
Mon Jul 11, 2005 12:51 pm
Forum: Archive
Topic: few tricks please
Replies: 10
Views: 4419

sounds like he forgot to close the trivia files after reading them..
by greenbear
Mon Jul 11, 2005 12:32 pm
Forum: Archive
Topic: Antiproxy script
Replies: 17
Views: 13968

how old are you ? 8 ?
by greenbear
Sun Jul 10, 2005 5:19 pm
Forum: Archive
Topic: Antiproxy script
Replies: 17
Views: 13968

we couldnt care less if your tweaks work or not, test it yourself.
by greenbear
Sat Jul 09, 2005 11:48 am
Forum: Other Topics
Topic: demond
Replies: 5
Views: 4394

nice going there demond
by greenbear
Fri Jul 08, 2005 11:49 pm
Forum: Archive
Topic: need help with an auto kickban script
Replies: 14
Views: 5766

search the Tcl Archive for repeat
by greenbear
Fri Jul 08, 2005 5:20 pm
Forum: Archive
Topic: egghttp again
Replies: 1
Views: 1570

I posted it here.
by greenbear
Fri Jul 08, 2005 5:19 pm
Forum: Script Support & Releases
Topic: tvprog.tcl - even more tv stuff (!today and !tomorrow)
Replies: 7
Views: 11138

tvprog.tcl - even more tv stuff (!today and !tomorrow)

############################################ # tvprog.tcl v0.1 by greenbear at gmail.com # # Parse the tv-program for today and # tomorrow from thefutoncritic.com. # # Enable with .chanset #channel +tv # bind pub - !today pub:tfctoday bind pub - !tomorrow pub:tfctomorrow if ![info exists egghttp(ve...
by greenbear
Fri Jul 08, 2005 4:48 pm
Forum: Archive
Topic: bot auto op wont work
Replies: 25
Views: 9445

it should be '$::botnick', not 'botnick' in that code you just posted
by greenbear
Fri Jul 08, 2005 10:42 am
Forum: Archive
Topic: Rehashing the bot displays nothing?
Replies: 1
Views: 1391

check your console flags (type .console) ..the default flags are something in the line of +mkcobxs ...
by greenbear
Thu Jul 07, 2005 7:01 pm
Forum: Script Support & Releases
Topic: tv.com.tcl - parses tonights tv shows from tv.com
Replies: 12
Views: 11443

tv.com.tcl - parses tonights tv shows from tv.com

Show what's on tv tonight ############################################ # tv.com.tcl v0.2 by greenbear at gmail.com # # Parses tonights tv shows from tv.com # # Enable with .chanset #channel +tv # # offset to EST # 6 hours makes sense for CET (Europe) set tvoffset 6 bind pub - !tonight pub:tv.com if ...
by greenbear
Thu Jul 07, 2005 4:23 pm
Forum: Archive
Topic: /msg
Replies: 10
Views: 4317

you could just parse the text to any chan $nick is in

Code: Select all

foreach chan [channels] {
 if [onchan $nick $chan] {
  putserv "PRIVMSG $chan :$nick msg'ed me saying: $text."
 }
}
by greenbear
Thu Jul 07, 2005 12:44 pm
Forum: Archive
Topic: Some problems in modified LoL TooL'z
Replies: 4
Views: 2265

change all entries of [hand] to \[hand\]
by greenbear
Thu Jul 07, 2005 10:05 am
Forum: Script Support & Releases
Topic: SpamScan
Replies: 15
Views: 27368

or you can use this if you want to find a url inside a string and dont want to use a regexp longer than your arm..

Code: Select all

regexp -nocase {((http|ftp)://[^\s]+)} $text url