Bind RAWT make nick trace inconsistent
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
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
Could be (partly) fixed by #1604.
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!