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
Wed Apr 20, 2005 3:52 pm
Forum: Archive
Topic: Regular expression matching hostname ips and vhosts
Replies: 9
Views: 3548

take a look at the testip proc in alltools.tcl
by greenbear
Wed Apr 20, 2005 3:25 pm
Forum: Archive
Topic: String Help
Replies: 12
Views: 2996

Code: Select all

bind pub - !parse parse:string
proc parse:string {nick uhost hand chan text} {
 set string "a :: b :: c :: d ::"
 set out [lrange [join [split $string ::]] 2 end]
 putserv "PRIVMSG $chan :$out"
}
by greenbear
Wed Apr 20, 2005 3:18 pm
Forum: Archive
Topic: String Help
Replies: 12
Views: 2996

Code: Select all

lrange [join [split $string ::]] 2 end
by greenbear
Wed Apr 20, 2005 12:05 pm
Forum: Archive
Topic: RegSub question
Replies: 6
Views: 3953

Code: Select all

regsub -all -nocase {[^a-z]} $string {} cleanstring
by greenbear
Tue Apr 19, 2005 11:55 am
Forum: Archive
Topic: crontab.tcl ? is it possible?
Replies: 11
Views: 2980

use bind time
by greenbear
Fri Apr 15, 2005 7:34 pm
Forum: Archive
Topic: PROBLEM LINKING BOTS
Replies: 2
Views: 1351

also make sure you've loaded the share and transfer modules
by greenbear
Fri Apr 15, 2005 10:29 am
Forum: Archive
Topic: global banlist extempt possible?
Replies: 4
Views: 1560

sKy wrote:No better solution?
Don't set global bans, when you don't want them ?
by greenbear
Thu Apr 14, 2005 10:04 am
Forum: Archive
Topic: In need of HTTP parsing TCL - Will pay by PayPal
Replies: 9
Views: 4097

There's already some scripts out there thats doing something similar to this,
like SerieInfo and EPGuru and tonight.tcl.
by greenbear
Tue Apr 12, 2005 12:41 pm
Forum: Script Support & Releases
Topic: badrealname bug
Replies: 29
Views: 45381

strlwr is part of alltools.tcl
by greenbear
Mon Apr 11, 2005 3:10 pm
Forum: Archive
Topic: hello pls help me with some tcl
Replies: 4
Views: 1435

You don't need a script to do that,
on partyline type
.chanset #channel +greet
.chinfo USER <greet msg>
by greenbear
Mon Apr 11, 2005 12:04 pm
Forum: Archive
Topic: Make Join count for ALL users
Replies: 5
Views: 1925

remove it, along with the ending brace (all the way down, almost at the end of the proc)
by greenbear
Fri Mar 18, 2005 11:49 pm
Forum: Archive
Topic: eggdrop on text bot?
Replies: 12
Views: 3045

thats caused by *nix linebreaks, just use wordpad instead.
by greenbear
Fri Mar 18, 2005 11:39 pm
Forum: Archive
Topic: eggdrop on text bot?
Replies: 12
Views: 3045

they are normal text files, so notepad/wordpad will do.
by greenbear
Fri Mar 18, 2005 6:02 pm
Forum: Archive
Topic: help with quote script
Replies: 10
Views: 3248

Have a look here.
by greenbear
Fri Mar 18, 2005 5:46 pm
Forum: Archive
Topic: stats script, WAP
Replies: 9
Views: 3509

set sfile "/home/user/public_html/stats.html" set schan "#channel" bind time - "?5*" stime proc stime {mi ho da mo yr} { webstats $::schan } proc webstats c { set f [open $::sfile w] puts $f "<html><body><head>" puts $f "<title>channel stats for $c</titl...