color cmd

This commit is contained in:
Sarimoko 2022-02-14 16:42:57 -08:00
parent e78062442c
commit 5a17f027ca
1 changed files with 21 additions and 8 deletions

View File

@ -106,39 +106,52 @@ client.on('message', (channel, tags, message, self) => {
if(command === 'test') {
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
// ================================
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
if(command === 'bg' ||
command === 'notgg') {
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoDEAD sarimoGAME`);
}
if(command === 'clap' ||
command === 'claps') {
client.say(channel, `!kappagen sarimoDEAD sarimoGAME Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoDEAD sarimoGAME`);
}
if(command === 'hair' ||
command === 'hairflip') {
client.say(channel, `!kappagen sarimoHAIR sarimoBANG Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoHAIR sarimoBANG`);
}
if(command === 'hi' ||
command === 'hello') {
client.say(channel, `!kappagen sarimoKO sarimoNERD Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoKO sarimoNERD`);
}
if(command === 'hype' ||
command === 'train') {
client.say(channel, `!kappagen sarimoHYPE sarimoBITS Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoHYPE sarimoBITS`);
}
if(command === 'salt' ||
command === 'shoutout') {
client.say(channel, `!kappagen sarimoSALT sarimoRAGE Bleep-Bloop!`);
client.say(channel, `!kappagen sarimoSALT sarimoRAGE`);
}
if(command === 'soup' ||
command === 'sup') {
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
// ================================
@ -334,7 +347,7 @@ client.on("notice", (channel, msgid, message) => {
// CHAT | User left
// --------------------------------
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*`);
});
// ANNOYING