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
Thu May 12, 2005 10:37 am
Forum: Archive
Topic: Banmask problem
Replies: 9
Views: 3116

if strict-host is set to 0, maskhost will return *!*ident@host
by greenbear
Tue May 10, 2005 10:30 pm
Forum: Archive
Topic: Major newbie help with IF statements
Replies: 3
Views: 1443

you're overwriting your var every time there's a match, use append/lappend to append (doh) it to your var.
by greenbear
Tue May 10, 2005 2:28 pm
Forum: Archive
Topic: Eggdrop not connecting to the Server.
Replies: 7
Views: 3534

try adding more than one irc-server in your config
by greenbear
Tue May 10, 2005 2:26 pm
Forum: Archive
Topic: one more 'basic' question on this
Replies: 14
Views: 3512

that doesnt direclty relate to this topic, so keep it out of the faq section.
by greenbear
Tue May 10, 2005 10:15 am
Forum: Archive
Topic: Some help on arrays
Replies: 8
Views: 2245

daltonc wrote:missing close-brace: possible unbalanced brace in comment
Most likely you have a commented line (one of those with a # in front ;) ) somewhere else in the script, that you didnt paste here.
by greenbear
Tue May 10, 2005 10:13 am
Forum: Archive
Topic: +dk problem
Replies: 5
Views: 3040

you can also 'set strict-host 0' in your config file, and the bot wont care about ~'s
by greenbear
Mon May 09, 2005 5:43 pm
Forum: Modules & Programming
Topic: eggdop / mysql
Replies: 1
Views: 7862

by greenbear
Mon May 09, 2005 5:41 pm
Forum: Archive
Topic: one more 'basic' question on this
Replies: 14
Views: 3512

set fname "/iptab" set fp [open $fname "r"] set data [read -nonewline $fp] close $fp set lines [split $data "\n"] set linenum 0 foreach line $lines { if [string match -noc "*iptables -A OUTPUT -o \$internet -p tcp*" $line] { set lines [lreplace $lines $linenu...
by greenbear
Mon May 09, 2005 10:14 am
Forum: Archive
Topic: one more 'basic' question on this
Replies: 14
Views: 3512

Code: Select all

if [string match "iptables -A OUTPUT -o \$internet -p tcp" $line] { # it's a match, delete..
by greenbear
Mon May 09, 2005 10:02 am
Forum: Archive
Topic: Connect Windrop through proxy
Replies: 1
Views: 1055

it's set in the "more advanced settings" section in eggdrop.conf
by greenbear
Sun May 08, 2005 3:44 pm
Forum: Archive
Topic: Socket errors ...
Replies: 7
Views: 1960

I agree with ^DooM^. I dont see any legal reasons why anyone would need a irc frontend to make sure a list of ftp sites are online.
by greenbear
Sun May 08, 2005 11:51 am
Forum: Archive
Topic: bind time
Replies: 5
Views: 1881

strftime to the rescue

Code: Select all

if ![string match [strftime %a] "Sun"] return
by greenbear
Fri May 06, 2005 7:09 pm
Forum: Tcl FAQ
Topic: "Tip of the day"
Replies: 73
Views: 223499

get rid of the redundant braces, and it'll be even easier to read :roll:

Code: Select all

if [botisop $chan] {
 if {$nick == "bla"} {
  pushmode $chan +v $nick
 }
}
by greenbear
Fri May 06, 2005 7:01 pm
Forum: Archive
Topic: on/off script
Replies: 8
Views: 3140

a one liner, using a custom channel setting (ie. +/-badword) would also work..
by greenbear
Fri May 06, 2005 6:58 pm
Forum: Archive
Topic: String Help
Replies: 12
Views: 2985

oops, and this is why I shouldn't post code at 6am.. :oops: