You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
innickJoin
, 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
The text was updated successfully, but these errors were encountered: