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.

is there a way to make the bot log its own channel msgs?

Old posts that have not been replied to for several years.
Locked
s
some_guy

is there a way to make the bot log its own channel msgs?

Post by some_guy »

is there a way to make the bot log its own channel msgs
just as it does for normal users?

what i have been doing in my tcl scripts is writing code to emulate
this behaviour, but its quite annoying (considering i have many scripts loaded)

what i am doing at the moment is something like <$self> $nick ...
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

If you want, you could create new putserv, putquick, and puthelp commands. Then check the message to see if it's a privmsg to a channel, log it if it is, and pass it on to the real putserv/putquick/puthelp.

Use the tcl "rename" command to rename the old commands, then create new ones in their place.
s
some_guy

Post by some_guy »

yes thanks,

but i was wondering if eggdrop has the builtin functionality to make itself log its own msgs like other users without me having to go to all this trouble...

is the answer to that no?
User avatar
stdragon
Owner
Posts: 959
Joined: Sun Sep 23, 2001 8:00 pm
Contact:

Post by stdragon »

If there was, I would have said it :)
s
some_guy

Post by some_guy »

ok :(

do you know where i can propose this feature for the next eggdrop?
p
ppslim
Revered One
Posts: 3914
Joined: Sun Sep 23, 2001 8:00 pm
Location: Liverpool, England

Post by ppslim »

I do not know if this is going to be a direct feature, but work that is being done on the complete rewrite will allow this.

Both the input and output queues are being changes so they can be edited before they reach the main processing points.

This will allow third-party addons (at least) to create outbound traffic logging, including customised statistics, and internal based traffic debugging.
Locked