Files
chatrd/js/sb.js
Rodrigo Emanuel 48c6dfc6f4 Full Reset
2025-07-25 22:26:24 -03:00

25 lines
583 B
JavaScript

/* ----------------------- */
/* STREAMER.BOT CONNECTION */
/* ----------------------- */
const streamerBotServerAddress = "127.0.0.1";
const streamerBotServerPort = "8080";
const streamerBotClient = new StreamerbotClient({
host: streamerBotServerAddress,
port: streamerBotServerPort,
onConnect: (data) => {
console.log(`Streamer.bot successfully connected!`)
console.debug(data);
notifySuccess({
title: 'Connected to Streamer.bot',
text: ``
});
},
/*onDisconnect: () => {
console.error(`Streamer.bot disconnected`);
}*/
});