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 05, 2005 11:50 pm
Forum: Archive
Topic: String Help
Replies: 12
Views: 2949

bind pub - !parse parse:string proc parse:string {nick uhost hand chan text} { set string "a:b :: b :: c :: d ::" set string [string map {"::" "~"} $string] set type 0 foreach s [split $string ~] { if !$type { lappend out \00302$s set type 1 } { lappend out \00304$s se...
by greenbear
Wed May 04, 2005 8:52 pm
Forum: Archive
Topic: /CTCP CHAT problem
Replies: 13
Views: 4976

buckley wrote:I'm having the same sort of problem but I get this,
[7:30pm] -> [thisbot] CHAT
[thisbot ERROR reply]: no telnet port
You didnt specify a listen port in your config file

Uncomment/edit this line
#listen 3333 all
by greenbear
Wed May 04, 2005 8:46 pm
Forum: Archive
Topic: rss reader for older tcl library?
Replies: 4
Views: 2789

I could be wrong, but didn't tcl8.3 have some language/unicode related probems ?
by greenbear
Wed May 04, 2005 8:42 pm
Forum: Archive
Topic: is there nforce announce script?
Replies: 4
Views: 3053

Just by looking at their frontpage, i see they have something called "Bots Back-End" and a rss feed. So you're probly better off trying to parse those..
by greenbear
Wed May 04, 2005 8:38 pm
Forum: Archive
Topic: need a bit of advice please
Replies: 6
Views: 2885

the easiest way to add support for multiple chans is to make a channel setting out of it, ie.

Code: Select all

setudef flag scheck

proc do_the_s_check {off nick uhost hand chan args} {
 if ![channel get $chan scheck] return
 ....

then just use .chanset #chan +/-scheck to enable or disable it.
by greenbear
Thu Apr 28, 2005 10:23 am
Forum: Archive
Topic: You aren't +o in my userlist for #ut.ww, sorry.
Replies: 2
Views: 1969

Could be you dont share channel info. make sure you added the other bot with botflag +g on both bots.

Look here for more info.
by greenbear
Fri Apr 22, 2005 7:09 pm
Forum: Archive
Topic: limiting command user per users/user
Replies: 7
Views: 3668

ya, i like the idea of a daily max limit better too.

another benefit with using xtra fields is that you can show the info on whois/.match real easy.
by greenbear
Fri Apr 22, 2005 5:19 pm
Forum: Eggdrop Help
Topic: eggdrop 1.9
Replies: 11
Views: 21881

Eggdrop 1.9 is still in early development, and will be released as eggdrop2.0 when it's done. Here's what the dev's say about it: Feel free to check it out and explore -- however, at this point in time it is not ready for anything other than development. Unless you have a handle on program developme...
by greenbear
Fri Apr 22, 2005 10:18 am
Forum: Archive
Topic: eggdrop configuration for ircstats
Replies: 4
Views: 2590

You can enable it in your config file
set keep-all-logs 1
by greenbear
Thu Apr 21, 2005 3:29 pm
Forum: Archive
Topic: eggdrop auto-deop specific person?
Replies: 3
Views: 2205

add him to the bot and give him the +d flag
by greenbear
Thu Apr 21, 2005 11:41 am
Forum: Archive
Topic: limiting command user per users/user
Replies: 7
Views: 3668

I was mostly making suggestions to De Kus' script But I suppose something like this will work if you want to reset something once a week bind time - "00 00 *" whatdayisit proc whatdayisit {mi hr da mo yr} { if {[strftime %a]=="Mon"} { foreach u [userlist -b] { setuser $u XTRA cou...
by greenbear
Thu Apr 21, 2005 9:36 am
Forum: Archive
Topic: limiting command user per users/user
Replies: 7
Views: 3668

you could save the info to the XTRA field in the userlist, that way you get away with alot less code. (assuming only known users can execute commands.)
by greenbear
Thu Apr 21, 2005 9:22 am
Forum: Archive
Topic: String Help
Replies: 12
Views: 2949

bind pub - !parse parse:string proc parse:string {nick uhost hand chan text} { set string "a:b :: b :: c :: d ::" set type 0 foreach s $string { if ![string match :: $s] { if !$type { lappend out \00302$s set type 1 } { lappend out \00304$s set type 0 } } } putserv "PRIVMSG $chan :[j...
by greenbear
Wed Apr 20, 2005 9:08 pm
Forum: Other Topics
Topic: Avatar Upload not working
Replies: 4
Views: 3396

I'm also having problems searching for posts made by myself, username gb. it always return no hits at all.
by greenbear
Wed Apr 20, 2005 9:01 pm
Forum: Archive
Topic: String Help
Replies: 12
Views: 2949

hmm, good point, maybe something like this then.. bind pub - !parse parse:string proc parse:string {nick uhost hand chan text} { set string "a:b :: b :: c :: d ::" foreach s $string { if ![string match :: $s] {lappend out $s} } putserv "PRIVMSG $chan :[lrange $out 2 e]" # use thi...