Merge pull request #8 from IDeletedSystem64/dev

Update PTB with latest stable dev build
This commit is contained in:
Anthony M 2021-01-19 21:37:05 -06:00 committed by GitHub
commit a254e2ed2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 84 additions and 86 deletions

View File

@ -7,7 +7,7 @@ module.exports = {
const embed = {
"title": "<:NyabotInfo:697145463350231040> **Help? HELP!** ",
"color": 9540095,
"description": "<:NyabotWarning:697145463194910791> Not all commands have been implemented. and may be removed without warning",
"description": "<:NyabotWarning:697145463194910791> Not all commands have been implemented, and may be removed without warning.",
"footer": {
"text": "Some commands are hidden for dev-only. | Anitrox © IDeletedSystem64 2018-2021"
},

View File

@ -24,13 +24,13 @@ module.exports = {
const version = ("DEV1.0")
const version = ("dev build 421")
const release = ("anitrox_dev")
const os = require("os")
const embed = {
"title": "<:NyabotInfo:697145463350231040> Information about projectanitrox",
"description": "Everything you've ever wanted to know about projectanitrox!",
"title": "<:NyabotInfo:697145463350231040> Information about Anitrox",
"description": "Everything you've ever wanted to know about Anitrox!",
"color": 11038194,
"footer": {
"icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
@ -93,11 +93,11 @@ const version = ("DEV1.0")
},
{
"name": "<:NyabotInfo:697145463350231040> **Want more system information?**",
"value": "Run n!sysinfo for more detailed system information"
"value": "Run np!sysinfo for more detailed system information (Coming Soon™)"
},
{
"name": "<:usersuccess:793885338250641469> **Special Thanks To**",
"value": "@OfficialTCGMatt for providing help with development"
"value": "@OfficialTCGMatt for providing help with development/n @chuu_shi Allowing me to host Anitrox on his server"
}
]

158
start.js
View File

@ -1,80 +1,78 @@
console.log('Preparing to start!')
const fs = require('fs');
const Discord = require('discord.js');
const { prefix, token } = require('./config.json');
const os = require("os")
const version = "Public Test Release 1";
const release = "anitrox_ptb"
const buildno = "430"
console.log('Starting!')
const client = new Discord.Client();
client.commands = new Discord.Collection();
const activities_list = [
"with n!help",
"Where am I?",
"with Sylveons!",
"on my host's hard disk",
"with Happy",
"HAAAAAAAAPPPPPPPYYYYYYYYYYYYYYYYYYYY",
"Running on " + process.platform + " / " + os.version() + "!",
"with the tea machine",
"with Borked Computers",
"on Happy's main PC- wait shoot she's coming",
"btw I use Debian linux"
];
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
client.on("error", (e) => console.error(e));
client.on("warn", (e) => console.warn(e));
client.on("debug", (e) => console.info(e))
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);
client.on('message', message => {
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).split(/ +/);
const command = args.shift().toLowerCase();
if (!client.commands.has(command)) return;
try {
client.commands.get(command).execute(client, message, args);
} catch (error) {
const embed = {
"title": "<:NyabotError:697145462347661412> **An error occurred!**",
"color": 13632027,
"footer": {
"icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
"text": "Anitrox © IDeletedSystem64 2018-2021 All Rights Reserved."
},
"fields": [
{
"name": "**What Happened?**",
"value": "The command you tried to run failed to execute"
},
{
"name": "Error Info",
"value": error.message
}
]
};
message.channel.send({ embed });
}
});
client.login(token);
console.log('Preparing to start!')
const fs = require('fs');
const Discord = require('discord.js');
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();
const activities_list = [
"with n!help",
"Where am I?",
"with Sylveons!",
"on my host's hard disk",
"with Happy",
"HAAAAAAAAPPPPPPPYYYYYYYYYYYYYYYYYYYY",
"Running on " + process.platform + " / " + os.version() + "!",
"with the tea machine",
"with Borked Computers",
"on Happy's main PC- wait shoot she's coming",
"btw I use Debian linux"
];
const footicon = "https://media.discordapp.net/attachments/549707869138714635/793524910172667964/Screenshot_26.png"
const footer = "Made with ❤ in Illinois | Anitrox © 2018-2021 IDeletedSystem64"
const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js'));
for (const file of commandFiles) {
const command = require(`./commands/${file}`);
client.commands.set(command.name, command);
}
client.on("error", (e) => console.error(e));
client.on("warn", (e) => console.warn(e));
client.on("debug", (e) => console.info(e))
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);
client.on('message', message => {
if (!message.content.startsWith(prefix) || message.author.bot) return;
const args = message.content.slice(prefix.length).split(/ +/);
const command = args.shift().toLowerCase();
if (!client.commands.has(command)) return;
try {
client.commands.get(command).execute(client, message, args);
} catch (error) {
const embed = {
"title": "<:NyabotError:697145462347661412> **An error occurred!**",
"color": 13632027,
"footer": {
"icon_url": "https://cdn.discordapp.com/attachments/549707869138714635/793524910172667964/Screenshot_26.png",
"text": "Anitrox © IDeletedSystem64 2018-2021 All Rights Reserved."
},
"fields": [
{
"name": "**What Happened?**",
"value": "The command you tried to run failed to execute"
},
{
"name": "Error Info",
"value": error.message
}
]
};
message.channel.send({ embed });
}
});
client.login(token);