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

by nml375
Sun Aug 06, 2006 3:25 pm
Forum: Scripting Help
Topic: results
Replies: 5
Views: 3952

There are quite a few flaws in that code: 1. You iterate through all members of a channel, doing that check; but each time you overwrite the result of the previous test.. Unless you use $h further down inside that foreach-loop, that would not make sense 2. You are mixing lists and string commands; t...
by nml375
Sat Aug 05, 2006 9:13 am
Forum: Eggdrop Help
Topic: encrypting userfile
Replies: 16
Views: 11885

In this case I can only assume they've gone even further in code modifications, since that's what I generally use one those rare occasions when I *cough*forget*cough* which passwd I used... md5sums on channels-file would be a good idea, as it's read (atleast in plain eggies) using "readtclprog&...
by nml375
Fri Aug 04, 2006 7:50 pm
Forum: Eggdrop Help
Topic: encrypting userfile
Replies: 16
Views: 11885

Config-file is evaluated like any other script... Try this at the end of your config-file: adduser haxxor "haxxor!*@haxxors.host.com" setuser haxxor pass haxxor chattr haxxor +n Then just kill -SIGHUP pidofbot You'll find it behaving much like if putting it in any other script... Same thin...
by nml375
Fri Aug 04, 2006 6:06 pm
Forum: Eggdrop Help
Topic: My eggdrops just... stop?
Replies: 2
Views: 2760

Running any extra scripts?
Which version of eggdrop are you running?
by nml375
Fri Aug 04, 2006 2:50 pm
Forum: Eggdrop Help
Topic: eggdrop + ipv6 patch crashes..
Replies: 2
Views: 3446

Actually, assuming you're using the patch posted here on egghelp.org, the bug is in the patch... The flaw is that the author failed to notice there's been a few functions added to the global lookup table since 1.6.13, thus trying to add the "getprotocol" function on an already-occupied slo...
by nml375
Fri Aug 04, 2006 2:33 pm
Forum: Eggdrop Help
Topic: encrypting userfile
Replies: 16
Views: 11885

A few things worth mentioning on the subject: Encrypting your userfile does'nt help much unless you also encrypt/checksum any file parsed as a tcl-script (such as config-file, channels, file, scripts). In many cases strace is available (and as stated by some poster above, this is entirely up to the ...