Mail.ruПочтаМой МирОдноклассникиВКонтактеИгрыЗнакомстваНовостиКалендарьОблакоЗаметкиВсе проекты

Проблема с ботом твич javascript!!!!

Глеб Гарусин Ученик (7), на голосовании 1 год назад
Enter the bot name and message: [19:44] info: Connecting to irc-ws.chat.twitch.tv on port 443..
[19:44] info: Sending authentication to server..
[19:44] info: Connecting to irc-ws.chat.twitch.tv on port 443..
[19:44] info: Sending authentication to server..
[19:44] error: Invalid NICK.
node:internal/process/promises:289
triggerUncaughtException(err, true /* fromPromise */);
^

[UnhandledPromiseRejection: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason "Invalid NICK.".] {
code: 'ERR_UNHANDLED_REJECTION'
}

Node.js v20.4.0
Press any key to continue...
 const fs = require('fs'); 
const tmi = require('tmi.js');
const readline = require('readline');


// Чтение данных из файла
const data = fs.readFileSync('путь tokens.txt', 'utf8');
const lines = data.split('\n');

// Создание клиентов Twitch
const clients = lines.map(line => {
const [username, password] = line.split(':');

const config = {
options: { debug: true },
connection: { reconnect: true },
identity: { username, password },
channels: ['канал']
};

return new tmi.Client(config);
});

// Подключение к серверу Twitch
clients.forEach(client => {
client.connect();

client.on('connected', (address, port) => {
console.log(`Connected to ${address}:${port}`);
});
});

// Обработка команд отправки сообщений
function sendMessage(botName, channel, message) {
const client = clients.find(c => c.getUsername() === botName);

if (client) {
client.say(channel, message);
} else {
console.log(`Bot ${botName} not found`);
}
}

// Чтение ввода с консоли
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});

// Ввод сообщения и отправка в чат
rl.setPrompt('Enter the bot name and message: ');
rl.prompt();

rl.on('line', (line) => {
const [botName, ...messageParts] = line.split(' ');
const message = messageParts.join(' ');

sendMessage(botName, 'канал', message);
rl.prompt();
}).on('close', () => {
process.exit(0);
});
Голосование за лучший ответ
Semen Kapacuk Гуру (3750) 1 год назад
Ты уже все засрал тут своим ботом, надоел
Похожие вопросы