From 5a17f027ca0c409d9f9f3a024066fd7af7b0224f Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Mon, 14 Feb 2022 16:42:57 -0800 Subject: [PATCH] color cmd --- node/boto.js | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/node/boto.js b/node/boto.js index 76cda55..1525621 100644 --- a/node/boto.js +++ b/node/boto.js @@ -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