moshmage

Results 35 comments of moshmage

[And as per the RFC](https://tools.ietf.org/html/rfc2812#section-2.3.1) Nicknames can't start with numbers, only letters or special chars [which I'm not certain of which] `nickname = ( letter / special ) *8( letter...

I gather we could make the check in [#925](https://github.com/Protected/node-irc/blob/b87def729fd0269dbe8d33b4e05cd6ccff3cae9e/lib/irc.js#L925) and make a return early - other than that 👍

@sh1omi you don't need to use a fork to hook to a already existing event, ffs. @paladox try hooking on the `nick` event, check if the `old_nick` is your configured...

``` { "server": "irc.gitter.im", "nick": "moshmage", "channels": ["#yanbi/Lobby"], "port": 6667, "secure": true, "password": "*" } ``` `secure` instead of `sasl`

It's on a todo list https://github.com/martynsmith/node-irc/blob/master/lib/irc.js#L543 and then it breaks without emiting the event.

Could you.. rewrite your question? We got lost in translation :)

Sorry. Some pseudo-code of what you're trying to accomplish would make it easier for me to understand.

Ok. i get what you're trying to do now; You want to _listen_ to a message only _after_ another one has been sent, correct? If yes, then you have to:...

are the 5 bots connecting "at the same time" ? as in, can it be that the server might be protecting itself from a connection flood?

In that case, there's something wrong with either the installation of node, or something. As in: IF the code works on one machine but not the other, usually means some...