Skip to main content


Is it possible to write an #IRC bot that create chatrooms and virtual user DMs? :3
#IRC
in reply to Neil E. Hodges

Can an #IRC #bot impersonate users? As in, I'd like said "virtual" users to be able to be messaged directly (/msg), without needing to have the bot log in as each of them.
#bot #IRC
in reply to Neil E. Hodges

afaik not, that would kinda break some core protocol ideas. Why tho?
in reply to mirek kratochvil

I can't speak for the terms of service of the servers, but if your single bot multiplexes over multiple connections it could theoretically do this with the irc protocol, but otherwise i am not aware of other ways to do this. been a while since i wrote irc protocol clients
This entry was edited (3 days ago)
in reply to KFO̸UNK

@exa
I'm not trying to make any value statement on the idea of doing this, just I think this would be the only way to accomplish that and technically possible
in reply to KFO̸UNK

@KF0UNK yeah running connection for each nick will ofc work (at least until you hit some random spam protection limit or so) but that might not scale easily
in reply to mirek kratochvil

@exa
I was unclear if a lot of chanels would work too.

I would not recommend either of those on public servers, but they aren't technically challenging.

in reply to Neil E. Hodges

Kind of seems like I could write an IRC leaf server in Python, while a "normal" IRC server is the hub.