mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
Changes to branding, custom and fallback emojis. Fixed help command.
This commit is contained in:
parent
d0d6841353
commit
c15076f834
@ -14,9 +14,10 @@ module.exports = {
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(message.bugTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/686296221433725076.png")
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(message.bugDescription)
|
||||
.setFooter('EximiaBots by Warén Media');
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
msg.channel.send(embed);
|
||||
|
||||
},
|
||||
|
@ -15,14 +15,15 @@ module.exports = {
|
||||
message.helpCommandTitle = client.messages.helpCommandTitle.replace("%client.config.prefix%", client.config.prefix);
|
||||
message.helpCommandTitle = message.helpCommandTitle.replace("%command.name%", command.name);
|
||||
message.helpCommandTitle = message.helpCommandTitle.replace("%command.usage%", command.usage);
|
||||
message.helpCommandDescription = client.messages.helpCommandTitle.replace("%command.description%", command.description);
|
||||
message.helpCommandDescription = client.messages.helpCommandDescription.replace("%command.description%", command.description);
|
||||
message.helpCommandDescription = message.helpCommandDescription.replace("%command.alias%", command.alias);
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(message.helpCommandTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/686296221433725076.png")
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(message.helpCommandDescription)
|
||||
.setFooter('EximiaBots by Warén Media')
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
msg.channel.send(embed);
|
||||
} else {
|
||||
const categories = [];
|
||||
@ -40,9 +41,10 @@ module.exports = {
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(message.helpTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/686296221433725076.png")
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(message.helpDescription)
|
||||
.setFooter('EximiaBots by Warén Media');
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
msg.channel.send(embed);
|
||||
}
|
||||
}
|
||||
|
@ -10,9 +10,10 @@ module.exports = {
|
||||
message.inviteTitle = client.messages.inviteTitle.replace("%client.user.username%", client.user.username);
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(message.inviteTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/686296221433725076.png")
|
||||
.setColor(client.config.embedColor)
|
||||
.setURL(client.config.invite)
|
||||
.setFooter('EximiaBots by Warén Media');
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
return msg.channel.send(embed);
|
||||
}
|
||||
};
|
@ -14,9 +14,10 @@ module.exports = {
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(client.messages.listTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["list"].replace(/[^0-9]+/g, ''))
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(stations)
|
||||
.setFooter('EximiaBots by Warén Media')
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
return msg.channel.send(embed);
|
||||
}
|
||||
};
|
@ -18,9 +18,10 @@ module.exports = {
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
.setTitle(client.messages.nowplayingTitle)
|
||||
.setThumbnail("https://cdn.discordapp.com/emojis/" + client.messageEmojis["play"].replace(/[^0-9]+/g, ''))
|
||||
.setColor(client.config.embedColor)
|
||||
.setDescription(message.nowplayingDescription)
|
||||
.setFooter('EximiaBots by Warén Media');
|
||||
.setFooter('EximiaBots by Warén Media', 'https://cdn.discordapp.com/emojis/687022937978568760.png');
|
||||
return msg.channel.send(embed);
|
||||
}
|
||||
};
|
||||
|
@ -10,17 +10,17 @@ module.exports = {
|
||||
const radio = client.radio.get(msg.guild.id);
|
||||
const voiceChannel = msg.member.voice.channel;
|
||||
if (!radio) {
|
||||
if (!msg.member.voice.channel) return msg.channel.send(client.messages.noVoiceChannel);
|
||||
if (!msg.member.voice.channel) return msg.channel.send(client.messageEmojis["x"] + client.messages.noVoiceChannel);
|
||||
} else {
|
||||
if (voiceChannel !== radio.voiceChannel) return msg.channel.send(client.messages.wrongVoiceChannel);
|
||||
if (voiceChannel !== radio.voiceChannel) return msg.channel.send(client.messageEmojis["x"] + client.messages.wrongVoiceChannel);
|
||||
}
|
||||
if (!args[1]) return msg.channel.send(client.messages.noQuery);
|
||||
const permissions = voiceChannel.permissionsFor(msg.client.user);
|
||||
if (!permissions.has('CONNECT')) {
|
||||
return msg.channel.send(client.messages.noPermsConnect);
|
||||
return msg.channel.send(client.messageEmojis["x"] + client.messages.noPermsConnect);
|
||||
}
|
||||
if (!permissions.has('SPEAK')) {
|
||||
return msg.channel.send(client.messages.noPermsSpeak);
|
||||
return msg.channel.send(client.messageEmojis["x"] + client.messages.noPermsSpeak);
|
||||
}
|
||||
let station;
|
||||
const number = parseInt(args[1] - 1);
|
||||
@ -28,15 +28,15 @@ module.exports = {
|
||||
return;
|
||||
} else if (!isNaN(number)) {
|
||||
if (number > client.stations.length - 1) {
|
||||
return msg.channel.send(client.messages.wrongStationNumber);
|
||||
return msg.channel.send(client.messageEmojis["x"] + client.messages.wrongStationNumber);
|
||||
} else {
|
||||
url = client.stations[number].stream[client.stations[number].stream.default];
|
||||
station = client.stations[number];
|
||||
}
|
||||
} else {
|
||||
if (args[1].length < 3) return msg.channel.send(client.messages.tooShortSearch);
|
||||
if (args[1].length < 3) return msg.channel.send(client.messageEmojis["x"] + client.messages.tooShortSearch);
|
||||
const sstation = await searchStation(args.slice(1).join(' '), client);
|
||||
if (!sstation) return msg.channel.send(client.messages.noSearchResults);
|
||||
if (!sstation) return msg.channel.send(client.messageEmojis["x"] + client.messages.noSearchResults);
|
||||
url = sstation.stream[sstation.stream.default];
|
||||
station = sstation
|
||||
}
|
||||
@ -65,7 +65,7 @@ module.exports = {
|
||||
play(msg.guild, client, url);
|
||||
} catch (error) {
|
||||
client.radio.delete(msg.guild.id);
|
||||
return msg.channel.send(`An error occured: ${error}`);
|
||||
return msg.channel.send(client.messageEmojis["x"] + `An error occured: ${error}`);
|
||||
}
|
||||
}
|
||||
};
|
||||
@ -95,7 +95,7 @@ function play(guild, client, url) {
|
||||
dispatcher.setVolume(radio.volume / 10);
|
||||
|
||||
message.play = client.messages.play.replace("%radio.station.name%", radio.station.name);
|
||||
radio.textChannel.send(message.play);
|
||||
radio.textChannel.send(client.messageEmojis["play"] + message.play);
|
||||
radio.playing = true;
|
||||
|
||||
};
|
||||
|
@ -11,7 +11,7 @@ module.exports = {
|
||||
radio.connection.dispatcher.destroy();
|
||||
radio.voiceChannel.leave();
|
||||
client.radio.delete(msg.guild.id);
|
||||
msg.channel.send(client.messages.stop);
|
||||
msg.channel.send(client.messageEmojis["stop"] + client.messages.stop);
|
||||
}
|
||||
}
|
||||
};
|
@ -31,5 +31,7 @@ module.exports = {
|
||||
client.stations = await fetch('https://gitea.cwinfo.org/cwchristerw/radio/raw/branch/master/playlist.json')
|
||||
.then(res => res.json());
|
||||
}, 3600000);
|
||||
|
||||
require(`../struct/emojis.js`).execute(client, Discord);
|
||||
}
|
||||
}
|
@ -3,16 +3,16 @@ module.exports = function (client, msg, command) {
|
||||
const radio = client.radio.get(msg.guild.id);
|
||||
const permissions = msg.channel.permissionsFor(msg.author);
|
||||
if (!radio || !radio.playing){
|
||||
msg.channel.send(client.messages.notPlaying);
|
||||
msg.channel.send(client.messageEmojis["x"] + client.messages.notPlaying);
|
||||
return false;
|
||||
}
|
||||
if (msg.member.voice.channel !== radio.voiceChannel){
|
||||
msg.channel.send(client.messages.wrongVoiceChannel);
|
||||
msg.channel.send(client.messageEmojis["x"] + client.messages.wrongVoiceChannel);
|
||||
return false;
|
||||
}
|
||||
if (!permissions.has(command.permission)) {
|
||||
message.noPerms = client.messages.noPerms.replace("%commands.permissions%", commands.permissions);
|
||||
msg.channel.send(message.noPerms);
|
||||
msg.channel.send(client.messageEmojis["x"] + message.noPerms);
|
||||
return false;
|
||||
} else return true;
|
||||
};
|
||||
|
30
struct/emojis.js
Normal file
30
struct/emojis.js
Normal file
@ -0,0 +1,30 @@
|
||||
module.exports = {
|
||||
name: 'emojis',
|
||||
async execute(client, Discord) {
|
||||
let customEmojis = {
|
||||
list: "<:RadioXList:688541155519889482>",
|
||||
play: "<:RadioXPlay:688541155712827458>",
|
||||
stop: "<:RadioXStop:688541155377414168>",
|
||||
x: "<:RadioXX:688541155792781320>"
|
||||
};
|
||||
|
||||
let fallbackEmojis = {
|
||||
list: "📜",
|
||||
play: "▶️",
|
||||
stop: "⏹️",
|
||||
x: "❌"
|
||||
};
|
||||
|
||||
client.messageEmojis = {};
|
||||
|
||||
for(customEmojiName in customEmojis){
|
||||
customEmojiID = customEmojis[customEmojiName].replace(/[^0-9]+/g, '');
|
||||
customEmoji = client.emojis.cache.get(customEmojiID);
|
||||
if(customEmoji){
|
||||
client.messageEmojis[customEmojiName] = customEmojis[customEmojiName];
|
||||
} else {
|
||||
client.messageEmojis[customEmojiName] = fallbackEmojis[customEmojiName];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user