Update 'node/boto.js'
This commit is contained in:
parent
98cc50be26
commit
ea8b2955e9
33
node/boto.js
33
node/boto.js
|
@ -63,6 +63,34 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
client.say(channel, `/me 2. Do NOT be a Troll!`);
|
client.say(channel, `/me 2. Do NOT be a Troll!`);
|
||||||
client.say(channel, `/me 3. Do NOT be another brick in the wall!`);
|
client.say(channel, `/me 3. Do NOT be another brick in the wall!`);
|
||||||
}
|
}
|
||||||
|
// TIME
|
||||||
|
if(command === 'time' ||
|
||||||
|
command === 'pst' ||
|
||||||
|
command === 'pac') {
|
||||||
|
client.say(channel, `/me Bleep-Bloop! PST | 2-Pac Standard Time`);
|
||||||
|
}
|
||||||
|
// TRIP
|
||||||
|
if(command === 'trip' ||
|
||||||
|
command === 'trippin' ||
|
||||||
|
command === 'tripping') {
|
||||||
|
client.say(channel, `BLEEP! BLOOP! I'm trippin dragon ballz! Did @trip_228 spike my bios?!`);
|
||||||
|
client.say(channel, `!kappagen sarimoTRIP sarimoTRIP sarimoTRIP`);
|
||||||
|
client.say(channel, `Stay calm... Just remember your name & ip address... @Sarimoko 127.0.0.1... @Sarimoko 127.0.0.1...`);
|
||||||
|
}
|
||||||
|
// TUNE
|
||||||
|
if(command === 'tune' ||
|
||||||
|
command === 'lyrics' ||
|
||||||
|
command === 'midi' ||
|
||||||
|
command === 'tabs') {
|
||||||
|
client.say(channel, `/me The Tune | Lyrics, MIDI, Tabs, & more hosted on Git written in Markdown available at: https://dojo.sarimoko.com/`);
|
||||||
|
}
|
||||||
|
// WISH
|
||||||
|
if(command === 'wish' ||
|
||||||
|
command === 'wishlist' ||
|
||||||
|
command === 'amazon' ||
|
||||||
|
command === 'gift') {
|
||||||
|
client.say(channel, `/me First off, thank you ${tags.username} for even considering contributing directly! Amazon Wishlists have been split into sub-categories and are available at: https://wish.sarimoko.com/ `);
|
||||||
|
}
|
||||||
// TODO:
|
// TODO:
|
||||||
// Uptime
|
// Uptime
|
||||||
// Viewers
|
// Viewers
|
||||||
|
@ -81,6 +109,11 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
command === 'shoutout') {
|
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 Bleep! Bloop! Roll the clip! Smash @${args.join(' ')}'s follow button at: https://twitch.tv/${args.join(' ')}`);
|
||||||
}
|
}
|
||||||
|
if(command === 'default' ||
|
||||||
|
command === 'sariboto') {
|
||||||
|
client.say(channel, `/color BlueViolet`);
|
||||||
|
client.say(channel, `/me Bleep-Bloop! I've reconfigured myself to @Sarimoko's preferences!`);
|
||||||
|
}
|
||||||
|
|
||||||
// MOD TOOLS
|
// MOD TOOLS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue