From 8255c59f62edf302e8dc00acb86daf34fcfadaa1 Mon Sep 17 00:00:00 2001 From: Sarimoko Date: Sun, 13 Feb 2022 14:21:44 +0000 Subject: [PATCH] Update 'node/boto.js' --- node/boto.js | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/node/boto.js b/node/boto.js index 6bacd12..a3ab709 100644 --- a/node/boto.js +++ b/node/boto.js @@ -1,4 +1,20 @@ // B O T O +// --- + +// Color Guid +// red +// console.log('\x1b[31m%s\x1b[0m', 'I am red') +// green +// console.log('\x1b[32m%s\x1b[0m', 'I am green') +// yellow +// console.log('\x1b[33m%s\x1b[0m', 'I am yellow') +// blue +// console.log('\x1b[34m%s\x1b[0m', 'I am blue') +// magenta +// console.log('\x1b[35m%s\x1b[0m', 'I am magenta') +// cyan +// console.log('\x1b[36m%s\x1b[0m', 'I am cyan') + require('dotenv').config(); const tmi = require('tmi.js'); @@ -424,7 +440,7 @@ client.on("hosting", (channel, target, viewers) => { client.say(channel, `/me BLEEP! BLOOP! @Sarimoko is auto-hosting various streamers! For more info: https://cord.sarimoko.com`); }); client.on("join", (channel, username, self) => { - console.log('\x1b[36m%s\x1b[0m', 'LOG |', username, 'joined the chat!'); + console.log('\x1b[36m%s\x1b[0m', 'LOG |', '\x1b[33m%s\x1b[0m', username, '\x1b[36m%s\x1b[0m', 'joined the chat!'); }); client.on("logon", () => { console.log('LOG: Logon ');