Add new statuses, update internal name.

This commit is contained in:
Anthony M 2021-01-22 23:39:58 -06:00 committed by GitHub
parent d95a72e6d3
commit 2e0382e18d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 12 deletions

18
package-lock.json generated
View file

@ -1,5 +1,5 @@
{
"name": "nyabotcanary",
"name": "projectanitrox",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
@ -10,7 +10,8 @@
"license": "ISC",
"dependencies": {
"discord.js": "^11.5.1",
"node-os-utils": "^1.3.2"
"node-os-utils": "^1.3.2",
"require-all": "^3.0.0"
}
},
"node_modules/@discordjs/uws": {
@ -94,6 +95,14 @@
"resolved": "https://registry.npmjs.org/prism-media/-/prism-media-0.0.4.tgz",
"integrity": "sha512-dG2w7WtovUa4SiYTdWn9H8Bd4JNdei2djtkP/Bk9fXq81j5Q15ZPHYSwhUVvBRbp5zMkGtu0Yk62HuMcly0pRw=="
},
"node_modules/require-all": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/require-all/-/require-all-3.0.0.tgz",
"integrity": "sha1-Rz1JcEvjEBFc4ST3c4Ox69hnExI=",
"engines": {
"node": ">= 0.8"
}
},
"node_modules/snekfetch": {
"version": "3.6.4",
"resolved": "https://registry.npmjs.org/snekfetch/-/snekfetch-3.6.4.tgz",
@ -153,6 +162,11 @@
"resolved": "https://registry.npmjs.org/prism-media/-/prism-media-0.0.4.tgz",
"integrity": "sha512-dG2w7WtovUa4SiYTdWn9H8Bd4JNdei2djtkP/Bk9fXq81j5Q15ZPHYSwhUVvBRbp5zMkGtu0Yk62HuMcly0pRw=="
},
"require-all": {
"version": "3.0.0",
"resolved": "https://registry.npmjs.org/require-all/-/require-all-3.0.0.tgz",
"integrity": "sha1-Rz1JcEvjEBFc4ST3c4Ox69hnExI="
},
"snekfetch": {
"version": "3.6.4",
"resolved": "https://registry.npmjs.org/snekfetch/-/snekfetch-3.6.4.tgz",

View file

@ -1,11 +1,12 @@
{
"name": "nyabotcanary",
"name": "projectanitrox",
"version": "1.0.0",
"description": "Discord Bot Based on Discord.JS",
"main": "main.js",
"main": "start.js",
"dependencies": {
"discord.js": "^11.5.1",
"node-os-utils": "^1.3.2"
"node-os-utils": "^1.3.2",
"require-all": "^3.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"

View file

@ -5,6 +5,7 @@ const { prefix, token } = require('./config.json');
const os = require("os")
const version = "Test Release 21";
const release = "anitrox_unstable"
console.log('Starting!')
const client = new Discord.Client();
client.commands = new Discord.Collection();
@ -19,7 +20,10 @@ const activities_list = [
"with the tea machine",
"with Borked Computers",
"on Happy's main PC- wait shoot she's coming",
"btw I use Debian linux"
"btw I use Debian linux",
"Watching you",
"Running " + release + " Version " + version,
"in Incognito Mode- wait what"
];
const footicon = "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png"
const footer = "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64"
@ -38,9 +42,9 @@ client.once('ready', () => {
console.log('All systems go.');
});
setInterval(() => {
const index = Math.floor(Math.random() * (activities_list.length - 1) + 1);
client.user.setActivity(activities_list[index]);
}, 20000);
const index = Math.floor(Math.random() * (activities_list.length - 1) + 1);
client.user.setActivity(activities_list[index]);
}, 20000);
client.on('message', message => {
if (!message.content.startsWith(prefix) || message.author.bot) return;
@ -54,7 +58,7 @@ client.on('message', message => {
client.commands.get(command).execute(client, message, args);
} catch (error) {
const embed = {
"title": "<:NyabotError:697145462347661412> **An error occurred!**",
"title": "<:NyabotError:697145462347661412> **Well that happened...**",
"color": 13632027,
"footer": {
"icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
@ -63,7 +67,7 @@ client.on('message', message => {
"fields": [
{
"name": "**What Happened?**",
"value": "The command you tried to run failed to execute"
"value": "The command you tried to run failed to execute due to an error."
},
{
"name": "Error Info",
@ -75,4 +79,4 @@ client.on('message', message => {
}
});
client.login(token);
client.login(token);