diff options
| author | Andrew Lee <andrew@alee14.me> | 2025-03-26 16:02:25 -0400 |
|---|---|---|
| committer | Andrew Lee <andrew@alee14.me> | 2025-03-26 16:04:06 -0400 |
| commit | bc64422fdf34e512509cfc931569715828047c24 (patch) | |
| tree | 11cc24121519b5d2fd4c65907e1979d6f426981b /bot/src/storage | |
| parent | f374c5bda7a9453266e46e77da3631d655998c68 (diff) | |
| download | AleeBot-bc64422fdf34e512509cfc931569715828047c24.tar.gz AleeBot-bc64422fdf34e512509cfc931569715828047c24.tar.bz2 AleeBot-bc64422fdf34e512509cfc931569715828047c24.zip | |
QOTD implemented; Removed readyMsg (replaced with NODE_ENV); More activities
Diffstat (limited to 'bot/src/storage')
| -rw-r--r-- | bot/src/storage/activities.js | 36 | ||||
| -rw-r--r-- | bot/src/storage/consts.js | 1 |
2 files changed, 34 insertions, 3 deletions
diff --git a/bot/src/storage/activities.js b/bot/src/storage/activities.js index 155eeaa..73051de 100644 --- a/bot/src/storage/activities.js +++ b/bot/src/storage/activities.js @@ -4,6 +4,7 @@ const { version: abVersion } = JSON.parse(readFileSync('./package.json', 'utf-8' export const activities = [ { name: `AleeBot ${abVersion}`, type: 4 }, + { name: `Now running on Discord.JS ${discordVersion}!`, type: 4 }, { name: 'Coding bytes', type: 4 }, { name: 'Drawing shapes', type: 4 }, { name: 'Fighting Quad', type: 4 }, @@ -40,7 +41,7 @@ export const activities = [ { name: 'Monica Is Going To Cosume You', type: 4 }, { name: 'BLĂ…HAJ', type: 4 }, { name: 'ShiftOS', type: 0 }, - { name: 'Histacom', type: 2 }, + { name: 'Histacom', type: 0 }, { name: 'Wall Street', type: 4 }, { name: 'Mac OS X Jaguar', type: 0 }, { name: 'Abunchoo 12.10', type: 0 }, @@ -77,10 +78,12 @@ export const activities = [ { name: 'Splatoon 3', type: 0 }, { name: 'Super Mario 64', type: 0 }, { name: 'Minceraft', type: 0 }, + { name: 'Minecraft', type: 0 }, { name: 'Mario Kart 8', type: 0 }, { name: 'bnbmc', type: 0 }, { name: 'Evaluating JavaScript code', type: 4 }, { name: 'Evaluating C# code', type: 4 }, + { name: 'Evaluating Rust code', type: 4 }, { name: 'Forkbombing FMP', type: 4 }, { name: 'Merging with DLAP', type: 4 }, { name: 'Now asbestos-free!', type: 4 }, @@ -96,6 +99,35 @@ export const activities = [ { name: 'Turbotastic!', type: 4 }, { name: 'Artemis', type: 0 }, { name: 'Helping Kapuletti Industries', type: 4 }, + { name: 'Frank (The Game)', type: 0 }, + { name: 'Blasting earbuds with the Maraca Cracker 9000', type: 4 }, + { name: 'Scarlet Fire', type: 2 }, { name: 'The Beat 92.5 - MTL\'s Perfect Mix', type: 2 }, - { name: `Now running on Discord.JS ${discordVersion}!`, type: 4 } + { name: 'Removing unsafe code', type: 4 }, + { name: 'Google Pixel 7', type: 0 }, + { name: 'FreeSO', type: 0 }, + { name: 'The Sims 1', type: 0 }, + { name: 'The Sims 2', type: 0 }, + { name: 'The Sims 3', type: 0 }, + { name: 'The Sims 4', type: 0 }, + { name: 'inZOI', type: 0 }, + { name: 'Paralives', type: 0 }, + { name: 'CollabVM', type: 0 }, + { name: '86Box', type: 0 }, + { name: 'AIM', type: 0 }, + { name: 'Software Inc.', type: 0 }, + { name: 'Nintendo GameBoy', type: 0 }, + { name: 'Nintendo GameBoy Advanced', type: 0 }, + { name: 'Nintendo DS', type: 0 }, + { name: 'Nintendo DSi', type: 0 }, + { name: 'Nintendo 3DS', type: 0 }, + { name: 'Nintendo Entertainment System', type: 0 }, + { name: 'Super Nintendo Entertainment System', type: 0 }, + { name: 'Nintendo 64', type: 0 }, + { name: 'Nintendo Gamecube', type: 0 }, + { name: 'Nintendo Wii', type: 0 }, + { name: 'Nintendo Wii U', type: 0 }, + { name: 'Nintendo Switch', type: 0 }, + { name: 'Nintendo Switch 2', type: 0 }, + { name: 'Sony Playstation 2', type: 0 } ]; diff --git a/bot/src/storage/consts.js b/bot/src/storage/consts.js index 9a408f4..231f5ca 100644 --- a/bot/src/storage/consts.js +++ b/bot/src/storage/consts.js @@ -1,5 +1,4 @@ export const abEmbedColour = '#0066a6'; -export const readyMsg = false; export const ollamaGlobal = true; export const ollamaModel = 'aleebot-deepseek'; export const featureSuggestChannel = '427495678390960148'; |
