Untitled
unknown
plain_text
a year ago
1.9 kB
10
Indexable
Never
const tmi = require('tmi.js'), { username, channels, password } = require('./settings.json') const options = { options: { debug: true }, identity: { username: username, password: password }, channels: channels } const client = new tmi.Client(options) client.connect(); var block = false; client.on('message', (channel, user, message, self) => { // Ignore echoed messages. if(self) return; if (message.includes('forsen') || message.includes('Forsen')) { if (!block) { let array = ["kannaWOT wot","/me NaM SHUT UP WEEBS ❕", "forsenLaughingAtYou weebs", "PepegaPhone elisForsen TeaTime FORSEEEEN ! ", " Can someone explain elis to me? I watched her stream for the first time yesterday (always just seen her in clips) and she spent roughly 80-90% of the stream talking about forsen and his viewers. Is that what all his streams are? Does he not do anything else but talk about another streamer all day? ", "elisForsen TeaTime", "elisForsen TeaTime forsen", "monkaE 👉 https://i.nuuls.com/-PMyJ.png", "Same 1 picture LULW https://i.nuuls.com/QDTN6.png", " forsenPls https://youtu.be/-GEHyAfV4OI", "https://i.redd.it/9wr84ctm57w21.jpg LUL ", "amongE", "elisSmug TeaTime God Gamer", " Pepepains we'll see we'll see, the winner gets tea","Previously on lost", "Harry Potter Pepepains 🪄 ✨ ", "The tigah is in the cage! LUL","elisSmug TeaTime Doubters", "MEN VAD FAN!! elisMald ", " FITTA!!! elisMald","My life is potato", "Stop it RON", "idk kev 🤷🏻♂ ", "But first, let me take a selfie", "no, i don't think so", "good fucking morning bajs", "if you don't snus, you lose", "Pepege uhhhhhhh...", "anyways PepeHands " ] client.say(channel, `${array[Math.floor(Math.random() * array.length)]}`) block = true; setTimeout(() => { block = false; }, (5 * 1000)); } } });