EldinZenderink / SimpleIRCLib

A lightweight, simple to use and implement, IRC library with support for DCC download (no upload)
MIT License
14 stars 14 forks source link

NICKSERV IDENTIFY #5

Closed AMONRA75 closed 7 years ago

AMONRA75 commented 7 years ago

hi,

how indentify to NICKSERV?

irc command is ---> "/msg NickServ IDENTIFY password"

best regards

EldinZenderink commented 7 years ago

For now its not yet possible... the user cant send / messages, I think I might add a way to create those commands yourself. There are more missing commands. Will also add a way to play with the raw data. I will do it tomorrow so check back by then ^^.

EldinZenderink commented 7 years ago

Right, as said, I have made it possible to send /msg messages. So NickServ should work. Added also support for NOTICE messages, it's now being parsed just like PRIVMSG messages, output looks like: NickServ: bla bla bla. If you need anything else more specific, you can send raw messages to the server with the sendRawMessage function. You can add a callback for the raw server output if the return message of the server does not contain PRIVMSG or NOTICE. See ReadMe for more about that.

AMONRA75 commented 7 years ago

great! i try this tnx a lot!