color cmd
This commit is contained in:
parent
e78062442c
commit
5a17f027ca
29
node/boto.js
29
node/boto.js
|
@ -106,39 +106,52 @@ client.on('message', (channel, tags, message, self) => {
|
||||||
if(command === 'test') {
|
if(command === 'test') {
|
||||||
client.say(channel, `what if we output the whole message? Zap! Output: `+ message)
|
client.say(channel, `what if we output the whole message? Zap! Output: `+ message)
|
||||||
}
|
}
|
||||||
|
// CMD | Lurk
|
||||||
|
if(command === 'lurk' ||
|
||||||
|
command === 'lurkin' ||
|
||||||
|
command === 'lurking') {
|
||||||
|
client.say(channel, `/me Thanks @${tags.username} for your viewership! Lurk on! sarimoLURKbrb sarimoLURK`);
|
||||||
|
}
|
||||||
// ================================
|
// ================================
|
||||||
// SUB Commands
|
// SUB Commands
|
||||||
// ================================
|
// ================================
|
||||||
if(isSub) {
|
if(isSub) {
|
||||||
|
// CMD | Color
|
||||||
|
if(command === 'color') {
|
||||||
|
// Change your username color. Color must be in hex (#000000) or one of the following: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen.
|
||||||
|
client.say(channel, `/color ${args.join(' ')}`);
|
||||||
|
client.say(channel, `/me @${tags.username} has changed my color to ${args.join(' ')}`);
|
||||||
|
client.say(channel, `/me Out of the entire hex (#000000) spectrum or the preset color names: Blue, BlueViolet, CadetBlue, Chocolate, Coral, DodgerBlue, Firebrick, GoldenRod, Green, HotPink, OrangeRed, Red, SeaGreen, SpringGreen, YellowGreen you pick ${args.join(' ')}... Welp, alright!`);
|
||||||
|
}
|
||||||
// FX | K A P P A G E N S
|
// FX | K A P P A G E N S
|
||||||
if(command === 'bg' ||
|
if(command === 'bg' ||
|
||||||
command === 'notgg') {
|
command === 'notgg') {
|
||||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoDEAD sarimoGAME`);
|
||||||
}
|
}
|
||||||
if(command === 'clap' ||
|
if(command === 'clap' ||
|
||||||
command === 'claps') {
|
command === 'claps') {
|
||||||
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoDEAD sarimoGAME`);
|
||||||
}
|
}
|
||||||
if(command === 'hair' ||
|
if(command === 'hair' ||
|
||||||
command === 'hairflip') {
|
command === 'hairflip') {
|
||||||
client.say(channel, `!kappagen sarimoHAIR sarimoBANG Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoHAIR sarimoBANG`);
|
||||||
}
|
}
|
||||||
if(command === 'hi' ||
|
if(command === 'hi' ||
|
||||||
command === 'hello') {
|
command === 'hello') {
|
||||||
client.say(channel, `!kappagen sarimoKO sarimoNERD Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoKO sarimoNERD`);
|
||||||
}
|
}
|
||||||
if(command === 'hype' ||
|
if(command === 'hype' ||
|
||||||
command === 'train') {
|
command === 'train') {
|
||||||
client.say(channel, `!kappagen sarimoHYPE sarimoBITS Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoHYPE sarimoBITS`);
|
||||||
}
|
}
|
||||||
if(command === 'salt' ||
|
if(command === 'salt' ||
|
||||||
command === 'shoutout') {
|
command === 'shoutout') {
|
||||||
client.say(channel, `!kappagen sarimoSALT sarimoRAGE Bleep-Bloop!`);
|
client.say(channel, `!kappagen sarimoSALT sarimoRAGE`);
|
||||||
}
|
}
|
||||||
if(command === 'soup' ||
|
if(command === 'soup' ||
|
||||||
command === 'sup') {
|
command === 'sup') {
|
||||||
client.say(channel, `!kappagen sarimoSOUP sarimoTRIP `);
|
client.say(channel, `!kappagen sarimoSOUP sarimoTRIP `);
|
||||||
client.say(channel, `/me Yo @${tags.username}, how goes it? Bleep-Bloop!`);
|
client.say(channel, `/me Yo @${tags.username}, how goes it? Whats soup! sarimoSOUP sarimoTRIP`);
|
||||||
}
|
}
|
||||||
} // SUB | END
|
} // SUB | END
|
||||||
// ================================
|
// ================================
|
||||||
|
@ -334,7 +347,7 @@ client.on("notice", (channel, msgid, message) => {
|
||||||
// CHAT | User left
|
// CHAT | User left
|
||||||
// --------------------------------
|
// --------------------------------
|
||||||
client.on("part", (channel, username, self) => {
|
client.on("part", (channel, username, self) => {
|
||||||
console.log('LOG:'.brightRed, username.yellow, 'left the chat...'.brightRed);
|
console.log('LOG:'.black.bgBrightRed, username.black.Yellow, 'left the chat...'.black.bgBrightRed);
|
||||||
// client.say(channel, `/me -1 Chatter! Where's my bounty hunters? Essemble the *air-qoutes* search-party *air-qoutes*`);
|
// client.say(channel, `/me -1 Chatter! Where's my bounty hunters? Essemble the *air-qoutes* search-party *air-qoutes*`);
|
||||||
});
|
});
|
||||||
// ANNOYING
|
// ANNOYING
|
||||||
|
|
Loading…
Reference in New Issue