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

by baerchen
Fri Oct 13, 2006 7:23 am
Forum: Scripting Help
Topic: [SOLVED] 1.6.18 chokes on help file
Replies: 0
Views: 2347

[SOLVED] 1.6.18 chokes on help file

I'm trying to write a .help file for my script, but I run into problems: ".help chatstats" display all available commands fine. ".help <command>" works only for a few commands (show, change, merge, delete, freeze, unfreeze) for all others eggdrop says "No help available on t...
by baerchen
Thu Oct 12, 2006 9:45 am
Forum: Eggdrop Help
Topic: Channel logging isn't logging chat
Replies: 22
Views: 12163

nml,

thanks for the clarification. I'll add "return 0" and hope to get rid of that .. :-)

Baerchen
by baerchen
Thu Oct 12, 2006 9:44 am
Forum: Eggdrop Help
Topic: Channel logging isn't logging chat
Replies: 22
Views: 12163

Oliver341, unless nml confirms my last posting, I'm not sure I really understood the whole issue. However, once I did it should be no problem to fix that. Unfortunately I cannot remember your suggestion, but having a brain like a sieve, that doesn't mean much. Additionally, my mail archive from that...
by baerchen
Wed Oct 11, 2006 11:11 pm
Forum: Eggdrop Help
Topic: Channel logging isn't logging chat
Replies: 22
Views: 12163

Thanks nml375. In other words, any condition that will not run the proc to its end has to be returned 1 in order to make eggdrop log the PUBM. Example: foreach e $cs(dont) {if {[lsearch $t *$e*] > -1} {return}} should then be foreach e $cs(dont) {if {[lsearch $t *$e*] > -1} {return 1}} Is that corre...
by baerchen
Wed Oct 11, 2006 5:39 pm
Forum: Eggdrop Help
Topic: Channel logging isn't logging chat
Replies: 22
Views: 12163

Speaking for the "latest" version (which is four years old), the script does not "return 1" in its entire code. Nor does it "return $c". In particular not in cs:count, which is its only PUBM associated proc. Furthermore, I don't see why it should "return 1" in...