Update 'node/boto.js'
This commit is contained in:
parent
cc8bf57dc2
commit
ddf7609e15
38
node/boto.js
38
node/boto.js
|
@ -55,6 +55,11 @@ client.on('message', (channel, tags, message, self) => {
|
|||
const result = Math.floor(Math.random() * 6) + 1;
|
||||
client.say(channel, `/me Bleep-Bloop! @${tags.username} has rolled a ${result}! Praise RNGesus!`);
|
||||
}
|
||||
// CMD | DOJO
|
||||
if(command === 'dojo' ||
|
||||
command === 'guide') {
|
||||
client.say(channel, `/me The Dojo is DIY's & 1on1's available at: https://cord.sarimoko.com/`);
|
||||
}
|
||||
// CMD | LURK
|
||||
if(command === 'lurk' ||
|
||||
command === 'lurkin' ||
|
||||
|
@ -135,32 +140,32 @@ client.on('message', (channel, tags, message, self) => {
|
|||
// FX | K A P P A G E N S
|
||||
if(command === 'bg' ||
|
||||
command === 'notgg') {
|
||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME `);
|
||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'clap' ||
|
||||
command === 'claps') {
|
||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME `);
|
||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'hair' ||
|
||||
command === 'hairflip') {
|
||||
client.say(channel, `!kappagen sarimoHAIR sarimoBANG `);
|
||||
client.say(channel, `!kappagen sarimoHAIR sarimoBANG Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'hi' ||
|
||||
command === 'hello') {
|
||||
client.say(channel, `!kappagen sarimoKO sarimoNERD `);
|
||||
client.say(channel, `!kappagen sarimoKO sarimoNERD Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'hype' ||
|
||||
command === 'train') {
|
||||
client.say(channel, `!kappagen sarimoHYPE sarimoBITS `);
|
||||
client.say(channel, `!kappagen sarimoHYPE sarimoBITS Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'salt' ||
|
||||
command === 'shoutout') {
|
||||
client.say(channel, `!kappagen sarimoSALT sarimoRAGE `);
|
||||
client.say(channel, `!kappagen sarimoSALT sarimoRAGE Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'soup' ||
|
||||
command === 'sup') {
|
||||
client.say(channel, `!kappagen sarimoSOUP sarimoTRIP `);
|
||||
client.say(channel, `/me Yo @${tags.username}, how goes it?`);
|
||||
client.say(channel, `/me Yo @${tags.username}, how goes it? Bleep-Bloop!`);
|
||||
}
|
||||
|
||||
} // SUB | END
|
||||
|
@ -170,12 +175,24 @@ client.on('message', (channel, tags, message, self) => {
|
|||
// Shoutout
|
||||
if(command === 'so' ||
|
||||
command === 'shoutout') {
|
||||
client.say(channel, `/me Bleep! Bloop! Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')}`);
|
||||
client.say(channel, `/me Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')} Bleep-Bloop!`);
|
||||
}
|
||||
if(command === 'default' ||
|
||||
command === 'sariboto') {
|
||||
client.say(channel, `/color BlueViolet`);
|
||||
client.say(channel, `/me Bleep-Bloop! I've reconfigured myself to @Sarimoko's preferences!`);
|
||||
client.say(channel, `/me I've reconfigured myself to @Sarimoko's preferences! Bleep-Bloop!`);
|
||||
client.say(channel, `/emoteonlyoff `);
|
||||
client.say(channel, `/followersoff `);
|
||||
client.say(channel, `/slowoff `);
|
||||
client.say(channel, `/subscribersoff `);
|
||||
}
|
||||
if(command === 'mute' ||
|
||||
command === 'slap' ||
|
||||
command === 'timeout' ||
|
||||
command === 'warn') {
|
||||
client.say(channel, `/timeout ${args.join(' ')} 33`);
|
||||
client.say(channel, `/me Mods cast a 33sec Timeout Curse on @${args.join(' ')}, resistence to Bans is decreased!`);
|
||||
client.say(channel, `!kappagen sarimoRAGE sarimoNERD`);
|
||||
}
|
||||
|
||||
// MOD TOOLS
|
||||
|
@ -193,7 +210,8 @@ client.on('message', (channel, tags, message, self) => {
|
|||
command === 'ads' ||
|
||||
command === 'dab30' ||
|
||||
command === 'intermission') {
|
||||
client.say(channel, `Bleep! Bloop! Sub to bypass ads! `);
|
||||
client.say(channel, `/me @Sarimoko lets have a secret 30 second conversation with only our loyal subs while the ads run! Enjoy the commercials followering no subbing plebs! Wait @sarimoko makes money off ads too... Well this is awkward thank you peasants for not using adblocker! Wait I'm making it worse... Bleep-Bloop!`);
|
||||
client.say(channel, `!kappagen sarimoKO sarimoBANG`);
|
||||
client.commercial("channel", 30)
|
||||
.then((data) => {
|
||||
// data returns [channel, seconds]
|
||||
|
|
Loading…
Reference in New Issue