mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 05:10:17 +00:00
Chore 3.7.2
This commit is contained in:
parent
78131d1fde
commit
8f7ff16497
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "musix",
|
"name": "musix",
|
||||||
"version": "3.7.1",
|
"version": "3.7.2",
|
||||||
"description": "V3 for Musix the discord music bot",
|
"description": "V3 for Musix the discord music bot",
|
||||||
"main": "./index.js",
|
"main": "./index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
@ -35,7 +35,7 @@ module.exports = {
|
|||||||
)
|
)
|
||||||
.setFooter(`Queued by ${queue.songs[0].author.tag}`)
|
.setFooter(`Queued by ${queue.songs[0].author.tag}`)
|
||||||
.setURL(queue.songs[0].url)
|
.setURL(queue.songs[0].url)
|
||||||
.setThumbnail(queue.songs[0].info.thumbnail.thumbnails[4].url)
|
.setThumbnail(queue.songs[0].info.thumbnail.thumbnails[4].url || queue.songs[0].info.thumbnail.thumbnails[3].url || queue.songs[0].info.thumbnail.thumbnails[2].url || queue.songs[0].info.thumbnail.thumbnails[1].url || queue.songs[0].info.thumbnail.thumbnails[0].url)
|
||||||
.setColor(client.config.embedColor);
|
.setColor(client.config.embedColor);
|
||||||
if (queue.nigthCore)
|
if (queue.nigthCore)
|
||||||
embed.setDescription(
|
embed.setDescription(
|
||||||
|
28
src/commands/system.js
Normal file
28
src/commands/system.js
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
module.exports = {
|
||||||
|
name: 'system',
|
||||||
|
alias: ["sys", "sysinfo"],
|
||||||
|
usage: '',
|
||||||
|
description: 'See system information',
|
||||||
|
onlyDev: true,
|
||||||
|
permission: 'none',
|
||||||
|
category: 'info',
|
||||||
|
execute(msg, args, client, Discord, command) {
|
||||||
|
const uptime = client.funcs.msToTime(client.uptime, "dd:hh:mm:ss");
|
||||||
|
msg.channel.send(client.messages.pinging).then(m => {
|
||||||
|
const latency = m.createdTimestamp - msg.createdTimestamp;
|
||||||
|
|
||||||
|
const embed = new Discord.MessageEmbed()
|
||||||
|
.setTitle(client.messages.statusTitle)
|
||||||
|
.addField(client.messages.statusField1, client.ws.ping, true)
|
||||||
|
.addField(client.messages.statusField2, latency, true)
|
||||||
|
.addField(client.messages.statusField3, uptime, true)
|
||||||
|
.addField(client.messages.statusField4, client.shard.ids)
|
||||||
|
.addField("ram usage", `${process.memoryUsage().heapUsed} / ${process.memoryUsage().heapTotal}`, true)
|
||||||
|
.addField("cpu usage", process.cpuUsage().system, true)
|
||||||
|
.setAuthor(client.user.username, client.user.displayAvatarURL)
|
||||||
|
.setColor(client.config.embedColor)
|
||||||
|
m.delete();
|
||||||
|
return msg.channel.send(embed);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
@ -1,3 +1,5 @@
|
|||||||
|
const ms = require("ms");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
name: "message",
|
name: "message",
|
||||||
async execute(client, msg, Discord) {
|
async execute(client, msg, Discord) {
|
||||||
@ -35,7 +37,7 @@ function getCommand(client, args, msg, Discord) {
|
|||||||
(cmd) => cmd.alias && cmd.alias.includes(commandName)
|
(cmd) => cmd.alias && cmd.alias.includes(commandName)
|
||||||
);
|
);
|
||||||
if (!command) return;
|
if (!command) return;
|
||||||
if (command.onlyDev && msg.author.id !== client.config.devId) return;
|
if (command.onlyDev && msg.author.id !== client.config.devId) return msg.channel.send(client.messages.onlyDev);
|
||||||
if (client.config.devMode && msg.member.id !== client.config.devId && msg.guild.id !== "718081535240306738")
|
if (client.config.devMode && msg.member.id !== client.config.devId && msg.guild.id !== "718081535240306738")
|
||||||
return msg.channel.send(client.messages.devMode);
|
return msg.channel.send(client.messages.devMode);
|
||||||
client.funcs.exe(msg, args, client, Discord, command);
|
client.funcs.exe(msg, args, client, Discord, command);
|
||||||
|
@ -24,7 +24,7 @@ module.exports = {
|
|||||||
embedColor: "#b50002",
|
embedColor: "#b50002",
|
||||||
invite: "https://discordapp.com/oauth2/authorize?client_id=607266889537945605&permissions=3427328&scope=bot",
|
invite: "https://discordapp.com/oauth2/authorize?client_id=607266889537945605&permissions=3427328&scope=bot",
|
||||||
supportServer: "https://discord.gg/rvHuJtB",
|
supportServer: "https://discord.gg/rvHuJtB",
|
||||||
devMode: false,
|
devMode: true,
|
||||||
api: false,
|
api: false,
|
||||||
saveDB: true,
|
saveDB: true,
|
||||||
respawn: true,
|
respawn: true,
|
||||||
|
@ -122,7 +122,7 @@ module.exports = {
|
|||||||
"I'm sorry but you need to be in a voice channel to play music!",
|
"I'm sorry but you need to be in a voice channel to play music!",
|
||||||
nowPlaying: "__Now playing__",
|
nowPlaying: "__Now playing__",
|
||||||
nowPremium: ":tada: Guild %GUILD% is now premium!",
|
nowPremium: ":tada: Guild %GUILD% is now premium!",
|
||||||
onlyDev: emojis.redx + "This command is only available for dev(s)!",
|
onlyDev: emojis.redx + "This command is only available for the bots owner!",
|
||||||
paused: emojis.pause + "Paused the music!",
|
paused: emojis.pause + "Paused the music!",
|
||||||
permission: "🔒 Permission requirement:",
|
permission: "🔒 Permission requirement:",
|
||||||
permissionsFalse: emojis.redx + "That value is already `false`!",
|
permissionsFalse: emojis.redx + "That value is already `false`!",
|
||||||
|
Loading…
Reference in New Issue
Block a user