Update 'node/boto.js'
This commit is contained in:
parent
bae8c35f60
commit
a0651c505b
46
node/boto.js
46
node/boto.js
|
@ -33,64 +33,58 @@ client.on('message', (channel, tags, message, self) => {
|
|||
// START of REACTIVE
|
||||
// ==================================
|
||||
client.on("anongiftpaidupgrade", (channel, username, userstate) => {
|
||||
// Do your stuff.
|
||||
client.whisper(username, `UPGRADE COMPLETE! Thank you very much for supporting The Sarimoko Show!`);
|
||||
client.whisper(username, `BLEEP! BLOOP! Anon-Sub upgraded!!!`);
|
||||
});
|
||||
client.on("ban", (channel, username, reason, userstate) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me bye felicia`);
|
||||
client.say(channel, `/me BYE FELICIA!!!`);
|
||||
client.say(channel, `!kappagen BOP BOP BOP `);
|
||||
});
|
||||
client.on("cheer", (channel, userstate, message) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me Cheer test`);
|
||||
client.say(channel, `/me BLEEP! BLOOP! O'SNAP! Bit hype!!! sarimoBANG`);
|
||||
client.say(channel, `!kappagen sarimoHYPE sarimoBITS`);
|
||||
});
|
||||
client.on("clearchat", (channel) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `The Laws`);
|
||||
client.say(channel, `The Rule of Law`);
|
||||
client.say(channel, `1. Don't feed the Trolls!`);
|
||||
client.say(channel, `Chat Rule Reminder`);
|
||||
client.say(channel, `/me 1. Do NOT feed the Trolls!`);
|
||||
client.say(channel, `/me 2. Do NOT be a Troll!`);
|
||||
client.say(channel, `/me 3. #NSFQ in cord.sarimoko.com ONLY!`);
|
||||
client.say(channel, `/me 4. Do NOT be another brick in the wall!`);
|
||||
});
|
||||
client.on("giftpaidupgrade", (channel, username, sender, userstate) => {
|
||||
// Do your stuff.
|
||||
// Huh? Tier 1 => Tier2
|
||||
});
|
||||
client.on("hosting", (channel, target, viewers) => {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me Host Test`);
|
||||
client.say(channel, `/me BLEEP! BLOOP! @Sarimoko got hosted! Do something entertaining!`);
|
||||
});
|
||||
// User joins/connects
|
||||
// ***ANNOYING*** User IRC Connect/Disconnect
|
||||
client.on("join", (channel, username, self) => {
|
||||
// client.say(channel, `/me +1 Chatter! Viewer or Bot...? Time will tell!`);
|
||||
});
|
||||
// Bye Felicia!
|
||||
client.on("part", (channel, username, self) => {
|
||||
// client.say(channel, `/me -1 Chatter! Where's my bounty hunters? Essemble the *air-qoutes* search-party *air-qoutes*`);
|
||||
});
|
||||
// Incoming Raid
|
||||
client.on("raided", (channel, username, viewers) => {
|
||||
client.say(channel, `/me Welcome raiders!!! We make take your viewership, but we'll never take your FREEDOM!!!`);
|
||||
client.say(channel, `/me Welcome raiders!!! We may take your viewership, but we'll never take your FREEDOM!!!`);
|
||||
client.say(channel, `!kappagen sarimoRAID sarimoFREEDOM sarimoRAID sarimoFREEDOM sarimoRAID sarimoFREEDOM`);
|
||||
});
|
||||
client.on("subgift", (channel, username, streakMonths, recipient, methods, userstate) => {
|
||||
// Do your stuff.
|
||||
let senderCount = ~~userstate["msg-param-sender-count"];
|
||||
client.say(channel, `/me Thank you for supporting The Sarimoko Show with Gift-Subs!`);
|
||||
});
|
||||
client.on("submysterygift", (channel, username, numbOfSubs, methods, userstate) => {
|
||||
// Do your stuff.
|
||||
let senderCount = ~~userstate["msg-param-sender-count"];
|
||||
client.say(channel, `/me BLEEP! BLOOP! Am I getting hacked? Anon just Gift-Subbed! If I get erased... I love you all!`);
|
||||
});
|
||||
client.on("resub", function (channel, username, months, message, userstate, methods) {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me Re-SUB test`);
|
||||
client.say(channel, `/me BLEEP! BLOOP! Thanks for the Re-Sub! We're just 2 lost souls, swimming in a fish bowl, sub after sub...`);
|
||||
});
|
||||
client.on("subscription", function (channel, username, method, message, userstate) {
|
||||
// Do your stuff.
|
||||
client.say(channel, `/me BLEEP! BLOOP! +1 Subscriber, thank you very much! MOTE-SPAM!`);
|
||||
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("whisper", (from, userstate, message, self) => {
|
||||
// Don't listen to my own messages..
|
||||
if (self) return;
|
||||
//client.say(channel, `/me Bleep! Bloop! Sext message recieved!`);
|
||||
client.say(channel, `/me Bleep! Bloop! Sariboto's Inbox (+1): SEXT Message Recieved!`);
|
||||
});
|
||||
// END of REACTIVE
|
||||
// ==================================
|
||||
|
@ -284,7 +278,7 @@ client.on('message', (channel, tags, message, self) => {
|
|||
// Shoutout
|
||||
// ----------------------------------
|
||||
else if(command === 'so' || command === 'shoutout') {
|
||||
client.say(channel, `Go checkout @${tags.username}'s channel! Hit that follow button like it owes you money!`);
|
||||
client.say(channel, `BLEEP! BLOOP! Go checkout @${args.join(' ')}'s channel! Hit that follow button like it owes you money! https://twitch.tv/${args.join(' ')}`);
|
||||
}
|
||||
|
||||
// S T R E A M E L E M E N T S
|
||||
|
|
Loading…
Reference in New Issue