eggdrop icon indicating copy to clipboard operation
eggdrop copied to clipboard

Bind RAWT make nick trace inconsistent

Open BigBadWouf opened this issue 1 year ago • 3 comments

Hi.

I don't know if is a real issue. I'm running eggdrop 1.10.0 with python.

In a script i have something like this : joinEvnt = bind("rawt", "*", "JOIN", nickJoin) nickEvnt = bind("nick", "*", "*", nickChange) With the two functions : def nickJoin(mask, keyword, text, tag): def nickChange(nick, mask, hand, channel, newnick):

With the RAWT bind active, the channel parameter of NICK bind is randomly "*" and onchan(nick) always return 0, like if user disappears. Or, when channel is accessible, the bind is not trigger for all channels.

I've tried to just return 0 in nickJoin, but same results. It's work only if RAWT bind is completely disabled. Another thing is, when channel is "*", the nick change is not logged in ./eggdrop -n Same with RAW instead of RAWT.

Not tested in TCL

EDIT: For information, eggdrop is running on channels with 1000+ users

BigBadWouf avatar Oct 28 '24 17:10 BigBadWouf

I've tried something like :

def nickJoin(mask, keyword, text): if keyword == 'JOIN': [...] elif keyword == 'NICK':

In this case onchan(nick) or onchan(newnick) return always 0

BigBadWouf avatar Oct 28 '24 17:10 BigBadWouf

Could be (partly) fixed by #1604.

michaelortmann avatar Jan 29 '25 00:01 michaelortmann

Hi @BigBadWouf , are you still having this issue with 1.10.1? If you are, could you please include some logs showing the issue as it occurs in the partyline?

If you were able, it would be great to try a few more interactive troubleshooting options if you join #eggdrop on Libera. Thanks for reporting, and thanks for trying the python module!

vanosg avatar Oct 24 '25 18:10 vanosg