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
Sun Aug 28, 2005 4:54 pm
Forum: Archive
Topic: renaming a folder
Replies: 1
Views: 2496

Code: Select all

file rename source target
by greenbear
Sun Aug 28, 2005 12:14 pm
Forum: Archive
Topic: I need CupSearch tcl script.
Replies: 5
Views: 4519

I wouldnt be surprised if noone have scripted this thing yet.

Even though I've seen countless requests for this 'cup' thing , I've yet to see anyone give a detailed and complete description on what on earth they are talking about.
by greenbear
Sat Aug 27, 2005 11:23 pm
Forum: Archive
Topic: something like
Replies: 4
Views: 4127

Code: Select all

set url "http://website.com/"

bind pub - !trigger foo
proc foo {n u h c a} {
 set un [lindex [$split $a] 0]
 putserv "PRIVMSG $c :$::url[join $un]"
}
by greenbear
Fri Aug 26, 2005 11:29 am
Forum: Archive
Topic: clock error with tcl 8.5a3
Replies: 4
Views: 4383

Make sure the eggdrop isnt using the older version of tcl, a .status on partyline should say.

The easiest way of finding th older date is to convert them both into unixtime (clock scan) and see which one is smaller.
by greenbear
Thu Aug 25, 2005 10:05 pm
Forum: Archive
Topic: How to detect SOP (&nick) in Unreal ircd
Replies: 17
Views: 12628

isnt this what 'set opchars' is for ?
by greenbear
Thu Aug 25, 2005 12:01 am
Forum: Archive
Topic: Happy birthday eggdrop1.6.17!
Replies: 8
Views: 6427

imo, that fix for the dns module on osx is worth a version bump.
by greenbear
Wed Aug 24, 2005 4:12 pm
Forum: Script Support & Releases
Topic: Help with this script
Replies: 4
Views: 8118

Replace this line

Code: Select all

putserv "PRIVMSG $chan : $printochan" 
with

Code: Select all

foreach ch [channels] {putserv "PRIVMSG $ch : $printochan"}
by greenbear
Mon Aug 22, 2005 12:32 pm
Forum: Archive
Topic: eggdrop keeps on unbanning the bans. Please help :(
Replies: 7
Views: 5777

and you can set 'ban-time' to 0 to disable it
by greenbear
Mon Aug 22, 2005 11:02 am
Forum: Modules & Programming
Topic: mysql.mod-0.91.tar.gz help
Replies: 6
Views: 12810

I've never heard of that version, and the one over at BarkerJr is only up to v0.6..
by greenbear
Fri Aug 19, 2005 1:38 pm
Forum: Archive
Topic: need some tcl :)
Replies: 6
Views: 4552

This will change the botnick until the next rehash/restart.
For a permanent nickchange you have to manually change it in the config file.

Code: Select all

bind pub n !setnick foo
proc foo {n u h c a} {
 set nick [lindex [split $a] 0]
 set ::nick [join $nick]
}
by greenbear
Fri Aug 19, 2005 10:51 am
Forum: Archive
Topic: some regexp problems
Replies: 12
Views: 7374

You could remove everything thats not a normal char or a number from the string before doing any regexp matches on it.

Code: Select all

regsub -nocase -all {[^a-z0-9]} $line {} line
by greenbear
Thu Aug 18, 2005 6:06 pm
Forum: Archive
Topic: DCC Problems
Replies: 6
Views: 4146

.fixcodes usually solve that
by greenbear
Thu Aug 18, 2005 10:52 am
Forum: Archive
Topic: regexp problem
Replies: 15
Views: 9914

Code: Select all

regexp -nocase { .....
by greenbear
Wed Aug 17, 2005 10:39 am
Forum: Archive
Topic: Eggdrop Compile Prob
Replies: 3
Views: 3409

1.6.14 was a dud. it doesnt work for anyone.
by greenbear
Tue Aug 16, 2005 11:43 am
Forum: Archive
Topic: cleaning up the garbage
Replies: 1
Views: 2183