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 Oct 05, 2005 7:46 pm
Forum: Archive
Topic: i have problem with eggdrop1.6.17
Replies: 3
Views: 7353

first
rm -rf /home/eyal/eggdrop
then start over
by greenbear
Wed Sep 21, 2005 12:51 pm
Forum: Archive
Topic: Clones+users plz help fast
Replies: 12
Views: 12449

.help
by greenbear
Sun Sep 11, 2005 1:36 pm
Forum: Archive
Topic: Faq-Script help
Replies: 10
Views: 7677

clever, never thought of that :o
by greenbear
Sun Sep 11, 2005 1:01 pm
Forum: Archive
Topic: Faq-Script help
Replies: 10
Views: 7677

You can't have both a msg and a pub bind pointing to the same proc, so unload the one you don't want, or if you need both, use different proc names.
by greenbear
Sun Sep 11, 2005 12:56 pm
Forum: Archive
Topic: Faq-Script help
Replies: 10
Views: 7677

You still have that msg bind pointing to the same proc name.

You also forgot the : in the putserv msg's.
by greenbear
Sun Sep 11, 2005 12:47 pm
Forum: Archive
Topic: Faq-Script help
Replies: 10
Views: 7677

Code: Select all

bind pub - !faq faq
proc faq {n u h c t} {
 putserv "PRIVMSG $n :<message goes here>"
}
by greenbear
Sun Sep 11, 2005 11:29 am
Forum: Archive
Topic: Faq-Script help
Replies: 10
Views: 7677

msg binds only have 4 args, not 5, in the form of: 'nick userhost handle text'.

Code: Select all

bind msg - !faq faq
proc faq {n u h t} {
 putserv "PRIVMSG $n :<message goes here>"
}
by greenbear
Sat Sep 10, 2005 10:53 pm
Forum: Script Support & Releases
Topic: Tv.com tv show info grabber?
Replies: 43
Views: 55642

.chanset #channel +tv
by greenbear
Fri Sep 09, 2005 3:25 pm
Forum: Script Requests
Topic: !stats nick
Replies: 3
Views: 5667

package require http bind pub - !stats foo proc foo {n u h c a} { set nick [lindex [split $a] 0] if {$nick!=""} { set data [::http::geturl http://torrentelite.com/ircstats.php?search=$nick] foreach line [split [::http::data $data] \n] { putserv "PRIVMSG $c :$line" } ::http::clea...
by greenbear
Sun Sep 04, 2005 2:09 pm
Forum: Script Support & Releases
Topic: imdb-1.1.0.tcl help please
Replies: 303
Views: 382591

.chanset #channel +imdb
by greenbear
Fri Sep 02, 2005 11:43 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 216393

Modular sounds good. That have always been my objection against the all-in-one type scripts. I really dont want 10 types of flood protection when maybe only 2-3 of them apply to my channel/situation.
by greenbear
Tue Aug 30, 2005 1:45 pm
Forum: Script Support & Releases
Topic: badrealname bug
Replies: 29
Views: 44282

grouphug ?
by greenbear
Tue Aug 30, 2005 1:22 pm
Forum: Archive
Topic: Listening to socket
Replies: 11
Views: 7558

just use control

Code: Select all

set relayport [listen 4567 script foo]
set relaychan #channel

proc foo idx {
 control $idx bar
}

proc bar {idx var} {
 putserv "PRIVMSG $::relaychan :$var"
}
by greenbear
Mon Aug 29, 2005 1:28 pm
Forum: Archive
Topic: Weird characters in DCC chat session for .help
Replies: 1
Views: 2956

.fixcodes
to fix the weird chars, and
.chanset #Deleted -statuslog
to turn off the statuslog..