kiwiirc / irc-framework

🛠️ A better IRC framework for node.js. For bots and full clients.
MIT License
180 stars 62 forks source link

how do I ignore a list of nicks? #365

Closed ralyodio closed 6 months ago

ralyodio commented 1 year ago

I want to ignore output from other bots given a list of bot nicks.

How can I do this?

ItsOnlyBinary commented 1 year ago

This is something you would need to write yourself in your handlers or as a middleware.

I suggest using an object to store the nicks as keys in lowercase to prevent duplicates and make for quick checking and removal.

ralyodio commented 1 year ago

can you give me an example middleware? I am using matchMessage everywhere, but I don't know how to plugin a middleware to it.

ItsOnlyBinary commented 1 year ago

https://github.com/kiwiirc/irc-framework/blob/master/examples/bot.js#L28