summaryrefslogtreecommitdiff
path: root/src/bot.ts
diff options
context:
space:
mode:
author8cy <[email protected]>2020-04-17 10:25:15 -0700
committer8cy <[email protected]>2020-04-17 10:25:15 -0700
commit24ca1f84baf710b83f0c990aea164ccffd9f0bc2 (patch)
tree200f4adde6c26e7afc8ba5bf0ce7da06dc239dca /src/bot.ts
parentadd anime cmd group, v7.1.0 (diff)
downloaddep-core-24ca1f84baf710b83f0c990aea164ccffd9f0bc2.tar.xz
dep-core-24ca1f84baf710b83f0c990aea164ccffd9f0bc2.zip
add memory cmds + output formatting, v7.1.1
Diffstat (limited to 'src/bot.ts')
-rw-r--r--src/bot.ts19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/bot.ts b/src/bot.ts
index ca489bc..17f1b3f 100644
--- a/src/bot.ts
+++ b/src/bot.ts
@@ -34,7 +34,8 @@ client.registry
['utility', 'Utility Command Group'],
['voice', 'Voice Command Group'],
['nsfw', 'NSFW Command Group'],
- ['anime', 'Anime Command Group']
+ ['anime', 'Anime Command Group'],
+ ['crypto', 'Crypto Command Group']
])
.registerDefaultGroups()
.registerDefaultCommands({
@@ -45,7 +46,7 @@ client.registry
client.once('ready', () => {
//console.log(`Started bot: ${client.user.tag} (ID: ${client.user.id})\nCurrently running on ${client.guilds.cache.size} server(s).`);
console.log('Bot online!')
- console.log(` _ _ __ _
+ console.log('\x1b[31m' + ` _ _ __ _
| | | | / _(_)
| | | |_ ___ _| |_ _ ___ _ __
| | | \\ \\ /\\ / / | | | _| |/ _ \\ '__|
@@ -53,15 +54,15 @@ client.once('ready', () => {
\\___/ \\_/\\_/ \\__,_|_| |_|\\___|_|
`)
- console.log('discord.js Version: 2.1.1')
- console.log('Node.js Version:', process.version)
- console.log('OS Version:', process.platform)
- console.log('Name:', `${client.user?.tag}`)
- console.log('ID:', `${client.user?.id}`)
- console.log('Servers:', `${client.guilds.cache.size}`)
+ console.log('\x1b[0m' + 'discord.js Version: ' + '\x1b[36m' + '2.11')
+ console.log('\x1b[0m' + 'Node.js Version: ' + '\x1b[36m' + process.version)
+ console.log('\x1b[0m' + 'OS Version: ' + '\x1b[36m' + process.platform)
+ console.log('\x1b[0m' + 'Name: ' + '\x1b[36m' + `${client.user?.tag}`)
+ console.log('\x1b[0m' + 'ID: ' + '\x1b[36m' + `${client.user?.id}`)
+ console.log('\x1b[0m' + 'Servers: ' + '\x1b[36m' + `${client.guilds.cache.size}` + '\x1b[0m')
console.log()
- client.user.setActivity('uwu!help | v7.0.1', {
+ client.user.setActivity('uwu!help | v7.1.1', {
type: 'WATCHING'
});
});