Open ronilaukkarinen opened 1 year ago
i have the same problem, i've already register the nick for the bot, how can i make the bot identify to irc server ?? the command the server use is /ns identify passwd to identify the nickname
:irc.bajubesi.com.my 451 ChatGPT :You have not registered
:irc.bajubesi.com.my 451 ChatGPT :You have not registered
:irc.bajubesi.com.my 451 ChatGPT :You have not registered
Thanks for that, I will look into this.
This fixed it for me
if data:
print(data)
# Handle PING messages
if "PING" in data:
ping_message = re.search(r'PING :(.+)', data)
if ping_message:
pong_response = "PONG :" + ping_message.group(1) + "\n"
irc.send(pong_response.encode("UTF-8"))
One tip I saw somewhere else is you can configure znc to identify with services (via SASL or however, znc supports a lot of things), and then connect the bot to znc.
I got this error as well in irc.undernet.org (in all servers and ports using 6667 and 7000).
I tried the fix recommended by klppl, but it doesn't work.
Thanks!
I got this error as well in irc.undernet.org (in all servers and ports using 6667 and 7000).
I tried the fix recommended by klppl, but it doesn't work.
Thanks!
btw, this works now, just have to "import re"
Thanks!
I got this error as well in irc.undernet.org (in all servers and ports using 6667 and 7000). I tried the fix recommended by klppl, but it doesn't work. Thanks!
btw, this works now, just have to "import re"
Thanks!
Can you share config file please? I have tired but for me doesn't work. Thanks
I got this error as well in irc.undernet.org (in all servers and ports using 6667 and 7000). I tried the fix recommended by klppl, but it doesn't work. Thanks!
btw, this works now, just have to "import re" Thanks!
Can you share config file please? I have tired but for me doesn't work. Thanks
I got this error as well in irc.undernet.org (in all servers and ports using 6667 and 7000). I tried the fix recommended by klppl, but it doesn't work. Thanks!
btw, this works now, just have to "import re" Thanks!
Can you share config file please? I have tired but for me doesn't work. Thanks
Thanks a lot but i got the same problem.
Connecting to: pipera.ro.eu.undernet.org Connected to: pipera.ro.eu.undernet.org NOTICE AUTH :*** Looking up your hostname
NOTICE AUTH : Checking Ident PING :1318381958 :Pipera.RO.EU.Undernet.Org 451 cyberguy cyberguy :Register first. NOTICE AUTH : Got ident response
Connection lost. Reconnecting... Connecting to: pipera.ro.eu.undernet.org Connected to: pipera.ro.eu.undernet.org NOTICE AUTH : Looking up your hostname NOTICE AUTH : Checking Ident PING :2729307785 :Pipera.RO.EU.Undernet.Org 451 cyberguy cyberguy :Register first. NOTICE AUTH :*** Got ident response
I have to learn more python :)
It works, i forgot to import re :)) Thanks a lot
Any ideas?