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 2978 matches

by demond
Sat Sep 02, 2006 11:21 pm
Forum: Eggdrop Help
Topic: "make" command
Replies: 2
Views: 2810

your shell admin must fix that
by demond
Sat Sep 02, 2006 11:16 pm
Forum: Eggdrop Help
Topic: Eggdrop SSL Linking
Replies: 6
Views: 4998

I doubt there are any, at least not publicly available The only purpose of such patch would obviously be to prevent third parties from sniffing and hijacking botnet communications, which only makes sense for takeover botnets, and such botnets are out of fashion these days when virtually all networks...
by demond
Sat Sep 02, 2006 2:17 pm
Forum: Script Requests
Topic: Deop Script
Replies: 17
Views: 10126

Code: Select all

bind mode - {#yourchan +o} foo
proc foo {n u h c m v} {
   if {[isbotnick $v]} {
      putserv "mode $c -o+v $v $v"
   }
} 
by demond
Sat Sep 02, 2006 12:19 pm
Forum: Script Requests
Topic: Deop Script
Replies: 17
Views: 10126

Code: Select all

bind mode - +o foo
proc foo {n u h c m v} {
   if {[string eq -noc $v $::botnick]} {
      putserv "mode $c -o+v $::botnick $::botnick"
   }
}
by demond
Fri Sep 01, 2006 8:26 pm
Forum: Script Requests
Topic: Simple responder for eggdrop
Replies: 7
Views: 4691

if you need a script that scans for and catches private (and public) spammers, use xchannel
by demond
Fri Sep 01, 2006 8:23 pm
Forum: Script Requests
Topic: AFP ...sorta
Replies: 4
Views: 2926

how do you detect that particular kind of drones?
by demond
Thu Aug 31, 2006 2:22 am
Forum: Eggdrop Help
Topic: IPV6
Replies: 20
Views: 24623

I thought IPv6 was pretty popular on IRC... wonder why its taking so long. I wish it was built-in to eggdrop. It is, in 1.9. really? how reassuring, given the pace of development Yes, IPv6 is popular on IRC, but rather on lame (right demond?) IRCnet. well, yeah, in a sense, although I would rather ...
by demond
Wed Aug 30, 2006 11:56 am
Forum: Eggdrop Help
Topic: IPV6
Replies: 20
Views: 24623

I thought IPv6 was pretty popular on IRC... wonder why its taking so long. I wish it was built-in to eggdrop. no it's not; there's only a handful of ipv6-enabled servers scattered over the networks there are many issues with the transition from ipv4 to ipv6, so don't expect this to find its way in ...
by demond
Wed Aug 30, 2006 12:57 am
Forum: Script Requests
Topic: Cmd in psybnc $partyline ?
Replies: 6
Views: 4011

you need to login to remote bot(s) first by simply typing .rc bot (or .rc * to log into all bots simultaneously)

and please direct further postings on the rconsole subject to script's support thread:

http://forum.egghelp.org/viewtopic.php?t=10023
by demond
Wed Aug 30, 2006 12:48 am
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 256141

from UTF-8 encoded feeds, I could only support the extended ASCII (128-255) characters

perhaps I'll implement that
by demond
Tue Aug 29, 2006 11:58 pm
Forum: Scripting Help
Topic: badnick with database problem
Replies: 2
Views: 3099

you haven't tried hard enough (looking up the forum for solution); if you had, you'd find my countless HOWTOs on the subject, which essentially say that you need to: (1) open the file on loading the script, (2) read the entire contents into memory (list) and then close the file, (3) manipulate that ...
by demond
Tue Aug 29, 2006 12:54 pm
Forum: Script Support & Releases
Topic: RSS news by demond
Replies: 175
Views: 256141

no, sorry, I don't like URL cluttering over IRC channels

you can patch that yourself, with minimal Tcl knowledge
by demond
Tue Aug 29, 2006 12:40 am
Forum: Script Support & Releases
Topic: Universal channel script
Replies: 224
Views: 220222

actually you don't need the files if you aren't going to use badword or/and whois protection; perhaps I should change the load error message to simple warning, as it's non-fatal, just informative

I'll code in something like .xfile <add|del|list> <bad|whois> [word|pattern]
by demond
Mon Aug 28, 2006 1:51 am
Forum: Script Requests
Topic: Cmd in psybnc $partyline ?
Replies: 6
Views: 4011

by demond
Sun Aug 27, 2006 5:17 am
Forum: Scripting Help
Topic: tcl help :)
Replies: 3
Views: 3999

one would think that in those 2 years you would have read tcl-commands.doc and paid a little more attention to BIND MODE (not to mention learning how to post code)