Pessoal to criando um bot pro meu amigo pro canal de lives dele segue o codigo
const tmi = require('tmi.js');
Aleatorio = ('Oi')
const client = new tmi.Client({
options: { debug: true },
identity: {
username: 'BOOT',
password: 'OCULTA'
},
channels: ['FokaJoga']
});
client.connect();
client.on('message', (channel, tags, message, self) => {
if (self || !message.startsWith('!')) return;
if (message == '!Debug') {
console.say(channel, Aleatorio)
o problema q quando eu mando ele escrever no chat ele crasha alguem ae consegue me dar uma solucao porfavor ?