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 Sep 06, 2010 8:07 pm
Forum: Scripting Help
Topic: Scan log for changes and process (events)
Replies: 4
Views: 3570

Code: Select all

set fs [open "|tail -f file.log"]
fconfigure $fs -blocking 0 -buffering line
fileevent $fs readable [list output $fs]
proc output {fs} {putserv "privmsg #chan :[gets $fs]"}
by greenbear
Mon May 22, 2006 5:00 pm
Forum: Eggdrop Help
Topic: user password
Replies: 1
Views: 2980

Just set a password when you add someone
.chpass <handle> [password]
by greenbear
Tue May 16, 2006 5:43 pm
Forum: Scripting Help
Topic: Read/Write to txt - Tutorial ??
Replies: 5
Views: 5634

I think he ment this thread in the FAQ section: Basic File Operations
by greenbear
Tue May 16, 2006 5:36 pm
Forum: Eggdrop Help
Topic: other channel [solved]
Replies: 3
Views: 3830

Try and change your console channel to the new chan before checking for bans.
.console #channel
by greenbear
Fri Dec 30, 2005 3:27 pm
Forum: Other Topics
Topic: Merry Christmas & Happy new year
Replies: 8
Views: 5618

Godt nytt år (Happy New Year) :lol:
by greenbear
Thu Dec 22, 2005 12:04 am
Forum: Eggdrop Help
Topic: Eggdrop and shell
Replies: 4
Views: 9359

Try and enable the 'check-stoned' setting in your config, the bot should figure out for itself when it's disconnected then.
by greenbear
Mon Dec 19, 2005 12:50 pm
Forum: Scripting Help
Topic: Problem with mysql and wildcards
Replies: 6
Views: 10094

mysql use % as wildcard, not *
by greenbear
Wed Oct 26, 2005 10:58 am
Forum: Eggdrop Help
Topic: Chance Eggdrop NickName in Telnet?
Replies: 7
Views: 23272

You also have to be a perm owner to use the .set and .tcl commands.
Set with 'set owner' in the config file.
by greenbear
Mon Oct 17, 2005 11:09 am
Forum: Archive
Topic: Store selected information.
Replies: 2
Views: 11125

yea this is sooooo related to eggdrop
by greenbear
Sun Oct 16, 2005 2:05 pm
Forum: Archive
Topic: SSL connecting Problem.
Replies: 1
Views: 10726

did you add 'set use-ssl 1' to your config file ?
by greenbear
Wed Oct 12, 2005 3:23 pm
Forum: Archive
Topic: matching capped nicks
Replies: 8
Views: 18377

Returns 1 if it starts with a capital letter or a number, 0 if doesnt.

Code: Select all

proc firstup {var} {
 set first [string range $var 0 0]
 if {![string isupper $first] && ![string is digit $first]} {
  return 0
 } {
  return 1
 }
}
by greenbear
Mon Oct 10, 2005 11:29 am
Forum: Archive
Topic: echo off
Replies: 15
Views: 23089

.console -c
by greenbear
Sat Oct 08, 2005 2:28 pm
Forum: Eggdrop Help
Topic: make: Permission denied
Replies: 18
Views: 21722

I've never encountered that problem either, just refering to what I've seen other people say about it.

http://eggheads.org/pipermail/eggdev/20 ... 25437.html
http://forum.egghelp.org/viewtopic.php?t=7590
by greenbear
Sat Oct 08, 2005 10:14 am
Forum: Eggdrop Help
Topic: make: Permission denied
Replies: 18
Views: 21722

try using gmake instead of make.
and yea, that cd . thing came up as a workaround on one of the eggdev mailinglists (or bugzilla, cant remember) a while a go.
by greenbear
Fri Oct 07, 2005 1:44 pm
Forum: Script Support & Releases
Topic: tvprog.tcl - even more tv stuff (!today and !tomorrow)
Replies: 7
Views: 11004

so you get to ask stupid questions