Is it possible to send a message in the chat once the bot is connected to it? #471
-
Is it possible to send a message in the chat once the bot is connected to it? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You can send messages using the client.on('join', (channel, username, self) => {
if(self) client.say(channel, 'Hello, World');
}); |
Beta Was this translation helpful? Give feedback.
-
i cannot get this to work for the life of me, i think im missing something very basic. but everytime i try to send a message i get this |
Beta Was this translation helpful? Give feedback.
You can send messages using the
client.say(channel, message)
method and you can react to joining a channel with thejoin
event.