lots of changes
This commit is contained in:
parent
304d0ccb96
commit
f7fd3b99a4
60 changed files with 3029 additions and 878 deletions
|
@ -1,104 +1,126 @@
|
|||
const Command = require("../../src/structures/Command");
|
||||
const { MessageEmbed } = require("discord.js");
|
||||
const Command = require('../../src/structures/Command');
|
||||
const { MessageEmbed } = require('discord.js');
|
||||
|
||||
module.exports = class Help extends Command {
|
||||
constructor() {
|
||||
super({
|
||||
name: "help",
|
||||
description:
|
||||
"View a list of available commands, or view information on a specific command.",
|
||||
aliases: ["h"],
|
||||
module: "General",
|
||||
cooldown: 0,
|
||||
guildOnly: false,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
constructor() {
|
||||
super({
|
||||
name: 'help',
|
||||
description: 'View a list of available commands or information on a specific command.',
|
||||
aliases: [ 'h' ],
|
||||
module: 'General',
|
||||
cooldown: 0,
|
||||
guildOnly: false,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
|
||||
async command(ctx) {
|
||||
if (!ctx.args.length) {
|
||||
const commands = [
|
||||
[
|
||||
"General",
|
||||
ctx.client.commands
|
||||
.filter(command => command.module == "General")
|
||||
.map(command => `**${command.name}** - ${command.description}`)
|
||||
.join("\n")
|
||||
]
|
||||
];
|
||||
async command(ctx) {
|
||||
if (!ctx.args.length) {
|
||||
const commands = [
|
||||
[
|
||||
'General',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'General')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
],
|
||||
/* [
|
||||
'Images',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'Images')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
], */
|
||||
[
|
||||
'Images',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'Images')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
],
|
||||
[
|
||||
'Roleplay',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'Roleplay')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
],
|
||||
[
|
||||
'Settings',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'Settings')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
]
|
||||
];
|
||||
|
||||
if (ctx.isDeveloper)
|
||||
commands.push([
|
||||
"Developers",
|
||||
ctx.client.commands
|
||||
.filter(command => command.module == "Developers")
|
||||
.map(command => command.name)
|
||||
.join(", ")
|
||||
]);
|
||||
if (ctx.isDeveloper)
|
||||
commands.push([
|
||||
'Developers',
|
||||
ctx.client.commands
|
||||
.filter((command) => command.module == 'Developers')
|
||||
.map((command) => `${command.name}`)
|
||||
.join(' | ')
|
||||
]);
|
||||
|
||||
return ctx.send({
|
||||
embed: {
|
||||
fields: commands.map(group => {
|
||||
return new Object({
|
||||
name: group[0],
|
||||
value: group[1]
|
||||
});
|
||||
}),
|
||||
color: 0xff873f
|
||||
}
|
||||
});
|
||||
} else {
|
||||
const command = ctx.client.commands.find(
|
||||
c =>
|
||||
c.name == ctx.args[0].toLowerCase() ||
|
||||
(c.aliases && c.aliases.includes(ctx.args[0].toLowerCase()))
|
||||
);
|
||||
return ctx.send({
|
||||
embed: {
|
||||
description: `Use \`'help command\` to get help on a specific command`,
|
||||
fields: commands.map((group) => {
|
||||
return new Object({
|
||||
name: group[0],
|
||||
value: group[1]
|
||||
});
|
||||
}),
|
||||
color: 0xff873f
|
||||
}
|
||||
});
|
||||
} else {
|
||||
const command = ctx.client.commands.find(
|
||||
(c) =>
|
||||
c.name == ctx.args[0].toLowerCase() || (c.aliases && c.aliases.includes(ctx.args[0].toLowerCase()))
|
||||
);
|
||||
|
||||
let fields = [
|
||||
{
|
||||
name: "Module",
|
||||
value: command.module,
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: "Aliases",
|
||||
value:
|
||||
command.aliases.length == 0
|
||||
? "No aliases"
|
||||
: command.aliases.join(", "),
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: "Cooldown",
|
||||
value: command.cooldown == 0 ? "No cooldown" : `${command.cooldown}s`,
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: "Server only?",
|
||||
value: command.guildOnly ? "Yes" : "No",
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: "Developers only?",
|
||||
value: command.developerOnly ? "Yes" : "No",
|
||||
inline: true
|
||||
}
|
||||
];
|
||||
let fields = [
|
||||
{
|
||||
name: 'Module',
|
||||
value: command.module,
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: 'Aliases',
|
||||
value: command.aliases.length == 0 ? 'No aliases' : command.aliases.join(', '),
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: 'Cooldown',
|
||||
value: command.cooldown == 0 ? 'No cooldown' : `${command.cooldown}s`,
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: 'Server only?',
|
||||
value: command.guildOnly ? 'Yes' : 'No',
|
||||
inline: true
|
||||
},
|
||||
{
|
||||
name: 'Developers only?',
|
||||
value: command.developerOnly ? 'Yes' : 'No',
|
||||
inline: true
|
||||
}
|
||||
];
|
||||
|
||||
if (!command)
|
||||
return ctx.send(
|
||||
`That command couldn't be found. See the \`help\` command for valid commands.`
|
||||
);
|
||||
if (!command)
|
||||
return ctx.send(`That command couldn't be found. See the \`help\` command for valid commands.`);
|
||||
|
||||
let embed = new MessageEmbed()
|
||||
.setTitle(command.name)
|
||||
.setDescription(command.description)
|
||||
.setColor(0xff873f);
|
||||
fields.forEach(i => {
|
||||
embed.addField(i.name, i.value, i.inline);
|
||||
});
|
||||
let embed = new MessageEmbed()
|
||||
.setTitle(command.name)
|
||||
.setDescription(command.description)
|
||||
.setColor(0xff873f);
|
||||
fields.forEach((i) => {
|
||||
embed.addField(i.name, i.value, i.inline);
|
||||
});
|
||||
|
||||
return ctx.send(embed);
|
||||
}
|
||||
}
|
||||
return ctx.send(embed);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
|
@ -1,42 +1,53 @@
|
|||
const Command = require("../../src/structures/Command");
|
||||
const { MessageEmbed } = require("discord.js");
|
||||
const { developers, contributors, source } = require("../../config");
|
||||
const { version: DiscordVersion } = require("discord.js");
|
||||
|
||||
const Command = require('../../src/structures/Command');
|
||||
const { MessageEmbed, version: DiscordVersion } = require('discord.js');
|
||||
const { developers, contributors, source, color } = require('../../config');
|
||||
const db = require('quick.db');
|
||||
const Backend = new db.table('backend');
|
||||
module.exports = class Info extends Command {
|
||||
constructor() {
|
||||
super({
|
||||
name: "info",
|
||||
description: "Show the Makers and Contributors of the Bot",
|
||||
aliases: ["about"],
|
||||
module: "General",
|
||||
cooldown: 0,
|
||||
guildOnly: false,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
constructor() {
|
||||
super({
|
||||
name: 'info',
|
||||
description: 'Show the Makers and Contributors of the Bot',
|
||||
aliases: [ 'about' ],
|
||||
module: 'General',
|
||||
cooldown: 0,
|
||||
guildOnly: false,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
|
||||
async command(ctx) {
|
||||
let result;
|
||||
const contribs = [];
|
||||
for (const { id, nick, reason } of contributors) {
|
||||
const user = await ctx.client.users.fetch(id);
|
||||
contribs.push(`${user} (${nick}) - ${reason}`);
|
||||
}
|
||||
const Contributors = contribs.join("\n");
|
||||
let CreditEmbed = new MessageEmbed()
|
||||
.setTitle(`Thaldrin, a Random Image and Utility Bot`)
|
||||
.setDescription(
|
||||
`Made by ${ctx.utils.format.bold(
|
||||
ctx.client.users.find(user => user.id === "318044130796109825").tag
|
||||
)}`
|
||||
)
|
||||
.addField("Language", "Javascript", true)
|
||||
.addField("Library", `d.js - v${DiscordVersion}`, true)
|
||||
.addField("Node", `${process.version}`, true)
|
||||
.addField("Contributors", Contributors)
|
||||
.addField("Source", `[gitdab.com/r/thaldrin](${source})`);
|
||||
async command(ctx) {
|
||||
let result;
|
||||
const contribs = [];
|
||||
for (const { id, nick, reason } of contributors) {
|
||||
const user = await ctx.client.users.fetch(id);
|
||||
contribs.push(`${user} (${nick}) - ${reason}`);
|
||||
}
|
||||
const Contributors = contribs.join('\n');
|
||||
let CreditEmbed = new MessageEmbed()
|
||||
.setTitle(`${ctx.client.user.username}, a Random Image and Utility Bot`)
|
||||
.setColor(color)
|
||||
.setDescription(
|
||||
`Made by ${ctx.utils.format.bold(
|
||||
ctx.client.users.find((user) => user.id === '318044130796109825').tag
|
||||
)}`
|
||||
)
|
||||
/* .addField('Language', 'Javascript', true)
|
||||
.addField('Library', `d.js - v${DiscordVersion}`, true)
|
||||
.addField('Node', `${process.version}`, true)
|
||||
.addField('Servers', ctx.client.guilds.size, true)
|
||||
.addField('Users', ctx.client.users.size, true) */
|
||||
.addField('Contributors', Contributors)
|
||||
.addField('Source', `[gd/r/thaldrin](${source})`, true)
|
||||
.addField(
|
||||
'Support Server',
|
||||
`[${ctx.client.guilds.get('438316852347666432').name}](https://discord.gg/${ctx.db.backend.get(
|
||||
'Info.invite'
|
||||
)})`,
|
||||
true
|
||||
)
|
||||
.addField('Website', `[thaldr.in](https://thaldr.in)`, true);
|
||||
|
||||
ctx.send(CreditEmbed);
|
||||
}
|
||||
ctx.send(CreditEmbed);
|
||||
}
|
||||
};
|
||||
|
|
70
DiscordModules/General/serverinfo.js
Normal file
70
DiscordModules/General/serverinfo.js
Normal file
|
@ -0,0 +1,70 @@
|
|||
const Command = require('../../src/structures/Command');
|
||||
|
||||
module.exports = class ServerInfo extends Command {
|
||||
constructor() {
|
||||
super({
|
||||
name: 'serverinfo',
|
||||
description: 'Shows Information about your Server!',
|
||||
aliases: [ 'server', 'sinfo', 'si' ],
|
||||
module: 'General',
|
||||
cooldown: 0,
|
||||
guildOnly: true,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
|
||||
async command(ctx) {
|
||||
const total = ctx.guild.members.size;
|
||||
const users = ctx.guild.members.filter((m) => !m.user.bot).size;
|
||||
const bots = ctx.guild.members.filter((m) => m.user.bot).size;
|
||||
const Features = ctx.guild.features;
|
||||
let OnlineUsers =
|
||||
ctx.utils.emotes.MemberStatus['online'] +
|
||||
ctx.guild.members.filter((m) => m.presence.status === 'online').size;
|
||||
let DNDUsers =
|
||||
ctx.utils.emotes.MemberStatus['dnd'] + ctx.guild.members.filter((m) => m.presence.status === 'dnd').size;
|
||||
let IdleUsers =
|
||||
ctx.utils.emotes.MemberStatus['idle'] + ctx.guild.members.filter((m) => m.presence.status === 'idle').size;
|
||||
let OfflineUsers =
|
||||
ctx.utils.emotes.MemberStatus['offline'] +
|
||||
ctx.guild.members.filter((m) => m.presence.status === 'offline').size;
|
||||
|
||||
let features = [];
|
||||
Features.forEach((f) => features.push(ctx.utils.emotes.features[f.toLowerCase()] || f));
|
||||
|
||||
let Embed = new ctx.utils.discord.MessageEmbed();
|
||||
Embed.setTitle(ctx.guild.name)
|
||||
.setColor(ctx.config.color)
|
||||
.setThumbnail(ctx.guild.iconURL())
|
||||
.addField(
|
||||
'Members',
|
||||
`${ctx.utils.format.bold(`Total:`)} ${ctx.utils.format.code(total)}\n${ctx.utils.format.bold(
|
||||
`Users:`
|
||||
)} ${ctx.utils.format.code(users)}\n${ctx.utils.format.bold(`Bots:`)} ${ctx.utils.format.code(bots)}
|
||||
|
||||
${OnlineUsers}
|
||||
${DNDUsers}
|
||||
${IdleUsers}
|
||||
${OfflineUsers}`
|
||||
)
|
||||
.addField('Owner', ctx.guild.owner, true)
|
||||
.addField('Large?', ctx.guild.large ? ctx.utils.emotes.settings.on : ctx.utils.emotes.settings.off, true)
|
||||
.addField(
|
||||
'Boost Level / Boosters',
|
||||
`${ctx.guild.premiumTier} / ${ctx.guild.premiumSubscriptionCount}`,
|
||||
true
|
||||
)
|
||||
.addField('Region', ctx.utils.emotes.regions[ctx.guild.region] || ctx.guild.region, true)
|
||||
.addField('Features', features.join(' **|** '));
|
||||
if (ctx.guild.vanityURLCode) {
|
||||
Embed.addField(
|
||||
'Vanity URL',
|
||||
`[discord.gg/${ctx.guild.vanityURLCode}](https://discord.gg/${ctx.guild.vanityURLCode})`
|
||||
);
|
||||
}
|
||||
/* .addField('Large?')
|
||||
.addField('Large?'); */
|
||||
|
||||
ctx.send(Embed);
|
||||
}
|
||||
};
|
50
DiscordModules/General/system.js
Normal file
50
DiscordModules/General/system.js
Normal file
|
@ -0,0 +1,50 @@
|
|||
const Command = require('../../src/structures/Command');
|
||||
const { MessageEmbed, version: DiscordVersion } = require('discord.js');
|
||||
const os = require('os');
|
||||
const { developers, contributors, source, color } = require('../../config');
|
||||
const db = require('quick.db');
|
||||
const Backend = new db.table('backend');
|
||||
function format(seconds) {
|
||||
function pad(s) {
|
||||
return (s < 10 ? '0' : '') + s;
|
||||
}
|
||||
var hours = Math.floor(seconds / (60 * 60));
|
||||
var minutes = Math.floor((seconds % (60 * 60)) / 60);
|
||||
var seconds = Math.floor(seconds % 60);
|
||||
|
||||
return pad(hours) + 'h ' + pad(minutes) + 'm ' + pad(seconds) + 's';
|
||||
}
|
||||
|
||||
module.exports = class Info extends Command {
|
||||
constructor() {
|
||||
super({
|
||||
name: 'system',
|
||||
description: 'Show System Info',
|
||||
aliases: [ 'sys', 'sysinfo' ],
|
||||
module: 'General',
|
||||
cooldown: 0,
|
||||
guildOnly: false,
|
||||
developerOnly: false
|
||||
});
|
||||
}
|
||||
|
||||
async command(ctx) {
|
||||
let SystemEmbed = new MessageEmbed()
|
||||
.setTitle(`${ctx.client.user.username} | v${ctx.config.version}`)
|
||||
.setColor(color)
|
||||
.setDescription(
|
||||
`Made by ${ctx.utils.format.bold(
|
||||
ctx.client.users.find((user) => user.id === '318044130796109825').tag
|
||||
)}`
|
||||
)
|
||||
.addField('Language', 'Javascript', true)
|
||||
.addField('Library', `d.js - v${DiscordVersion}`, true)
|
||||
.addField('Uptime', `${format(process.uptime())}`, true)
|
||||
.addField('Node', `${process.version}`, true)
|
||||
.addField('Servers', ctx.client.guilds.size, true)
|
||||
.addField('Users', ctx.client.users.size, true)
|
||||
.addField('Total sauce found', ctx.db.backend.get('SourceFynnder.found'), true);
|
||||
|
||||
ctx.send(SystemEmbed);
|
||||
}
|
||||
};
|
59
DiscordModules/General/userinfo.js
Normal file
59
DiscordModules/General/userinfo.js
Normal file
|
@ -0,0 +1,59 @@
|
|||
const Command = require('../../src/structures/Command');
|
||||
module.exports = class Userinfo extends Command {
|
||||
constructor() {
|
||||
super({
|
||||
name: 'userinfo',
|
||||
description: 'Shows User Information',
|
||||
aliases: [ 'user', 'ui', 'uinfo' ],
|
||||
module: 'General',
|
||||
cooldown: 2,
|
||||
guildOnly: true,
|
||||
developerOnly: false,
|
||||
nsfw: false
|
||||
});
|
||||
}
|
||||
|
||||
async command(ctx) {
|
||||
let User;
|
||||
let Game;
|
||||
let Embed = new ctx.utils.discord.MessageEmbed();
|
||||
User = ctx.msg.mentions.members.first() || /* ctx.args[0] || */ ctx.member;
|
||||
|
||||
if (User.presence.activity === null) {
|
||||
Game = 'Playing Nothing';
|
||||
} else {
|
||||
if (User.presence.activity.name === 'Custom Status') {
|
||||
Game = `• ${User.presence.activity.state || 'Error'}`;
|
||||
} else {
|
||||
if (User.presence.activity.details === null) {
|
||||
User.presence.activity.details = '*_ _*';
|
||||
User.presence.activity.state = '*_ _*';
|
||||
} else {
|
||||
Game = `
|
||||
${User.presence.activity.name}
|
||||
${User.presence.activity.details}
|
||||
${User.presence.activity.state}`;
|
||||
}
|
||||
}
|
||||
}
|
||||
let Roles = [];
|
||||
let x = 0;
|
||||
for (const role of User.roles) {
|
||||
Roles.push(`<@&${role[0]}>`);
|
||||
}
|
||||
|
||||
Embed.setTitle(`Info on ${User.nickname}`)
|
||||
.setColor(ctx.config.color)
|
||||
.addField('Username', User.user.tag, true)
|
||||
.addField('ID', User.user.id, true)
|
||||
.addField(`Status | ${ctx.utils.emotes.status[User.presence.status]}`, Game);
|
||||
if (Roles.length > 15) {
|
||||
Embed.addField(`Roles [${Roles.length}]`, 'Too many to list' || 'Error');
|
||||
} else {
|
||||
Embed.addField(`Roles [${Roles.length}]`, Roles.join(' **|** '));
|
||||
}
|
||||
Embed.setThumbnail(User.user.avatarURL());
|
||||
|
||||
ctx.send(Embed).catch((err) => ctx.send('```js\n' + err + '```'));
|
||||
}
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue