Update 'node/boto.js'
This commit is contained in:
parent
b35dbaf37c
commit
d2d0164c8a
15
node/boto.js
15
node/boto.js
|
@ -482,30 +482,33 @@ client.on("slowmode", (channel, enabled, length) => {
|
|||
});
|
||||
client.on("subgift", (channel, username, streakMonths, recipient, methods, userstate) => {
|
||||
let senderCount = ~~userstate["msg-param-sender-count"]; // IDK
|
||||
client.say(channel, `/me Thank you for supporting The Sarimoko Show with Gift-Subs!`);
|
||||
client.say(channel, username `gifted` recipient `a Gift-Sub! Thank for the support & sharing the emote spam!`);
|
||||
client.say(channel, `!kappagen sarimoKO sarimoNERD`);
|
||||
});
|
||||
client.on("submysterygift", (channel, username, numbOfSubs, methods, userstate) => {
|
||||
let senderCount = ~~userstate["msg-param-sender-count"]; // IDK
|
||||
client.say(channel, `/me BLEEP! BLOOP! Am I getting hacked? Anon just Gift-Subbed! If I get erased... I love you all!`);
|
||||
client.say(channel, `Anon Gift-Sub gifted!`);
|
||||
client.say(channel, `/me Wait, what?! Am I getting hacked? If I get erased... I love you all! Bleep-Bloop!`);
|
||||
});
|
||||
client.on("subscribers", (channel, enabled) => {
|
||||
// Chatmode
|
||||
client.say(channel, `CHAT MODE: Subscribers only!`);
|
||||
});
|
||||
client.on("subscription", function (channel, username, method, message, userstate) {
|
||||
client.say(channel, `/me BLEEP! BLOOP! New subscriber! Spam your new emotes!!! Let's see you're fav!`);
|
||||
client.say(channel, `!kappagen sarimoKO sarimoNERD`);
|
||||
});
|
||||
client.on("timeout", (channel, username, reason, duration, userstate) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `I know this only frustrates you more, but please take this time to cooldown.`);
|
||||
});
|
||||
client.on("unhost", (channel, viewers) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me @Sarimoko has turned if hosting, please standby for further instruction!`);
|
||||
});
|
||||
client.on("unmod", (channel, username) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `Oof, modship`);
|
||||
});
|
||||
client.on("vips", (channel, vips) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `@Sarimoko is fortunate to have many great viewers but these VIPs are a few specifically to thank!`);
|
||||
});
|
||||
client.on("whisper", (from, userstate, message, self) => {
|
||||
if (self) return;
|
||||
|
|
Loading…
Reference in New Issue