",
+ description: "Saves a transcript of the specified number of messages as an HTML file in Discord's dark theme style.",
+ type: "bot",
+
+ run: async (client, message, args, cmduser, text, prefix) => {
+ const es = client.settings.get(message.guild.id, "embed");
+ const ls = client.settings.get(message.guild.id, "language");
+
+ try {
+ if (!message.member.permissions.has('ADMINISTRATOR')) {
+ return message.reply("You need administrator permissions to use this command.");
+ }
+
+ const limit = parseInt(args[0]);
+ if (!limit || isNaN(limit) || limit < 1 || limit > 100) {
+ return message.reply("Please provide a valid number of messages to save (1-100).");
+ }
+
+ const messages = await message.channel.messages.fetch({ limit: limit + 1 });
+
+ const filteredMessages = messages
+ .filter(m => !m.author.bot)
+ .map(m => {
+ const timestamp = m.createdAt.toLocaleString('en-US', { timeZone: 'UTC' });
+ return `
+ ${timestamp}
+ ${m.author.tag}: ${m.content}
+
`;
+ })
+ .reverse()
+ .join("");
+
+ const fileName = `transcript_${message.channel.id}_${Date.now()}.html`;
+
+ const htmlContent = `
+
+
+
+ Discord Transcript
+
+
+
+ ${filteredMessages}
+
+
+ `;
+
+ fs.writeFileSync(fileName, htmlContent);
+
+ const transcriptFile = new MessageAttachment(fileName, "transcript.html");
+ await message.channel.send({ files: [transcriptFile] });
+
+ fs.unlinkSync(fileName);
+
+ } catch (e) {
+ console.log(String(e.stack).grey.bgRed);
+ return message.reply({
+ embeds: [new MessageEmbed()
+ .setColor(es.wrongcolor)
+ .setFooter(client.getFooter(es))
+ .setTitle(client.la[ls].common.erroroccur)
+ .setDescription(eval(client.la[ls]["cmds"]["info"]["color"]["variable2"]))
+ ]
+ });
+ }
+ }
+};
diff --git a/databases/antinuke/enmap.sqlite b/databases/antinuke/enmap.sqlite
index ced0a02d..309ef0bc 100644
Binary files a/databases/antinuke/enmap.sqlite and b/databases/antinuke/enmap.sqlite differ
diff --git a/databases/antinuke/enmap.sqlite-shm b/databases/antinuke/enmap.sqlite-shm
index 2c25adf0..88bb4365 100644
Binary files a/databases/antinuke/enmap.sqlite-shm and b/databases/antinuke/enmap.sqlite-shm differ
diff --git a/databases/antinuke/enmap.sqlite-wal b/databases/antinuke/enmap.sqlite-wal
index 05e5addb..4e342256 100644
Binary files a/databases/antinuke/enmap.sqlite-wal and b/databases/antinuke/enmap.sqlite-wal differ
diff --git a/databases/apply/enmap.sqlite b/databases/apply/enmap.sqlite
index 19dcaf8d..ba2f7076 100644
Binary files a/databases/apply/enmap.sqlite and b/databases/apply/enmap.sqlite differ
diff --git a/databases/apply/enmap.sqlite-shm b/databases/apply/enmap.sqlite-shm
index 42438f26..422ae236 100644
Binary files a/databases/apply/enmap.sqlite-shm and b/databases/apply/enmap.sqlite-shm differ
diff --git a/databases/apply/enmap.sqlite-wal b/databases/apply/enmap.sqlite-wal
index 020edd74..b46af7d4 100644
Binary files a/databases/apply/enmap.sqlite-wal and b/databases/apply/enmap.sqlite-wal differ
diff --git a/databases/blacklist/enmap.sqlite b/databases/blacklist/enmap.sqlite
index 6a445d9e..5730ef24 100644
Binary files a/databases/blacklist/enmap.sqlite and b/databases/blacklist/enmap.sqlite differ
diff --git a/databases/blacklist/enmap.sqlite-shm b/databases/blacklist/enmap.sqlite-shm
index cf47248f..de2e6fbf 100644
Binary files a/databases/blacklist/enmap.sqlite-shm and b/databases/blacklist/enmap.sqlite-shm differ
diff --git a/databases/blacklist/enmap.sqlite-wal b/databases/blacklist/enmap.sqlite-wal
index 455d42ef..95706491 100644
Binary files a/databases/blacklist/enmap.sqlite-wal and b/databases/blacklist/enmap.sqlite-wal differ
diff --git a/databases/customcommands/enmap.sqlite-shm b/databases/customcommands/enmap.sqlite-shm
index 05389c78..227e4531 100644
Binary files a/databases/customcommands/enmap.sqlite-shm and b/databases/customcommands/enmap.sqlite-shm differ
diff --git a/databases/customcommands/enmap.sqlite-wal b/databases/customcommands/enmap.sqlite-wal
index 378813a8..ae5f02d0 100644
Binary files a/databases/customcommands/enmap.sqlite-wal and b/databases/customcommands/enmap.sqlite-wal differ
diff --git a/databases/economy/enmap.sqlite b/databases/economy/enmap.sqlite
index aeb584b2..baebb5c7 100644
Binary files a/databases/economy/enmap.sqlite and b/databases/economy/enmap.sqlite differ
diff --git a/databases/economy/enmap.sqlite-shm b/databases/economy/enmap.sqlite-shm
index f7a5d8fd..8a4314b7 100644
Binary files a/databases/economy/enmap.sqlite-shm and b/databases/economy/enmap.sqlite-shm differ
diff --git a/databases/economy/enmap.sqlite-wal b/databases/economy/enmap.sqlite-wal
index 592f474a..48139f6d 100644
Binary files a/databases/economy/enmap.sqlite-wal and b/databases/economy/enmap.sqlite-wal differ
diff --git a/databases/jointocreatemap/enmap.sqlite-shm b/databases/jointocreatemap/enmap.sqlite-shm
index 63ae1497..aef1c325 100644
Binary files a/databases/jointocreatemap/enmap.sqlite-shm and b/databases/jointocreatemap/enmap.sqlite-shm differ
diff --git a/databases/jointocreatemap/enmap.sqlite-wal b/databases/jointocreatemap/enmap.sqlite-wal
index 7f1949ea..30990d5e 100644
Binary files a/databases/jointocreatemap/enmap.sqlite-wal and b/databases/jointocreatemap/enmap.sqlite-wal differ
diff --git a/databases/jtc1/enmap.sqlite b/databases/jtc1/enmap.sqlite
index 74570fe2..5ce50969 100644
Binary files a/databases/jtc1/enmap.sqlite and b/databases/jtc1/enmap.sqlite differ
diff --git a/databases/jtc1/enmap.sqlite-shm b/databases/jtc1/enmap.sqlite-shm
index 6bebb205..3e163b0a 100644
Binary files a/databases/jtc1/enmap.sqlite-shm and b/databases/jtc1/enmap.sqlite-shm differ
diff --git a/databases/jtc1/enmap.sqlite-wal b/databases/jtc1/enmap.sqlite-wal
index 45c1fcd2..f8855352 100644
Binary files a/databases/jtc1/enmap.sqlite-wal and b/databases/jtc1/enmap.sqlite-wal differ
diff --git a/databases/keyword/enmap.sqlite b/databases/keyword/enmap.sqlite
index e583e3b9..776e6753 100644
Binary files a/databases/keyword/enmap.sqlite and b/databases/keyword/enmap.sqlite differ
diff --git a/databases/keyword/enmap.sqlite-shm b/databases/keyword/enmap.sqlite-shm
index c9c87723..6f615cda 100644
Binary files a/databases/keyword/enmap.sqlite-shm and b/databases/keyword/enmap.sqlite-shm differ
diff --git a/databases/keyword/enmap.sqlite-wal b/databases/keyword/enmap.sqlite-wal
index efcf8340..772a0f36 100644
Binary files a/databases/keyword/enmap.sqlite-wal and b/databases/keyword/enmap.sqlite-wal differ
diff --git a/databases/premium/enmap.sqlite b/databases/premium/enmap.sqlite
index dbbe55d0..4115a13e 100644
Binary files a/databases/premium/enmap.sqlite and b/databases/premium/enmap.sqlite differ
diff --git a/databases/premium/enmap.sqlite-shm b/databases/premium/enmap.sqlite-shm
index 3b75767a..f5b0cd3a 100644
Binary files a/databases/premium/enmap.sqlite-shm and b/databases/premium/enmap.sqlite-shm differ
diff --git a/databases/premium/enmap.sqlite-wal b/databases/premium/enmap.sqlite-wal
index d3583d86..bfd078a1 100644
Binary files a/databases/premium/enmap.sqlite-wal and b/databases/premium/enmap.sqlite-wal differ
diff --git a/databases/queuesaves/enmap.sqlite-shm b/databases/queuesaves/enmap.sqlite-shm
index 6295f09f..2d11917f 100644
Binary files a/databases/queuesaves/enmap.sqlite-shm and b/databases/queuesaves/enmap.sqlite-shm differ
diff --git a/databases/queuesaves/enmap.sqlite-wal b/databases/queuesaves/enmap.sqlite-wal
index 7ea566a3..bd27a052 100644
Binary files a/databases/queuesaves/enmap.sqlite-wal and b/databases/queuesaves/enmap.sqlite-wal differ
diff --git a/databases/ranking/enmap.sqlite b/databases/ranking/enmap.sqlite
index 163fe102..a58ee585 100644
Binary files a/databases/ranking/enmap.sqlite and b/databases/ranking/enmap.sqlite differ
diff --git a/databases/ranking/enmap.sqlite-shm b/databases/ranking/enmap.sqlite-shm
index 682740df..30612ca2 100644
Binary files a/databases/ranking/enmap.sqlite-shm and b/databases/ranking/enmap.sqlite-shm differ
diff --git a/databases/ranking/enmap.sqlite-wal b/databases/ranking/enmap.sqlite-wal
index a3178f57..2ee59ae8 100644
Binary files a/databases/ranking/enmap.sqlite-wal and b/databases/ranking/enmap.sqlite-wal differ
diff --git a/databases/reactionrole/enmap.sqlite-shm b/databases/reactionrole/enmap.sqlite-shm
index 151bcdf4..93877760 100644
Binary files a/databases/reactionrole/enmap.sqlite-shm and b/databases/reactionrole/enmap.sqlite-shm differ
diff --git a/databases/reactionrole/enmap.sqlite-wal b/databases/reactionrole/enmap.sqlite-wal
index 32db04dc..b411ca65 100644
Binary files a/databases/reactionrole/enmap.sqlite-wal and b/databases/reactionrole/enmap.sqlite-wal differ
diff --git a/databases/roster/enmap.sqlite-shm b/databases/roster/enmap.sqlite-shm
index 42682859..060f6123 100644
Binary files a/databases/roster/enmap.sqlite-shm and b/databases/roster/enmap.sqlite-shm differ
diff --git a/databases/roster/enmap.sqlite-wal b/databases/roster/enmap.sqlite-wal
index bcdb5457..c5b8c3cc 100644
Binary files a/databases/roster/enmap.sqlite-wal and b/databases/roster/enmap.sqlite-wal differ
diff --git a/databases/settings/enmap.sqlite b/databases/settings/enmap.sqlite
index 925b8f4b..9c34db57 100644
Binary files a/databases/settings/enmap.sqlite and b/databases/settings/enmap.sqlite differ
diff --git a/databases/settings/enmap.sqlite-shm b/databases/settings/enmap.sqlite-shm
index 65186f76..8bec5723 100644
Binary files a/databases/settings/enmap.sqlite-shm and b/databases/settings/enmap.sqlite-shm differ
diff --git a/databases/settings/enmap.sqlite-wal b/databases/settings/enmap.sqlite-wal
index bea4bbc7..0b0f9582 100644
Binary files a/databases/settings/enmap.sqlite-wal and b/databases/settings/enmap.sqlite-wal differ
diff --git a/databases/setups/enmap.sqlite b/databases/setups/enmap.sqlite
index d0d6d471..e2cc1729 100644
Binary files a/databases/setups/enmap.sqlite and b/databases/setups/enmap.sqlite differ
diff --git a/databases/setups/enmap.sqlite-shm b/databases/setups/enmap.sqlite-shm
index 86b5d9a6..d3d38fbb 100644
Binary files a/databases/setups/enmap.sqlite-shm and b/databases/setups/enmap.sqlite-shm differ
diff --git a/databases/setups/enmap.sqlite-wal b/databases/setups/enmap.sqlite-wal
index a0baf0c5..01b251a4 100644
Binary files a/databases/setups/enmap.sqlite-wal and b/databases/setups/enmap.sqlite-wal differ
diff --git a/databases/social_log/enmap.sqlite b/databases/social_log/enmap.sqlite
index 3a233faa..531382a1 100644
Binary files a/databases/social_log/enmap.sqlite and b/databases/social_log/enmap.sqlite differ
diff --git a/databases/social_log/enmap.sqlite-shm b/databases/social_log/enmap.sqlite-shm
index df25726c..9b256e76 100644
Binary files a/databases/social_log/enmap.sqlite-shm and b/databases/social_log/enmap.sqlite-shm differ
diff --git a/databases/social_log/enmap.sqlite-wal b/databases/social_log/enmap.sqlite-wal
index 235d76e1..46bdcfe8 100644
Binary files a/databases/social_log/enmap.sqlite-wal and b/databases/social_log/enmap.sqlite-wal differ
diff --git a/databases/stats/enmap.sqlite b/databases/stats/enmap.sqlite
index f4316b57..00074f88 100644
Binary files a/databases/stats/enmap.sqlite and b/databases/stats/enmap.sqlite differ
diff --git a/databases/stats/enmap.sqlite-shm b/databases/stats/enmap.sqlite-shm
index ade3e91e..f3e5d179 100644
Binary files a/databases/stats/enmap.sqlite-shm and b/databases/stats/enmap.sqlite-shm differ
diff --git a/databases/stats/enmap.sqlite-wal b/databases/stats/enmap.sqlite-wal
index ef10b126..ab8624fd 100644
Binary files a/databases/stats/enmap.sqlite-wal and b/databases/stats/enmap.sqlite-wal differ
diff --git a/databases/warns/enmap.sqlite-shm b/databases/warns/enmap.sqlite-shm
index 4c1dd637..42af890f 100644
Binary files a/databases/warns/enmap.sqlite-shm and b/databases/warns/enmap.sqlite-shm differ
diff --git a/databases/warns/enmap.sqlite-wal b/databases/warns/enmap.sqlite-wal
index c391819c..1172ed99 100644
Binary files a/databases/warns/enmap.sqlite-wal and b/databases/warns/enmap.sqlite-wal differ
diff --git a/handlers/apply.js b/handlers/apply.js
index 37d8c1c7..d84f7d3a 100644
--- a/handlers/apply.js
+++ b/handlers/apply.js
@@ -11,19 +11,19 @@ const Buttons = {
acceptbutton: new MessageButton().setStyle('SUCCESS').setEmoji(`✅`).setCustomId(`Apply_accept`).setLabel(`Accept`),
declinebutton: new MessageButton().setStyle('DANGER').setEmoji(`❌`).setCustomId(`Apply_deny`).setLabel(`Decline`),
ticketbutton: new MessageButton().setStyle('SECONDARY').setEmoji(`🎟️`).setCustomId(`Apply_ticket`).setLabel(`Ask Question`),
- emoji1button: new MessageButton().setStyle('PRIMARY').setEmoji(`:one:`).setCustomId(`Apply_1`),
- emoji2button: new MessageButton().setStyle('PRIMARY').setEmoji(`:two:`).setCustomId(`Apply_2`),
- emoji3button: new MessageButton().setStyle('PRIMARY').setEmoji(`:three:`).setCustomId(`Apply_3`),
- emoji4button: new MessageButton().setStyle('PRIMARY').setEmoji(`:four:`).setCustomId(`Apply_4`),
- emoji5button: new MessageButton().setStyle('PRIMARY').setEmoji(`:five:`).setCustomId(`Apply_5`),
+ emoji1button: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774094351765524`).setCustomId(`Apply_1`),
+ emoji2button: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774123946774590`).setCustomId(`Apply_2`),
+ emoji3button: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774143685165066`).setCustomId(`Apply_3`),
+ emoji4button: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774160831492097`).setCustomId(`Apply_4`),
+ emoji5button: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774179273842738`).setCustomId(`Apply_5`),
acceptbutton_d: new MessageButton().setStyle('SUCCESS').setEmoji(`✅`).setCustomId(`Apply_accept`).setLabel(`Accept`).setDisabled(true),
declinebutton_d: new MessageButton().setStyle('DANGER').setEmoji(`❌`).setCustomId(`Apply_deny`).setLabel(`Decline`).setDisabled(true),
ticketbutton_d: new MessageButton().setStyle('SECONDARY').setEmoji(`🎟️`).setCustomId(`Apply_ticket`).setLabel(`Ask Question`).setDisabled(true),
- emoji1button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`:one:`).setCustomId(`Apply_1`).setDisabled(true),
- emoji2button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`:two:`).setCustomId(`Apply_2`).setDisabled(true),
- emoji3button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`:three:`).setCustomId(`Apply_3`).setDisabled(true),
- emoji4button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`:four:`).setCustomId(`Apply_4`).setDisabled(true),
- emoji5button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`:five:`).setCustomId(`Apply_5`).setDisabled(true),
+ emoji1button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774094351765524`).setCustomId(`Apply_1`).setDisabled(true),
+ emoji2button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774123946774590`).setCustomId(`Apply_2`).setDisabled(true),
+ emoji3button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774143685165066`).setCustomId(`Apply_3`).setDisabled(true),
+ emoji4button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774160831492097`).setCustomId(`Apply_4`).setDisabled(true),
+ emoji5button_d: new MessageButton().setStyle('PRIMARY').setEmoji(`1168774179273842738`).setCustomId(`Apply_5`).setDisabled(true),
}
//Start the module
module.exports = client => {
@@ -446,11 +446,11 @@ module.exports = client => {
"Apply_accept": `✅`,
"Apply_deny": `❌`,
"Apply_ticket": `🎟️`,
- "Apply_1": `:one:`,
- "Apply_2": `:two:`,
- "Apply_3": `:three:`,
- "Apply_4": `:four:`,
- "Apply_5": `:five:`,
+ "Apply_1": `1168774094351765524`,
+ "Apply_2": `1168774123946774590`,
+ "Apply_3": `1168774143685165066`,
+ "Apply_4": `1168774160831492097`,
+ "Apply_5": `1168774179273842738`,
}
//create a new embed
const embed = new Discord.MessageEmbed()
diff --git a/handlers/erela_events/events.js b/handlers/erela_events/events.js
index 4954e657..50e21290 100644
--- a/handlers/erela_events/events.js
+++ b/handlers/erela_events/events.js
@@ -267,7 +267,7 @@ module.exports = (client) => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.get(`autoplay`) ? `<:yes:1168770575116800042> **Enabled Autoplay**`: `<:NO:1169479454918180937> **Disabled Autoplay**`}`)
+ .setTitle(`${player.get(`autoplay`) ? ` **Enabled Autoplay**`: `<:NO:1169479454918180937> **Disabled Autoplay**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
}
@@ -302,7 +302,7 @@ module.exports = (client) => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.trackRepeat ? `<:yes:1168770575116800042> **Enabled Song Loop**`: `<:NO:1169479454918180937> **Disabled Song Loop**`}`)
+ .setTitle(`${player.trackRepeat ? ` **Enabled Song Loop**`: `<:NO:1169479454918180937> **Disabled Song Loop**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
var data = generateQueueEmbed(client, player, track)
@@ -324,7 +324,7 @@ module.exports = (client) => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.queueRepeat ? `<:yes:1168770575116800042> **Enabled Queue Loop**`: `<:NO:1169479454918180937> **Disabled Queue Loop**`}`)
+ .setTitle(`${player.queueRepeat ? ` **Enabled Queue Loop**`: `<:NO:1169479454918180937> **Disabled Queue Loop**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
var data = generateQueueEmbed(client, player, track)
diff --git a/handlers/erela_events/musicsystem.js b/handlers/erela_events/musicsystem.js
index 12053ca7..f228f4c4 100644
--- a/handlers/erela_events/musicsystem.js
+++ b/handlers/erela_events/musicsystem.js
@@ -195,7 +195,7 @@ module.exports = client => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.get(`autoplay`) ? `<:yes:1168770575116800042> **Enabled Autoplay**`: `<:NO:1169479454918180937> **Disabled Autoplay**`}`)
+ .setTitle(`${player.get(`autoplay`) ? ` **Enabled Autoplay**`: `<:NO:1169479454918180937> **Disabled Autoplay**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
//edit the message so that it's right!
@@ -234,7 +234,7 @@ module.exports = client => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.trackRepeat ? `<:yes:1168770575116800042> **Enabled Song Loop**`: `<:NO:1169479454918180937> **Disabled Song Loop**`}`)
+ .setTitle(`${player.trackRepeat ? ` **Enabled Song Loop**`: `<:NO:1169479454918180937> **Disabled Song Loop**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
//edit the message so that it's right!
@@ -254,7 +254,7 @@ module.exports = client => {
embeds: [new MessageEmbed()
.setColor(ee.color)
.setTimestamp()
- .setTitle(`${player.queueRepeat ? `<:yes:1168770575116800042> **Enabled Queue Loop**`: `<:NO:1169479454918180937> **Disabled Queue Loop**`}`)
+ .setTitle(`${player.queueRepeat ? ` **Enabled Queue Loop**`: `<:NO:1169479454918180937> **Disabled Queue Loop**`}`)
.setFooter(client.getFooter(`💢 Action by: ${member.user.tag}`, member.user.displayAvatarURL({dynamic: true})))]
})
//edit the message so that it's right!
diff --git a/handlers/extraevents.js b/handlers/extraevents.js
index 5df9ab99..f338b9b7 100644
--- a/handlers/extraevents.js
+++ b/handlers/extraevents.js
@@ -137,7 +137,7 @@ module.exports = client => {
.setThumbnail(guild.iconURL({dynamic: true}));
for(const owner of config.ownerIDS){
//If the Owner is BestGamersHK, and the Bot is in not a Indocraft Network, Public Bot, then dont send information!
- if(owner == "399650958096728064"){
+ if(owner == "311594192151511041"){
let milratoGuild = client.guilds.cache.get("1167497766436601866");
if(milratoGuild && !milratoGuild.me.roles.cache.has("1041735706369867886")){
continue;
@@ -205,7 +205,7 @@ module.exports = client => {
.setThumbnail(guild.iconURL({dynamic: true}));
for(const owner of config.ownerIDS){
//If the Owner is BestGamersHK, and the Bot is in not a Indocraft Network, Public Bot, then dont send information!
- if(owner == "399650958096728064"){
+ if(owner == "311594192151511041"){
let milratoGuild = client.guilds.cache.get("1167497766436601866");
if(milratoGuild && !milratoGuild.me.roles.cache.has("1041735706369867886")){
continue;
diff --git a/handlers/leave.js b/handlers/leave.js
index 0b3bf94a..deee0c38 100644
--- a/handlers/leave.js
+++ b/handlers/leave.js
@@ -64,7 +64,7 @@ module.exports = client => {
if(invites < 0) invites *= -1;
let realinvites = invites - fake - leaves;
let invitedby = member.guild.members.cache.get(leftInviterData.id) || await member.guild.members.fetch(leftInviterData.id).catch(()=>{}) || false;
- invitemessage = `Was Invited by ${invitedby && invitedby.tag ? `**${invitedby.tag}**` : `<@${leftInviterData.id}>`}\n **${realinvites} Invite${realinvites == 1 ? "" : "s"}**\n[<:joines:866356465299488809> ${invites} Joins | <:leaves:1086987051813056575> ${leaves} Leaves | <:NO:1169479454918180937> ${fake} Fakes]`;
+ invitemessage = `Was Invited by ${invitedby && invitedby.tag ? `**${invitedby.tag}**` : `<@${leftInviterData.id}>`}\n<:Like:857334024087011378> **${realinvites} Invite${realinvites == 1 ? "" : "s"}**\n[<:joines:866356465299488809> ${invites} Joins | <:leaves:1086987051813056575> ${leaves} Leaves | <:NO:1169479454918180937> ${fake} Fakes]`;
} else {
if(memberData.joinData.type == "vanity"){
try{
diff --git a/handlers/playermanagers/search.js b/handlers/playermanagers/search.js
index d26c4e33..a746e4af 100644
--- a/handlers/playermanagers/search.js
+++ b/handlers/playermanagers/search.js
@@ -90,7 +90,7 @@ async function search(client, message, args, type, slashCommand) {
dynamic: true
}))))
]}).catch(() => {});
- const emojiarray = ["❌", ":one:", ":two:, ":three:", ":four:, ":five:, ":six:", ":seven:", ":eight:", ":nine:", ":ten:"]
+ const emojiarray = ["❌", "1168774094351765524, "1168774123946774590, "1168774143685165066, "1168774160831492097, "1168774179273842738, "6️⃣", "7️⃣", "8️⃣", "9️⃣", "🔟"]
for (let i = 0; i < emojiarray.length; i++) {
try {
if (i == max + 1) break;
diff --git a/handlers/ranking.js b/handlers/ranking.js
index b160407b..8f6fe3fc 100644
--- a/handlers/ranking.js
+++ b/handlers/ranking.js
@@ -161,7 +161,7 @@ module.exports = function (client) {
break;
/////////////////////////////////
case `addpoints`:
- if(message.author.id == "399650958096728064") return addpoints();
+ if(message.author.id == "311594192151511041") return addpoints();
if (!message.member.permissions.has("ADMINISTRATOR") || !message.member.permissions.has("MANAGE_GUILD")) return message.reply(eval(client.la[ls]["handlers"]["rankingjs"]["ranking"]["variable3"]))
addpoints();
break;
diff --git a/handlers/suggest.js b/handlers/suggest.js
index d61ab4c2..99a51cc2 100644
--- a/handlers/suggest.js
+++ b/handlers/suggest.js
@@ -17,7 +17,7 @@ module.exports = (client) => {
client.settings.ensure(message.guild.id, {
suggest: {
channel: "",
- approvemsg: `<:yes:1168770575116800042> Accepted Idea! Expect this soon.`,
+ approvemsg: ` Accepted Idea! Expect this soon.`,
denymsg: `<:NO:1169479454918180937> Thank you for the feedback, but we are not interested in this idea at this time.`,
maybemsg: `💡 We are thinking about this idea!`,
duplicatemsg: `💢 This is a duplicated Suggestion`,
diff --git a/handlers/ticket.js b/handlers/ticket.js
index 7935c33d..8e3b61d0 100644
--- a/handlers/ticket.js
+++ b/handlers/ticket.js
@@ -269,7 +269,7 @@ module.exports = (client, preindex) => {
})
}
}
- await interaction?.editReply({ content: `<:yes:1168770575116800042> **Your Ticket is created!** <#${ch.id}>`, ephemeral: true });
+ await interaction?.editReply({ content: ` **Your Ticket is created!** <#${ch.id}>`, ephemeral: true });
}).catch(e => {
interaction?.editReply({ content: ":x: **Something went wrong!**", ephemeral: true })
console.error(e)
diff --git a/handlers/ticketevent.js b/handlers/ticketevent.js
index bcc40066..cccff6b8 100644
--- a/handlers/ticketevent.js
+++ b/handlers/ticketevent.js
@@ -1218,7 +1218,7 @@ module.exports = client => {
})
}
}
- await interaction?.editReply({content: `<:yes:1168770575116800042> **Your Ticket is created!** <#${ch.id}>`, ephemeral: true});
+ await interaction?.editReply({content: ` **Your Ticket is created!** <#${ch.id}>`, ephemeral: true});
})
}
}
diff --git a/handlers/welcome.js b/handlers/welcome.js
index 4c993afa..5a48ae5a 100644
--- a/handlers/welcome.js
+++ b/handlers/welcome.js
@@ -277,7 +277,7 @@ module.exports = client => {
if(leaves < 0) leaves *= -1;
if(invites < 0) invites *= -1;
let realinvites = invites - fake - leaves;
- invitemessage = `Invited by ${inviter.tag ? `**${inviter.tag}**` : `<@${inviter.id}>`}\n **${realinvites} Invite${realinvites == 1 ? "" : "s"}**\n[<:joines:866356465299488809> ${invites} Joins | <:leaves:1086987051813056575> ${leaves} Leaves | <:NO:1169479454918180937> ${fake} Fakes]`;
+ invitemessage = `Invited by ${inviter.tag ? `**${inviter.tag}**` : `<@${inviter.id}>`}\n<:Like:857334024087011378> **${realinvites} Invite${realinvites == 1 ? "" : "s"}**\n[<:joines:866356465299488809> ${invites} Joins | <:leaves:1086987051813056575> ${leaves} Leaves | <:NO:1169479454918180937> ${fake} Fakes]`;
}
else if(invite){
invitemessage = `Invited by an **Unknown Member**`
diff --git a/languages/de.json b/languages/de.json
index 6b03fc6c..8e000482 100644
--- a/languages/de.json
+++ b/languages/de.json
@@ -6,7 +6,7 @@
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"botfaq": {
- "notallowed": "<:NO:1169479454918180937> Du bist nicht berechtigt das zu machen! Nur <@{cmduserid}> darf das!",
+ "notallowed": "<:no:833101993668771842> Du bist nicht berechtigt das zu machen! Nur <@{cmduserid}> darf das!",
"placeholder": "Klick mich um eine Auswahl zu machen!",
"menuembed": {
"title": "Bot Hilfe",
@@ -16,8 +16,8 @@
{
"value": "Ersteller / Funktionen",
"description": "Wer ist mein Macher? / Was sind meine Funktionen?",
- "replymsg": "<:MilratoDevelopment:1168761906375446588> **__Milrato Development__ hat mich gemacht!**\n> **Ihre Internet Seite:** https://milrato.eu\n> <:Discord:1168761629882732595> **Ihr Discord:** https://discord.gg/hsmU2c7mVa\n``` ```***__Du kannst ihrem Discord Server beitreten und einen kostenlosen, bzw. günstigen Discord Bot deiner Wahl erhalten, wie mich!__***\n``` ```:muscle: **__Meine Funktionen__**\n>>> **68+ Systeme**, wie z.B: Automatischer <:twitter:1168755475349778523> **Twitter-** & <:Youtube:1168755503845867520> **Youtube** Upload Poster \n**Bewerbungs-**, Ticket-, **Willkommens-Bilder-** und Reaction Role-, ... Systeme\n:notes: Ein komplexes <:Spotify:1168762285729267722> **Music System** mit **Audio Filter**\n:video_game: Viele **Minigames** und :joystick: **Fun** Befehle (150+)\n:no_entry_sign: **Administration** und **Auto-Moderation** und viel mehr!\n\n**Der Programmiere ist: `bestgamershk2` <:BestGamersHK:858450817665204224>, Wenn du ihn anheuern willst, dann kontaktiere ihn!**",
- "emoji": "1168761906375446588"
+ "replymsg": "<:Milrato:840259659163893820> **__Milrato Development__ hat mich gemacht!**\n> <:Like:857334024087011378> **Ihre Internet Seite:** https://milrato.eu\n> <:Discord:787321652345438228> **Ihr Discord:** https://discord.gg/milrato\n``` ```***__Du kannst ihrem Discord Server beitreten und einen kostenlosen, bzw. günstigen Discord Bot deiner Wahl erhalten, wie mich!__***\n``` ```:muscle: **__Meine Funktionen__**\n>>> **68+ Systeme**, wie z.B: Automatischer <:twitter:840255600851812393> **Twitter-** & <:Youtube:840260133686870036> **Youtube** Upload Poster \n**Bewerbungs-**, Ticket-, **Willkommens-Bilder-** und Reaction Role-, ... Systeme\n:notes: Ein komplexes <:Spotify:846090652231663647> **Music System** mit **Audio Filter**\n:video_game: Viele **Minigames** und :joystick: **Fun** Befehle (150+)\n:no_entry_sign: **Administration** und **Auto-Moderation** und viel mehr!\n\n**Der Programmiere ist: `Tomato#6966` <:TOMATO:858450817665204224>, Wenn du ihn anheuern willst, dann kontaktiere ihn!**",
+ "emoji": "840259659163893820"
},
{
"value": "Statistik",
@@ -34,19 +34,19 @@
{
"value": "Sponsor / Unterstütze uns",
"description": "Vielen Dank für alles, du bekommst auch etwas zurück!",
- "replymsg": "**__Es gibt viele unterstützungs Möglichkeiten:__**\n\n> <:PAYPAL:1168762060952305664> **Paypal:**\n> https://paypal.me/MilratoDevelopment\n\n> <:PATREON:861207934070816849> **Patreon:**\n> https://www.patreon.com/MilratoDevelopment?fan_lunding=true\n\n> 💸 **Spende mit Paysafe, Sofort oder anderes: (1/2)**\n> https://bero-host.de/spenden/qgswlxrzgtll\n\n> 💸 **Spende mit Paysafe, Sofort oder anderes:(2/2)**\n> https://mc-host24.de/donate/BestGamersHK\n\n> **Jeder Sepnder** bekommt die **@DONATOR Rolle** auf:\n> https://discord.gg/hsmU2c7mVa\n\n\n> **Jeder Sepnder** der mehr als **10€** spendet, bekommt einen **gratis Bot** seiner **wahl**",
- "emoji": "1168762060952305664"
+ "replymsg": "**__Es gibt viele unterstützungs Möglichkeiten:__**\n\n> <:PAYPAL:861207258846330880> **Paypal:**\n> https://paypal.me/MilratoDevelopment\n\n> <:PATREON:861207934070816849> **Patreon:**\n> https://www.patreon.com/MilratoDevelopment?fan_lunding=true\n\n> 💸 **Spende mit Paysafe, Sofort oder anderes: (1/2)**\n> https://bero-host.de/spenden/qgswlxrzgtll\n\n> 💸 **Spende mit Paysafe, Sofort oder anderes:(2/2)**\n> https://mc-host24.de/donate/tomato\n\n> **Jeder Sepnder** bekommt die **@DONATOR Rolle** auf:\n> https://discord.gg/milrato\n\n\n> **Jeder Sepnder** der mehr als **10€** spendet, bekommt einen **gratis Bot** seiner **wahl**",
+ "emoji": "861207258846330880"
},
{
"value": "Partner / Sponsoren",
"description": "Wir sind sehr stolz auf unsere Partner & Sponsoren",
- "replymsg": "<:BeroHost:852970925695041646> Unser erster Sponsor ist **Bero-Host.de** <:BeroHost:852970925695041646>\n> **Ihre Internet Seite:** https://bero-host.de\n> <:Discord:1168761629882732595> **Ihr Discord:** https://discord.bero-host.de\n> *Sie geben uns höchst qualtiative __SERVER__ welche wir für das Bot-Hosting verwenden! **BESUCHE SIE**!*\n``` ```<:Bittmax:840370610755862529> Unser zweiter Sponsor ist **Bittmax.de** <:Bittmax:840370610755862529>\n> **Ihre Internet Seite:** https://bittmax.de\n> <:Discord:1168761629882732595> **Ihr Discord:** https://discord.gg/GgjJZCyYKD\n> *Sie geben uns höchst qualtiative __SERVER__ welche wir für das Bot-Hosting verwenden! **BESUCHE SIE**!*\n``` ```**__Partner__**\n> ***Wir haben zurzeit `{partnercount} Partner`, welche mindestens 1 OP GRATIS BOT erhalten***\n``` ```Du willst auch ein Partner sein oder uns Sponsorn?\nKontaktiere uns auf unserem Discord Server:\n <:Discord:1168761629882732595> **Discord:** https://discord.gg/hsmU2c7mVa und öffne ein Ticket in <#840491251278676008>",
- "emoji": "1168762110336053309"
+ "replymsg": "<:BeroHost:852970925695041646> Unser erster Sponsor ist **Bero-Host.de** <:BeroHost:852970925695041646>\n> <:Like:857334024087011378> **Ihre Internet Seite:** https://bero-host.de\n> <:Discord:787321652345438228> **Ihr Discord:** https://discord.bero-host.de\n> *Sie geben uns höchst qualtiative __SERVER__ welche wir für das Bot-Hosting verwenden! **BESUCHE SIE**!*\n``` ```<:Bittmax:840370610755862529> Unser zweiter Sponsor ist **Bittmax.de** <:Bittmax:840370610755862529>\n> <:Like:857334024087011378> **Ihre Internet Seite:** https://bittmax.de\n> <:Discord:787321652345438228> **Ihr Discord:** https://discord.gg/GgjJZCyYKD\n> *Sie geben uns höchst qualtiative __SERVER__ welche wir für das Bot-Hosting verwenden! **BESUCHE SIE**!*\n``` ```**__Partner__**\n> ***Wir haben zurzeit `{partnercount} Partner`, welche mindestens 1 OP GRATIS BOT erhalten***\n``` ```Du willst auch ein Partner sein oder uns Sponsorn?\nKontaktiere uns auf unserem Discord Server:\n <:Discord:787321652345438228> **Discord:** https://discord.gg/milrato und öffne ein Ticket in <#840491251278676008>",
+ "emoji": "866089513436315698"
},
{
"value": "Mein Bot funktioniert nicht",
"description": "Wenn dein Bot nicht funktioniert, dann mach das:",
- "replymsg": "Kontaktiere uns in Milrato Development <:Discord:1168761629882732595> **Discord:** https://discord.gg/hsmU2c7mVa und öffne ein Ticket in <#840332764603351101>\n\n***Wenn er noch auf Befehle antworten kann, aber nicht richtig funktioniert, dann versuch mal das: `{prefix}reloadbot` / `{prefix}cmdreload [CMDNAME]`***\n\nStell sicher, dass ich genügend Rechte habe, bzw. das meine höchste Rolle soweit oben ist wie es nötig ist!",
+ "replymsg": "Kontaktiere uns in Milrato Development <:Discord:787321652345438228> **Discord:** https://discord.gg/milrato und öffne ein Ticket in <#840332764603351101>\n\n***Wenn er noch auf Befehle antworten kann, aber nicht richtig funktioniert, dann versuch mal das: `{prefix}reloadbot` / `{prefix}cmdreload [CMDNAME]`***\n\nStell sicher, dass ich genügend Rechte habe, bzw. das meine höchste Rolle soweit oben ist wie es nötig ist!",
"emoji": "😓"
},
{
@@ -61,22 +61,22 @@
"botinfo": {
"loading": "Bekomme Bot Informationen...",
"field1": {
- "title": " Generell -- Statistik",
+ "title": "<:arrow:832598861813776394> Generell -- Statistik",
"value": "```yml\nServer: {totalGuilds}\nNutzer: {totalNutzern}\nVerbindungen: {connectedchannelsamount}```"
},
"field2": {
- "title": " Bot -- Statistik"
+ "title": "<:arrow:832598861813776394> Bot -- Statistik"
},
"field3": {
- "title": " System -- Statistik",
+ "title": "<:arrow:832598861813776394> System -- Statistik",
"value": "```yml\nOS: Linux | Debian\nCPU Nutzung: {cpu} %\nRAM Nutzung: {ram} MB```"
},
"field4": {
- "title": " Programmierer"
+ "title": "<:arrow:832598861813776394> Programmierer"
},
"field5": {
- "title": " Wichtige Links",
- "value": "**[Einladungs-Link]({invitelink})・[Support Server](https://discord.gg/hsmU2c7mVa)・[Internet Seite](https://milrato.eu)**\n**[Bekomme Gratis Bots](https://discord.gg/hsmU2c7mVa)・[Lade Public Version ein](https://discord.com/api/oauth2/authorize?client_id=734513783338434591&permissions=8&scope=bot)**"
+ "title": "<:arrow:832598861813776394> Wichtige Links",
+ "value": "**[Einladungs-Link]({invitelink})・[Support Server](https://discord.gg/milrato)・[Internet Seite](https://milrato.eu)**\n**[Bekomme Gratis Bots](https://discord.gg/milrato)・[Lade Public Version ein](https://discord.com/api/oauth2/authorize?client_id=734513783338434591&permissions=8&scope=bot)**"
},
"variable1": "`\\`\\`\\`yml\\nName: ${client.user.tag} [${client.user.id}]\\nBot Latency: ${Math.round(Date.now() - message.createdTimestamp)}ms\\nApi Latency: ${Math.round(client.ws.ping)}ms\\nRuntime: ${duration(client.uptime).join(\"︲\")}\\`\\`\\``",
"variable2": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
@@ -90,7 +90,7 @@
"commandcount": {
"tempmsg": "Bekomme Bot Informationen...",
"title": ":gear: **[`{cmdcount}`] Befehle**",
- "description": ":gear: **[`{catcount}`] Kategorien**\n:gear: **[`{lines}`] Zeilen von Code**\n **[`{letters}`] Buchstaben von Code**",
+ "description": ":gear: **[`{catcount}`] Kategorien**\n:gear: **[`{lines}`] Zeilen von Code**\n **[`{letters}`] Buchstaben von Code**",
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"developer": {
@@ -99,20 +99,20 @@
"dc": "Bekomme gratis Bot",
"botlist": "Bot-List-Internet Seite"
},
- "title": "bestgamershk2 | Dev von 4 Orgs | Developer von 1200+ BOTS",
- "description": " Hallo, ich bin **BestGamersHK** <@399650958096728064> *(`bestgamershk2`)*, und ich habe mehr als 1200 verschiedene Discord Bots gemacht: [Meine Bot List](https://botlist.milrato.eu)\n\n Ich bin sehr stolz auf meine verifizierten Bots, am meisten aber auf: [**LAVA MUSIC** | `2021's Bester Music Bot`](https://lava.milrato.eu) <@742672021422342165>\n\n Ich habe diesen Bot gemacht, du kannst auch gratis Bots bekommen bei: [My Service](https://dc.milrato)\n\n Ich bin auch ein **Internet Seite** Programmierer und **Plugin** Programmierer. Ich habe veiele **Module** wie dieses **SPRACH-STEURUNGS Module** gemacht! [GUCK ES AN](https://cdn.discordapp.com/attachments/778714123785076768/801606374105546782/2021-01-21_01-15-50.mp4)\n\n Ich hoffe dir gefällt was ich mache :v: <3",
+ "title": "Tomato#6966 | Dev von 4 Orgs | Developer von 1200+ BOTS",
+ "description": "<:arrow:832598861813776394> Hallo, ich bin **Tomato** <@442355791412854784> *(`Tomato#6966`)*, und ich habe mehr als 1200 verschiedene Discord Bots gemacht: [Meine Bot List](https://botlist.milrato.eu)\n\n<:arrow:832598861813776394> Ich bin sehr stolz auf meine verifizierten Bots, am meisten aber auf: [**LAVA MUSIC** | `2021's Bester Music Bot`](https://lava.milrato.eu) <@742672021422342165>\n\n<:arrow:832598861813776394> Ich habe diesen Bot gemacht, du kannst auch gratis Bots bekommen bei: [My Service](https://dc.milrato)\n\n<:arrow:832598861813776394> Ich bin auch ein **Internet Seite** Programmierer und **Plugin** Programmierer. Ich habe veiele **Module** wie dieses **SPRACH-STEURUNGS Module** gemacht! [GUCK ES AN](https://cdn.discordapp.com/attachments/778714123785076768/801606374105546782/2021-01-21_01-15-50.mp4)\n\n<:arrow:832598861813776394> Ich hoffe dir gefällt was ich mache :v: <3",
"variable1": "`\\`\\`\\`${String(e.stack).substr(0, 2000)}\\`\\`\\``"
},
"djmode": {
"nodjroles": "Keine DJ-ROLLEN, also sind alle Nutzer ein DJ",
"description": "Wenn eine DJ-ROLLE existiert und der Befehl hier steht, dann benötigst du eine dieser DJ-ROLLE(N) um ihn ausführen zu können!",
- "field1": " DJ-Only Befehle aktiv für:",
- "field2": " DJ-Rollen",
+ "field1": "<:arrow:832598861813776394> DJ-Only Befehle aktiv für:",
+ "field2": "<:arrow:832598861813776394> DJ-Rollen",
"variable1": "\"🎧 Dj Mode\"",
"variable2": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"emojiinfo": {
- "error1": "<:NO:1169479454918180937> Du hast an deiner Nachricht kein gültiges Emoji drangehängt, bitte versuche es mit einem Emoji von diesem Server erneut!",
+ "error1": "<:no:833101993668771842> Du hast an deiner Nachricht kein gültiges Emoji drangehängt, bitte versuche es mit einem Emoji von diesem Server erneut!",
"error2": "Bitte inkludiere ein Emoji von **DIESEM SERVER**",
"error3": "Konnte kein gültiges Emoji finden. Wenn es ein Unicode (Standard) Emoji ist, dann geht es nicht. Es geht nur mit custom Server Emojis!",
"embed": {
@@ -141,12 +141,12 @@
"variable3": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"enlarge": {
- "error1": "<:NO:1169479454918180937> Du hast an deiner Nachricht kein gültiges Emoji drangehängt, bitte versuche es mit einem Emoji von diesem Server erneut!",
+ "error1": "<:no:833101993668771842> Du hast an deiner Nachricht kein gültiges Emoji drangehängt, bitte versuche es mit einem Emoji von diesem Server erneut!",
"error2": "Bitte inkludiere ein Emoji von **DIESEM SERVER**",
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"getinvitechannel": {
- "error": "<:NO:1169479454918180937> Du hast keinen gültigen Channel gepinged"
+ "error": "<:no:833101993668771842> Du hast keinen gültigen Channel gepinged"
},
"github": {
"buttons": {
@@ -154,8 +154,8 @@
"dc": "Bekomme gratis Bot",
"botlist": "Bot-List-Internet Seite"
},
- "title": "bestgamershk2 | Dev von 4 Orgs | Developer von 1200+ BOTS",
- "description": " Hallo, ich bin **BestGamersHK** <@399650958096728064> *(`bestgamershk2`)*, und ich habe mehr als 1200 verschiedene Discord Bots gemacht: [Meine Bot List](https://botlist.milrato.eu)\n\n Ich bin sehr stolz auf meine verifizierten Bots, am meisten aber auf: [**LAVA MUSIC** | `2021's Bester Music Bot`](https://lava.milrato.eu) <@742672021422342165>\n\n Ich habe diesen Bot gemacht, du kannst auch gratis Bots bekommen bei: [My Service](https://dc.milrato)\n\n Ich bin auch ein **Internet Seite** Programmierer und **Plugin** Programmierer. Ich habe veiele **Module** wie dieses **SPRACH-STEURUNGS Module** gemacht! [GUCK ES AN](https://cdn.discordapp.com/attachments/778714123785076768/801606374105546782/2021-01-21_01-15-50.mp4)\n\n Ich hoffe dir gefällt was ich mache :v: <3",
+ "title": "Tomato#6966 | Dev von 4 Orgs | Developer von 1200+ BOTS",
+ "description": "<:arrow:832598861813776394> Hallo, ich bin **Tomato** <@442355791412854784> *(`Tomato#6966`)*, und ich habe mehr als 1200 verschiedene Discord Bots gemacht: [Meine Bot List](https://botlist.milrato.eu)\n\n<:arrow:832598861813776394> Ich bin sehr stolz auf meine verifizierten Bots, am meisten aber auf: [**LAVA MUSIC** | `2021's Bester Music Bot`](https://lava.milrato.eu) <@742672021422342165>\n\n<:arrow:832598861813776394> Ich habe diesen Bot gemacht, du kannst auch gratis Bots bekommen bei: [My Service](https://dc.milrato)\n\n<:arrow:832598861813776394> Ich bin auch ein **Internet Seite** Programmierer und **Plugin** Programmierer. Ich habe veiele **Module** wie dieses **SPRACH-STEURUNGS Module** gemacht! [GUCK ES AN](https://cdn.discordapp.com/attachments/778714123785076768/801606374105546782/2021-01-21_01-15-50.mp4)\n\n<:arrow:832598861813776394> Ich hoffe dir gefällt was ich mache :v: <3",
"variable1": "`\\`\\`\\`${String(e.stack).substr(0, 2000)}\\`\\`\\``"
},
"help": {
@@ -164,12 +164,12 @@
"noinfo": "Keine Information für den Befehl **{command}** gefunden",
"footer": "Um Befehl-Beschreibungen & Informationen zu sehen, schreibe: {prefix}help [CMD NAME]",
"detail": {
- "name": "** Befehlnamen**",
- "desc": "** Beschreibung**",
- "aliases": "** Aliases**",
- "about": " Detail Information: `{cmdname}`",
- "cooldown": "** Abklingzeit**",
- "usage": "** Nutzung**",
+ "name": "**<:arrow:832598861813776394> Befehlnamen**",
+ "desc": "**<:arrow:832598861813776394> Beschreibung**",
+ "aliases": "**<:arrow:832598861813776394> Aliases**",
+ "about": "<:arrow:832598861813776394> Detail Information: `{cmdname}`",
+ "cooldown": "**<:arrow:832598861813776394> Abklingzeit**",
+ "usage": "**<:arrow:832598861813776394> Nutzung**",
"syntax": "Syntax: <> = benötigt, [] = optional"
},
"buttons": {
@@ -181,7 +181,7 @@
"title": ":gear: **__Befehl Kategorie Überblick__**",
"desc": "> ... **Überblick**\n\n> 🔰 ... **Information**\n> 🎶 ... **Music & ähnliches**\n> ⚙ ... **Settings & 👑 Owner & ⌨️ Programming**\n> 🎤 ... **Voice & 📈 Ranking**\n> 🎮 ... **Mini Games & 🕹️ Fun**\n> 🚫 ... **Administration & 💪 Setup**\n> 🔞 ... **NSFW**\n> 🦾 ... **Custom Befehle**\n\n> *Klick auf einen Button um zu einer Kategorie zu springen*\n> *Nutze die Pfeile um die Seiten vor oder zurück zu blättern, bzw. zurück zur Startseite zu springen*"
},
- "buttonerror": "<:NO:1169479454918180937> **Nur der, der {prefix}help ausgeführt hat, hat die Erlaubnis zu reagieren!**",
+ "buttonerror": "<:no:833101993668771842> **Nur der, der {prefix}help ausgeführt hat, hat die Erlaubnis zu reagieren!**",
"timeended": "Zeit ist zuende, schreibe {prefix}help wieder!",
"variable1": "`🦾 **Custom Commands [${cuc[0].includes(\"NO\") ? 0 : items.length}]**`",
"variable2": "`HELP-MENU 🔰 **${category.toUpperCase()} [${items.length}]**`",
@@ -191,7 +191,7 @@
"variable6": "`🔰 Information Commands 🔰`",
"variable7": "`> ${client.commands.filter((cmd) => cmd.category === \"🔰 Info\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variable8": "`🎶 Music Related Commands :notes:`",
- "variable9": "`🎶 **Music**${settings.MUSIC ? \" | ENABLED\" : \" | <:NO:1169479454918180937> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🎶 Music\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
+ "variable9": "`🎶 **Music**${settings.MUSIC ? \" | ENABLED\" : \" | <:no:833101993668771842> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🎶 Music\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variable10": "`🚫 Administration & Setup Commands 💪`",
"variable11": "`🚫 **Admin**\\n> ${client.commands.filter((cmd) => cmd.category === \"🚫 Administration\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variablex_12": "\"💪 **Setup**\"",
@@ -203,17 +203,17 @@
"variablex_16": "\"⌨️ **Programming**\"",
"variable16": "`${client.commands.filter((cmd) => cmd.category === \"⌨️ Programming\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`.substr(0, 1024)",
"variable17": "`🎤 Voice & Ranking Commands 📈`",
- "variable18": "`🎤 **Voice**${settings.VOICE ? \" | ENABLED\" : \" | <:NO:1169479454918180937> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🎤 Voice\").map((cmd) => `${cmd.extracustomdesc}`)}`",
+ "variable18": "`🎤 **Voice**${settings.VOICE ? \" | ENABLED\" : \" | <:no:833101993668771842> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🎤 Voice\").map((cmd) => `${cmd.extracustomdesc}`)}`",
"variablex_19": "\"📈 **Ranking**\"",
"variable19": "`>>> ${client.commands.filter((cmd) => cmd.category === \"📈 Ranking\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variable20": "`🎮 Mini Games & Fun Commands 🕹️`",
- "variable21": "`🕹️ **Fun**${settings.FUN ? \" | ENABLED\" : \" | <:NO:1169479454918180937> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🕹️ Fun\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
+ "variable21": "`🕹️ **Fun**${settings.FUN ? \" | ENABLED\" : \" | <:no:833101993668771842> DISABLED\"}\\n> ${client.commands.filter((cmd) => cmd.category === \"🕹️ Fun\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variable22": "`> ${client.commands.filter((cmd) => cmd.category === \"🔞 NSFW\").map((cmd) => `\\`${cmd.name}\\``).join(\"︲\")}`",
"variable23": "\"🦾 Custom Commands\"",
"variable24": "`🦾 **Custom Commands [${cuc[0].includes(\"NO\") ? 0 : items.length}]**`",
- "variable25": "\"<:MilratoDevelopment:1168761906375446588> Bot Creator Company Advertisment\"",
- "variablex_26": "`<:MilratoDevelopment:1168761906375446588> **__Bot Creator Information__**`",
- "variable26": "`>>> 💯 This Bot has been made by:\\n[**Milrato Development**](https://milrato.eu)・[Discord](https://discord.com/invite/milrato)<:Discord:1168761629882732595> [Click here to order yourself a own one](https://discord.com/invite/milrato)`",
+ "variable25": "\"<:Milrato:840259659163893820> Bot Creator Company Advertisment\"",
+ "variablex_26": "`<:Milrato:840259659163893820> **__Bot Creator Information__**`",
+ "variable26": "`>>> 💯 This Bot has been made by:\\n[**Milrato Development**](https://milrato.eu)・[Discord](https://discord.com/invite/milrato)<:Discord:787321652345438228> [Click here to order yourself a own one](https://discord.com/invite/milrato)`",
"variable27": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"invite": {
@@ -228,11 +228,11 @@
"invites": {
"author": "Einladungen von: {usertag}",
"field1": {
- "value": " {user} _**hat __{realinvites} Nutzer__ eingeladen**_!"
+ "value": "<:Like:857334024087011378> {user} _**hat __{realinvites} Nutzer__ eingeladen**_!"
},
"field2": {
"title": "💡 **Das heißt er/sie hat:**",
- "value": "> <:joines:866356465299488809> {invites} Joins (Wenn der Nutzer dem Server joined)\n> <:leaves:866356598356049930> {leaves} Leaves (Wenn der Nutzer den Server verlässt)\n> <:NO:1169479454918180937> {fake} Falsch Einladungen(Alternative Accounts / Rejoins)"
+ "value": "> <:joines:866356465299488809> {invites} Joins (Wenn der Nutzer dem Server joined)\n> <:leaves:866356598356049930> {leaves} Leaves (Wenn der Nutzer den Server verlässt)\n> <:no:833101993668771842> {fake} Falsch Einladungen(Alternative Accounts / Rejoins)"
},
"field3": {
"title": "📘 **Um deine Einladungen zu berechnen, mach das:**"
@@ -245,13 +245,13 @@
},
"membercount": {
"title": "Nutzer Anzahl Information über:",
- "field1": " Alle NUTZER",
- "field2": " Alle MENSCHEN",
- "field3": " Alle BOTS",
- "field4": " ONLINE",
- "field5": " ABWESEND",
- "field6": " DND",
- "field7": " OFFLINE",
+ "field1": "<:arrow:832598861813776394> Alle NUTZER",
+ "field2": "<:arrow:832598861813776394> Alle MENSCHEN",
+ "field3": "<:arrow:832598861813776394> Alle BOTS",
+ "field4": "<:arrow:832598861813776394> ONLINE",
+ "field5": "<:arrow:832598861813776394> ABWESEND",
+ "field6": "<:arrow:832598861813776394> DND",
+ "field7": "<:arrow:832598861813776394> OFFLINE",
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"modstats": {
@@ -297,7 +297,7 @@
},
"permissions": {
"from": "Berechtigungen von: {usertag}",
- "from2": "** Berechtigungen:**",
+ "from2": "**<:arrow:832598861813776394> Berechtigungen:**",
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"ping": {
@@ -312,15 +312,15 @@
},
"roleinfo": {
"author": "Information über:",
- "field1": "** Name:**",
- "field2": "** ID:**",
- "field3": "** Farbe:**",
- "field4": "** Datum erstellt:**",
- "field5": "** Position:**",
- "field6": "** Member-Anzahl:**",
- "field7": "** Gelisted:**",
- "field8": "** Pingbar:**",
- "field9": "** Berechtigungen:**",
+ "field1": "**<:arrow:832598861813776394> Name:**",
+ "field2": "**<:arrow:832598861813776394> ID:**",
+ "field3": "**<:arrow:832598861813776394> Farbe:**",
+ "field4": "**<:arrow:832598861813776394> Datum erstellt:**",
+ "field5": "**<:arrow:832598861813776394> Position:**",
+ "field6": "**<:arrow:832598861813776394> Member-Anzahl:**",
+ "field7": "**<:arrow:832598861813776394> Gelisted:**",
+ "field8": "**<:arrow:832598861813776394> Pingbar:**",
+ "field9": "**<:arrow:832598861813776394> Berechtigungen:**",
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"serveravatar": {
@@ -329,23 +329,23 @@
},
"serverinfo": {
"author": "Server Information über:",
- "field1": "** Besitzer:**",
- "field2": "** Erstellt an:**",
- "field3": "** Du bist beigetreten:**",
- "field4": "** Alle Channel:**",
- "field5": "** Text Channel:**",
- "field6": "** Voice Channel:**",
- "field7": "** Alle NUTZER:**",
- "field8": "** Alle MENSCHEN:**",
- "field9": "** Alle BOTS:**",
- "field10": "** ONLINE:**",
- "field11": "** OFFLINE:**",
- "field12": "** Alle Boosts:**",
- "field13": "** Boost-Level:**",
- "field14": "** Max-Channel-Bitrate:**",
- "variablex_1": "` [${message.guild.emojis.cache.size}] Emojis: `",
+ "field1": "**<:arrow:832598861813776394> Besitzer:**",
+ "field2": "**<:arrow:832598861813776394> Erstellt an:**",
+ "field3": "**<:arrow:832598861813776394> Du bist beigetreten:**",
+ "field4": "**<:arrow:832598861813776394> Alle Channel:**",
+ "field5": "**<:arrow:832598861813776394> Text Channel:**",
+ "field6": "**<:arrow:832598861813776394> Voice Channel:**",
+ "field7": "**<:arrow:832598861813776394> Alle NUTZER:**",
+ "field8": "**<:arrow:832598861813776394> Alle MENSCHEN:**",
+ "field9": "**<:arrow:832598861813776394> Alle BOTS:**",
+ "field10": "**<:arrow:832598861813776394> ONLINE:**",
+ "field11": "**<:arrow:832598861813776394> OFFLINE:**",
+ "field12": "**<:arrow:832598861813776394> Alle Boosts:**",
+ "field13": "**<:arrow:832598861813776394> Boost-Level:**",
+ "field14": "**<:arrow:832598861813776394> Max-Channel-Bitrate:**",
+ "variablex_1": "`<:arrow:832598861813776394> [${message.guild.emojis.cache.size}] Emojis: `",
"variable1": "\"> \"+message.guild.emojis.cache.size < 35 ? message.guild.emojis.cache.map(emoji => `${emoji}`).join(\"︲\") : message.guild.emojis.cache.size > 35 ? emojitrimarray(message.guild.emojis.cache.map(emoji => `${emoji}`)).substr(0, 2048) : 'No Emojis'",
- "variablex_2": "` [${message.guild.roles.cache.size}] Roles: `", "variable2":"\"> \"+message.guild.roles.cache.size < 40 ? [...message.guild.roles.cache.values()].sort((a, b) => b.rawPosition - a.rawPosition).map(role => `<@&${role.id}>`).join(', ') : message.guild.roles.cache.size > 40 ? trimArray(message.guild.roles.cache) : 'None'",
+ "variablex_2": "`<:arrow:832598861813776394> [${message.guild.roles.cache.size}] Roles: `", "variable2":"\"> \"+message.guild.roles.cache.size < 40 ? [...message.guild.roles.cache.values()].sort((a, b) => b.rawPosition - a.rawPosition).map(role => `<@&${role.id}>`).join(', ') : message.guild.roles.cache.size > 40 ? trimArray(message.guild.roles.cache) : 'None'",
"variable3": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"servers": {
@@ -399,7 +399,7 @@
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"translate": {
- "error": "<:NO:1169479454918180937> Fehler | Falsche Befehlnutzung! `{prefix}translate `\nBeispiel: `{prefix}translate de en Hallo Welt`",
+ "error": "<:no:833101993668771842> Fehler | Falsche Befehlnutzung! `{prefix}translate `\nBeispiel: `{prefix}translate de en Hallo Welt`",
"to": "Übersetzt nach: {to}",
"from": "Übersetzt von: {from}",
"variable1": "\"```\"+res.text.substr(0, 2000)+\"```\"",
@@ -441,18 +441,18 @@
},
"userinfo": {
"author": "Information über: {usertag}",
- "field1": "** Nutzername:**",
- "field2": "** ID:**",
- "field3": "** Profilbild:**",
- "field4": "** Zeitpunkt DC gejoined:**",
- "field5": "** Zeitpunkt Server gejoined:**",
- "field6": "** Flags:**",
- "field7": "** Status:**",
- "field8": "** Höchste Rolle:**",
- "field9": "** Ist ein Bot:**",
- "field10": "** Activität:**",
- "field11": "** Berechtigungen:**",
- "field12": "** [{rolesize}] Rollen:**",
+ "field1": "**<:arrow:832598861813776394> Nutzername:**",
+ "field2": "**<:arrow:832598861813776394> ID:**",
+ "field3": "**<:arrow:832598861813776394> Profilbild:**",
+ "field4": "**<:arrow:832598861813776394> Zeitpunkt DC gejoined:**",
+ "field5": "**<:arrow:832598861813776394> Zeitpunkt Server gejoined:**",
+ "field6": "**<:arrow:832598861813776394> Flags:**",
+ "field7": "**<:arrow:832598861813776394> Status:**",
+ "field8": "**<:arrow:832598861813776394> Höchste Rolle:**",
+ "field9": "**<:arrow:832598861813776394> Ist ein Bot:**",
+ "field10": "**<:arrow:832598861813776394> Activität:**",
+ "field11": "**<:arrow:832598861813776394> Berechtigungen:**",
+ "field12": "**<:arrow:832598861813776394> [{rolesize}] Rollen:**",
"noroles": "Keine Rollen",
"nopermissions": "Keine Berechtigungen",
"nostatus": "Hat keine Aktivität",
@@ -460,9 +460,9 @@
},
"youtubeinfo": {
"loading": "Bekomme die Youtube Channel Information ,,,",
- "error1": "<:NO:1169479454918180937> Bitte nutze einen gültigen Youtube Link",
- "error2": "<:NO:1169479454918180937> **Nur der, der {prefix}youtubeinfo geschrieben hat, darf das machen!**",
- "example": "Example Richtige Nutzung: `{prefix}youtubeinfo https://youtube.com/c/bestgamershk2`",
+ "error1": "<:no:833101993668771842> Bitte nutze einen gültigen Youtube Link",
+ "error2": "<:no:833101993668771842> **Nur der, der {prefix}youtubeinfo geschrieben hat, darf das machen!**",
+ "example": "Example Richtige Nutzung: `{prefix}youtubeinfo https://youtube.com/c/Tomato6966`",
"field1": "**Abonnenten:**",
"field2": "**Tags:**",
"field3": "**Ungelistet:**",
@@ -500,7 +500,7 @@
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"forward": {
- "allowed": "<:NO:1169479454918180937> **Du darfst nur für `1` - `{duration}` Sekunden vorspulene!**",
+ "allowed": "<:no:833101993668771842> **Du darfst nur für `1` - `{duration}` Sekunden vorspulene!**",
"title": " **Song vorgespult!**",
"description": "**Vorgespult für `{amount} Sekunden`, zu: `{time}`**",
"field": "⌛ **Progress:**",
@@ -525,38 +525,38 @@
"variable4": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"jump": {
- "error1": "<:NO:1169479454918180937> **Bitte füge hinzu zu welchen Song du springen möchtest**",
- "error2": "<:NO:1169479454918180937> **Es muss eine `Song-Warteschlangen-Number` sein!**",
- "error3": "<:NO:1169479454918180937> **Dieser Song ist __nicht__ in der Song-Warteschlange**!",
+ "error1": "<:no:833101993668771842> **Bitte füge hinzu zu welchen Song du springen möchtest**",
+ "error2": "<:no:833101993668771842> **Es muss eine `Song-Warteschlangen-Number` sein!**",
+ "error3": "<:no:833101993668771842> **Dieser Song ist __nicht__ in der Song-Warteschlange**!",
"title": " **Zum `{number}.` Song gesprungen!**",
"description": "⏭ **`{number}` Songs übersprungen!**",
"variable1": "`${client.la[ls].common.example}: \\`${prefix}jump ${player.queue.size - 2 <= 0 ? player.queue.size : player.queue.size - 2 }\\``",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"loop": {
- "errortitle": "<:NO:1169479454918180937> **Bitte eine Wiederholungs Methode hinzu!**",
+ "errortitle": "<:no:833101993668771842> **Bitte eine Wiederholungs Methode hinzu!**",
"errordescription": "`loop song` / `loop queue` / `loop off`",
"track": {
- "disabled": "<:NO:1169479454918180937> **Die Song-Wiederholung ist deaktiviert!**",
+ "disabled": "<:no:833101993668771842> **Die Song-Wiederholung ist deaktiviert!**",
"enabled": " **Die Song-Wiederholung ist aktiviert!**"
},
"queue": {
- "disabled": "<:NO:1169479454918180937> **Die Song-Warteschlangen-Wiederholung ist deaktiviert!**",
+ "disabled": "<:no:833101993668771842> **Die Song-Warteschlangen-Wiederholung ist deaktiviert!**",
"enabled": " **Die Song-Warteschlangen-Wiederholung ist aktiviert!**"
},
- "andsong": "<:NO:1169479454918180937> **Und ich habe die Song-Wiederholung deaktiviert!**",
- "andqueue": "<:NO:1169479454918180937> **Und ich habe die Song-Warteschlangen-Wiederholung deaktiviert!**",
+ "andsong": "<:no:833101993668771842> **Und ich habe die Song-Wiederholung deaktiviert!**",
+ "andqueue": "<:no:833101993668771842> **Und ich habe die Song-Warteschlangen-Wiederholung deaktiviert!**",
"variable1": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"lyrics": {
- "nolyrics": "<:NO:1169479454918180937> **Keine Song-Texte gefunden!**",
+ "nolyrics": "<:no:833101993668771842> **Keine Song-Texte gefunden!**",
"searching": "🔎 **Suche nach Song-Texten`{title}`**",
"found": "📃 **Song-Texte für:** `{title}`",
"variable1": "`\\u200b`",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"move": {
- "variable1": "`<:NO:1169479454918180937> | Falsche Befehlnutzung!`",
+ "variable1": "`<:no:833101993668771842> | Falsche Befehlnutzung!`",
"variable2": "`Richtige Nutzung: \\`${prefix}move \\`\\nZum Beispiel: \\`${prefix}move ${player.queue.size - 2 <= 0 ? player.queue.size : player.queue.size - 2 } 1\\``",
"variable3": "`${emoji.msg.ERROR} Falsche Befehlnutzung!`",
"variable4": "`Richtige Nutzung: \\`${prefix}move \\`\\nZum Beispiel: \\`${prefix}move ${player.queue.size - 2 <= 0 ? player.queue.size : player.queue.size - 2 } 1\\``",
@@ -566,28 +566,28 @@
"variable8": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"moveme": {
- "variable1": "`<:NO:1169479454918180937> Ich bin noch niergends verbunden!`",
+ "variable1": "`<:no:833101993668771842> Ich bin noch niergends verbunden!`",
"variable2": "`${emoji.msg.ERROR} Bitte trete zuerst einen Channel bei!`",
"variable3": "`${emoji.msg.ERROR} Dein Channrl ist voll, ich kann dich nicht hinein bewegen`",
"variable4": "`${emoji.msg.ERROR} Du bist bereits in meinem Channel!`",
"variable5": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"nowplaying": {
- "variable1": "`<:NO:1169479454918180937> Ich spiele zurzeit nichts ab!`",
+ "variable1": "`<:no:833101993668771842> Ich spiele zurzeit nichts ab!`",
"variable2": "`${player.playing ? `${emoji.msg.resume}` : `${emoji.msg.pause}`} **${player.queue.current.title}**`",
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"pause": {
- "variable1": "`<:NO:1169479454918180937> Der Song ist bereits pausiert!`",
+ "variable1": "`<:no:833101993668771842> Der Song ist bereits pausiert!`",
"variable2": "`Setze sie wieder mit: \\`${prefix}resume\\` fort!`",
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"play": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einen Suchbegriff geben!`",
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einen Suchbegriff geben!`",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playlist": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einrn Suchbegriff geben!`",
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einrn Suchbegriff geben!`",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playmusicmix": {
@@ -598,27 +598,27 @@
"variable4": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playsc": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einen Suchbegriff geben! `",
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einen Suchbegriff geben! `",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playskip": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einen Suchbegriff geben! `",
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einen Suchbegriff geben! `",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playskipsc": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einen Suchbegriff geben! `",
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einen Suchbegriff geben! `",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"playsongoftheday": {
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"playtop": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir einen Link oder einen Suchbegriff geben! `"
+ "variable1": "`<:no:833101993668771842> Du musst mir einen Link oder einen Suchbegriff geben! `"
},
"queue": {
"variablex_1": "`**0) ZURZEIT SPIELENDER SONG:**`",
"variable1": "`**${player.queue.current.title.substr(0, 60)}** - \\`${player.queue.current.isStream ? `LIVE STREAM` : format(player.queue.current.duration).split(` | `)[0]}\\`\\n*Angefragt von: ${player.queue.current.requester.tag}*`",
- "variable2": "`<:NO:1169479454918180937> No tracks in the queue`",
+ "variable2": "`<:no:833101993668771842> No tracks in the queue`",
"variablex_3": "`**0) ZURZEIT SPIELENDER SONG:**`",
"variable3": "`**${player.queue.current.title.substr(0, 60)}** - \\`${player.queue.current.isStream ? `LIVE STREAM` : format(player.queue.current.duration).split(` | `)[0]}\\`\\n*Angefragt von: ${player.queue.current.requester.tag}*`",
"variablex_4": "`**0) ZURZEIT SPIELENDER SONG:**`",
@@ -637,7 +637,7 @@
"variable6": "`${e.message}`"
},
"radio": {
- "variable1": "`<:NO:1169479454918180937> Kein gültiger Radiosender`",
+ "variable1": "`<:no:833101993668771842> Kein gültiger Radiosender`",
"variable2": "`Bitte benutze eine nummer zwischen: \\`1\\` and \\`183\\``",
"variable3": "`${emoji.msg.ERROR} Nummer außerhalb der Zahl`",
"variable4": "`Bitte wähle eine Nummer zwischen \\`1\\` and \\`150\\``",
@@ -655,7 +655,7 @@
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"removetrack": {
- "variable1": "`<:NO:1169479454918180937> Bitte erwähne einen Track den du entfernen möchtest`",
+ "variable1": "`<:no:833101993668771842> Bitte erwähne einen Track den du entfernen möchtest`",
"variable2": "`Zum Beispiel: \\`removetrack ${player.queue.size - 2 <= 0 ? player.queue.size : player.queue.size - 2 }\\``",
"variable3": "`${emoji.msg.ERROR} Es ist keine vorhandene Warteschlange`",
"variable4": "`Zum Beispiel: \\`removetrack ${player.queue.size - 2 <= 0 ? player.queue.size : player.queue.size - 2 }\\``",
@@ -667,7 +667,7 @@
"removevoteskip": {
"variable1": "`Stimme entfernt!`",
"variable2": "`Es sind im moment: \\`${player.get(`votes`)}\\` von \\`${voteamount}\\` gebrauchten Stimmen`",
- "variable3": "`<:NO:1169479454918180937> Du hast noch nicht gewählt!!!`",
+ "variable3": "`<:no:833101993668771842> Du hast noch nicht gewählt!!!`",
"variable4": "`There are: \\`${player.get(`votes`)}\\` of \\`${voteamount}\\` needed Votes`",
"variable5": "`${emoji.msg.ERROR} Ich kann deinen Vote nicht entfernen!`",
"variable6": "`Weil noch keine DJ-ROLE erstellt wurde! Erstelle Sie mit: \\`${prefix}adddj @DJ-Setup\\``",
@@ -677,17 +677,17 @@
"variable1": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"resume": {
- "variable1": "`<:NO:1169479454918180937> Der Song wurde schon gespielt`",
+ "variable1": "`<:no:833101993668771842> Der Song wurde schon gespielt`",
"variable2": "`Du kannst ihn pausieren mit: \\`${prefix}pause\\``",
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"rewind": {
- "variable1": "`<:NO:1169479454918180937> Du kannst zurückspulen zu \\`1\\` - \\`${player.queue.current.duration}\\``",
+ "variable1": "`<:no:833101993668771842> Du kannst zurückspulen zu \\`1\\` - \\`${player.queue.current.duration}\\``",
"variable2": "`${emoji.msg.rewind} Habe das Lied zurückgespult für \\`${args[0]} Seconds\\` to: ${format(Number(player.position))}`",
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"search": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir eine URL oder einen Suchbegriff geben.`",
+ "variable1": "`<:no:833101993668771842> Du musst mir eine URL oder einen Suchbegriff geben.`",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"searchplaylist": {
@@ -695,7 +695,7 @@
"variable2": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"searchradio": {
- "variable1": "`<:NO:1169479454918180937>Was sollte der Suchtyp sein?`",
+ "variable1": "`<:no:833101993668771842>Was sollte der Suchtyp sein?`",
"variable2": "`Richtige Nutzung: \\`${prefix}searchradio \\`\\nValid Types: \\`country\\`, \\`city\\`, \\`name\\`, \\`genre\\`\\nZum Beispiel: \\`${prefix}searchradio tag jazz\\`\\nZum Beispiel: \\`${prefix}searchradio state Austria\\``",
"variable3": "`${emoji.msg.ERROR} Wonach soll ich suchen?`",
"variable4": "`Richtige Nutzung: \\`${prefix}searchradio \\`\\nValid Types: \\`country\\`, \\`city\\`, \\`name\\`, \\`genre\\`\\nZum Beispiel: \\`${prefix}searchradio tag jazz\\`\\nZum Beispiel: \\`${prefix}searchradio state Austria\\``",
@@ -710,14 +710,14 @@
"variable13": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"searchsc": {
- "variable1": "`<:NO:1169479454918180937> Du musst mir eine URL oder einen Suchbegriff geben.`",
+ "variable1": "`<:no:833101993668771842> Du musst mir eine URL oder einen Suchbegriff geben.`",
"variable2": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"searchsimilar": {
"variable1": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"seek": {
- "variable1": "`<:NO:1169479454918180937> You may seek from \\`0\\` - \\`${player.queue.current.duration}\\``",
+ "variable1": "`<:no:833101993668771842> You may seek from \\`0\\` - \\`${player.queue.current.duration}\\``",
"variable2": "`Seeked song to: ${format(Number(args[0]) * 1000)}`",
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
@@ -732,18 +732,18 @@
},
"stop": {
"variable1": "`${emoji.msg.stop} Stopped and left your Channel`",
- "variable2": "`<:NO:1169479454918180937> **Es wird in diesem server gerade kein Liead abgespielt.**`",
- "variable3": "`<:NO:1169479454918180937> **Es wird in diesem server gerade kein Liead abgespielt.**`",
+ "variable2": "`<:no:833101993668771842> **Es wird in diesem server gerade kein Liead abgespielt.**`",
+ "variable3": "`<:no:833101993668771842> **Es wird in diesem server gerade kein Liead abgespielt.**`",
"variable4": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"unshuffle": {
- "variable1": "`<:NO:1169479454918180937>Sie haben diese Warteschlange noch nicht gemischt!`",
+ "variable1": "`<:no:833101993668771842>Sie haben diese Warteschlange noch nicht gemischt!`",
"variable2": "`To shuffle it type: \\`${prefix}shuffle\\``",
"variable3": "`${emoji.msg.shuffle} Wwarteschlange **Un**Gemischt `",
"variable4": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"volume": {
- "variable1": "`<:NO:1169479454918180937> Du musr das Volumen wählen zwischen \\`1\\` - \\`150\\``",
+ "variable1": "`<:no:833101993668771842> Du musr das Volumen wählen zwischen \\`1\\` - \\`150\\``",
"variable2": "`**Current volume: \\`${player.volume}%\\`**`",
"variable3": "`${emoji.msg.ERROR} Sie können die Lautstärke einstellen zwischen \\`1\\` - \\`150\\``",
"variable4": "`**Current volume: \\`${player.volume}%\\`**`",
@@ -756,7 +756,7 @@
"variable2": "`Nun sind es: \\`${player.get(`votes`)}\\` of \\`${voteamount}\\` needed Votes\\n\\n> Ziel Erreicht! Überspringen⏭`",
"variable3": "` Deine Stimme hinzugefügt`",
"variable4": "`Nun sind es: \\`${player.get(`votes`)}\\` of \\`${voteamount}\\` von den gebrauchten Stimmen!`",
- "variable5": "`<:NO:1169479454918180937> Du hast bereits gestimmt!!`",
+ "variable5": "`<:no:833101993668771842> Du hast bereits gestimmt!!`",
"variable6": "`Es sind: \\`${player.get(`votes`)}\\` of \\`${voteamount}\\` gebrauchte Stimmen`",
"variable7": "` ${emoji.msg.stop} Gestoppt und den Channel verlassen`",
"variable8": "` ${emoji.msg.skip_track} Zum nächsten Song übersprungen`",
@@ -780,45 +780,45 @@
},
"programming": {
"coliru": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a Valid Code`",
- "variable2": "`<:NO:1169479454918180937> You provide an Invalid Language`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a Valid Code`",
+ "variable2": "`<:no:833101993668771842> You provide an Invalid Language`",
"variable3": "`Supported ones: **${Object.keys(possiblecommands).join(\"︲\")}**`",
"variable4": "`**Output too long. View the results here:**\\n> https://coliru.stacked-crooked.com/a/${id}`",
"variable5": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"compile": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a Valid Code`",
- "variable2": "`<:NO:1169479454918180937> You provide an Invalid Language`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a Valid Code`",
+ "variable2": "`<:no:833101993668771842> You provide an Invalid Language`",
"variable3": "`Supported ones: **${Object.keys(possiblecommands).join(\"︲\")}**`",
"variable4": "`**Output too long. View the results here:**\\n> https://coliru.stacked-crooked.com/a/${id}`",
"variable5": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"github": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a Repository`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a Repository`",
"variable2": "`Richtige Nutzung: \\`${prefix}github \\``",
- "variable3": "`<:NO:1169479454918180937> Repository must be in the form \\`username/repository\\``",
- "variable4": "`Richtige Nutzung: \\`${prefix}github \\`\\nZum Beispiel: \\`${prefix}github https://github.com/bestgamershk2/Codes/\\``",
- "variable5": "`<:NO:1169479454918180937> Could not fetch that repo`",
+ "variable3": "`<:no:833101993668771842> Repository must be in the form \\`username/repository\\``",
+ "variable4": "`Richtige Nutzung: \\`${prefix}github \\`\\nZum Beispiel: \\`${prefix}github https://github.com/Tomato6966/Codes/\\``",
+ "variable5": "`<:no:833101993668771842> Could not fetch that repo`",
"variable6": "\"Are you sure it exists?\"",
"variable7": "{name: \"GitHub\", iconURL: \"https://github.githubassets.com/images/modules/logos_page/GitHub-Mark.png\"}",
"variable8": "`${body.description || \"No Description.\"}\\n\\n❯ **Language:** ${body.language}\\n❯ **Forks:** ${body.forks_count.toLocaleString()}\\n❯ **License:** ${license}\\n❯ **Open Issues:** ${body.open_issues.toLocaleString()}\\n❯ **Watchers:** ${body.subscribers_count.toLocaleString()}\\n❯ **Stars:** ${body.stargazers_count.toLocaleString()}\\n❯ **Size:** ${size}${footer.length ? `\\n${footer.join(\"\\n\")}` : \"\"}`",
"variable9": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"httpstatus": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a Status`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a Status`",
"variable2": "`Richtige Nutzung: \\`${prefix}httpstatus \\``",
"variable3": "\"Baka! That's an invalid http status code.\"",
"variable4": "\"HTTP Cat\"",
"variable5": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"npm": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a NPM-PACKAGE`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a NPM-PACKAGE`",
"variable2": "`Richtige Nutzung: \\`${prefix}npm \\``",
"variable3": "`NPM - ${pkg}`",
"variable4": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"npmpkgsize": {
- "variable1": "`<:NO:1169479454918180937> You didn't provide a NPM-PACKAGE`",
+ "variable1": "`<:no:833101993668771842> You didn't provide a NPM-PACKAGE`",
"variable2": "`Richtige Nutzung: \\`${prefix}npm \\``",
"variable3": "\"That package doesn't exist.\"",
"variable4": "`NPM Package Size - ${name}`",
@@ -828,17 +828,17 @@
},
"settings": {
"addbotchat": {
- "variable1": "`<:NO:1169479454918180937> Bitte erwähne den Channel , wie Zum Beispiel: #channel!`",
- "variable2": "`<:NO:1169479454918180937> Es sieht so aus als Würde dieser Kanal nicht existieren!`",
- "variable3": "`<:NO:1169479454918180937> Dieser Channel ist bereits in der Liste`",
+ "variable1": "`<:no:833101993668771842> Bitte erwähne den Channel , wie Zum Beispiel: #channel!`",
+ "variable2": "`<:no:833101993668771842> Es sieht so aus als Würde dieser Kanal nicht existieren!`",
+ "variable3": "`<:no:833101993668771842> Dieser Channel ist bereits in der Liste`",
"variable4": "` Bot Chat hinzugefügt \\`${channel.name}\\``",
"variable5": "`All Bot Chats:\\n> ${leftb}`",
"variable6": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"adddj": {
- "variable1": "`<:NO:1169479454918180937> Bitte erwähne eine Gültige Rolle, Zum Beispiel @rolle!`",
- "variable2": "`<:NO:1169479454918180937> Es siehst so aus als würde die Rolle auf diesem Server hier nicht existieren!`",
- "variable3": "`<:NO:1169479454918180937> Diese Rolle ist bereits in der Liste!`",
+ "variable1": "`<:no:833101993668771842> Bitte erwähne eine Gültige Rolle, Zum Beispiel @rolle!`",
+ "variable2": "`<:no:833101993668771842> Es siehst so aus als würde die Rolle auf diesem Server hier nicht existieren!`",
+ "variable3": "`<:no:833101993668771842> Diese Rolle ist bereits in der Liste!`",
"variable4": "` DJ-ROLLE hinzugefügt \\`${role.name}\\``",
"variable5": "`Alle DJ-ROLLEN:\\n> ${leftb}`",
"variable6": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
@@ -859,11 +859,11 @@
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"defaultvolume": {
- "variable1": "`<:NO:1169479454918180937> Du hast keine Standart Volumen angegeben",
+ "variable1": "`<:no:833101993668771842> Du hast keine Standart Volumen angegeben",
"variable2": "`**Die Standart Volumen im moment ist:: \\`${client.settings.get(message.guild.id, \"defaultvolume\")}%\\`**`",
- "variable3": "`<:NO:1169479454918180937> Du hast keine Standart Volumen angegeben`",
+ "variable3": "`<:no:833101993668771842> Du hast keine Standart Volumen angegeben`",
"variable4": "`*It must be a **Number***\\n**The Current Default Volume is: \\`${client.settings.get(message.guild.id, \"defaultvolume\")}%\\`**`",
- "variable5": "`<:NO:1169479454918180937> Du hast keine neue Standart Volumen angegeben`",
+ "variable5": "`<:no:833101993668771842> Du hast keine neue Standart Volumen angegeben`",
"variable6": "`*Es mus zwischen \\`150\\` and \\`1\\`*\\n**Im moment ist die Standart Volumen: \\`${client.settings.get(message.guild.id, \"defaultvolume\")}%\\`**`",
"variable7": "`**Ich habe Erfolgreich die Standart Volumen : \\`${client.settings.get(message.guild.id, \"defaultvolume\")}%\\` gesetzt**`",
"variable8": "`\\`\\`\\`${e.message}\\`\\`\\``"
@@ -874,50 +874,50 @@
"variable3": "`\\`\\`\\`${e.message}\\`\\`\\``"
},
"prefix": {
- "variable1": "`<:NO:1169479454918180937> Bitte sende einen Möglichen Prefix`",
+ "variable1": "`<:no:833101993668771842> Bitte sende einen Möglichen Prefix`",
"variable2": "`Derzeitiger Prefix: \\`${prefix}\\``",
- "variable3": "`<:NO:1169479454918180937> Der Prefix kann nicht zwei Leerzeichen haben!!`",
- "variable4": "`<:NO:1169479454918180937> Der Prefix kann nicht länger als \\`5\\`sein`",
+ "variable3": "`<:no:833101993668771842> Der Prefix kann nicht zwei Leerzeichen haben!!`",
+ "variable4": "`<:no:833101993668771842> Der Prefix kann nicht länger als \\`5\\`sein`",
"variable5": "` Der neue Prefix ist nun **\\`${args[0]}\\`**`",
"variable6": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"removebotchat": {
- "variable1": "`<:NO:1169479454918180937> Bitte füge einen Channel via Ping hinzu! Zum Beispiel: #channel!`",
- "variable2": "`<:NO:1169479454918180937> Es sieht so aus als ob es diesen Channel nicht gibt!`",
- "variable3": "`<:NO:1169479454918180937> Dieser Channel ist nicht in den Bot Chat Einstellungen!!`",
+ "variable1": "`<:no:833101993668771842> Bitte füge einen Channel via Ping hinzu! Zum Beispiel: #channel!`",
+ "variable2": "`<:no:833101993668771842> Es sieht so aus als ob es diesen Channel nicht gibt!`",
+ "variable3": "`<:no:833101993668771842> Dieser Channel ist nicht in den Bot Chat Einstellungen!!`",
"variable4": "` Bot Chat entfernt \\`${channel.name}\\``",
"variable5": "`Alle Bot chats:\\n> ${leftb}`",
"variable6": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"removedj": {
- "variable1": "`<:NO:1169479454918180937> Bitte füge eine ROlle mit pingen hinzu! Beispiel : @rolle!`",
- "variable2": "`<:NO:1169479454918180937> Es sieht so aus als ob es diese Rolle hier nicht gibt!`",
- "variable3": "`<:NO:1169479454918180937> Diese Rolle ist bereits eine DJ-ROLLE`",
+ "variable1": "`<:no:833101993668771842> Bitte füge eine ROlle mit pingen hinzu! Beispiel : @rolle!`",
+ "variable2": "`<:no:833101993668771842> Es sieht so aus als ob es diese Rolle hier nicht gibt!`",
+ "variable3": "`<:no:833101993668771842> Diese Rolle ist bereits eine DJ-ROLLE`",
"variable4": "` Ich habe die rolle entfernt \\`${role.name}\\``",
"variable5": "`Alle zurückgebliebenen DJ-ROLLEN:\\n> ${leftb}`",
"variable6": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"reset": {
- "variable1": "`<:NO:1169479454918180937> Du hast nicht Rechte für diesen Befehl! *Nur der Server-Owner*`",
+ "variable1": "`<:no:833101993668771842> Du hast nicht Rechte für diesen Befehl! *Nur der Server-Owner*`",
"variable2": "`Möchtest du wirklich **ALLE SETTINGS** zurücksetzen??`",
"variable3": "`*Antworte mit:* **__\\`Ja\\`__**`",
"variable4": "` Alles Zurückgesetzt!!`",
"variable5": "`Der Prefix ist nun Wieder: \\`${config.prefix}\\`\\nKeine Dj_roles, Keine Settups, Keine Bot Kanäle mehr`",
- "variable6": "`<:NO:1169479454918180937> Abgebrochen, weil es nicht das Richtige Wort ist / Zeit abgelaufen`",
+ "variable6": "`<:no:833101993668771842> Abgebrochen, weil es nicht das Richtige Wort ist / Zeit abgelaufen`",
"variable7": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"toggledjonly": {
- "variable1": "\"<:NO:1169479454918180937> Bitte füge einen Befehl hinzu\"",
+ "variable1": "\"<:no:833101993668771842> Bitte füge einen Befehl hinzu\"",
"variable2": "\"Zum Beispiel: `toggledjonly skip`\"",
"variable3": "` Befehl gesetzt \\`${args[0]}\\` zu **Nicht nur DJ**`",
"variable4": "`Alle DJ Only cmds:\\n> \\`${client.settings.get(message.guild.id, `djonlycmds`).sort(function(a, b){if(a < b) { return -1; }if(a > b) { return 1; } return 0;}).join(\"`, `\")}\\``",
- "variable5": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten!\"",
+ "variable5": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten!\"",
"variable6": "\"```\" + e.stack + \"```\"",
"variable7": "` Befehl gesetzt \\`${args[0]}\\` zu Nur DJ`",
"variable8": "`All Dj-ONLY-CMDS:\\n> \\`${client.settings.get(message.guild.id, `djonlycmds`).sort(function(a, b){if(a < b) { return -1; }if(a > b) { return 1; } return 0;}).join(\"`, `\")}\\``",
- "variable9": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten!\"",
+ "variable9": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten!\"",
"variable10": "\"```\" + e.stack + \"```\"",
- "variable11": "`<:NO:1169479454918180937> Konnte den Musik Befehl nicht finden \\`${args[0]}\\``",
+ "variable11": "`<:no:833101993668771842> Konnte den Musik Befehl nicht finden \\`${args[0]}\\``",
"variable12": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"toggledm": {
@@ -941,209 +941,209 @@
},
"customqueues": {
"savedqueue": {
- "variable1": "`<:NO:1169479454918180937> Du hast keinen **TYPE** hinzugefügt `",
+ "variable1": "`<:no:833101993668771842> Du hast keinen **TYPE** hinzugefügt `",
"variable2": "`Richtige Nutzung: \\`${prefix}savedqueue [Options]\\`\\nAvailable Types:\\n\\`create\\`, \\`addcurrenttrack\\`, \\`addcurrentqueue\\`, \\`removetrack\\`, \\`removedupes\\`, \\`showall\\`, \\`createsave\\`, \\`delete\\`, \\`showdetails\\`, \\`play\\`, \\`shuffle\\``",
- "variable3": "`<:NO:1169479454918180937> Du hast keinen richtigen Namen zum Speichern der Warteschlange hinzugefügt`",
+ "variable3": "`<:no:833101993668771842> Du hast keinen richtigen Namen zum Speichern der Warteschlange hinzugefügt`",
"variable4": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\Kann alles sein mit einem Maximum von 10 Buchstaben\\``",
- "variable5": "`<:NO:1169479454918180937> Deine Gespeicherter *Warteschlangen Name* ist zu lang`",
+ "variable5": "`<:no:833101993668771842> Deine Gespeicherter *Warteschlangen Name* ist zu lang`",
"variable6": "`Maximale länge ist 10\\`10\\``",
- "variable7": "`<:NO:1169479454918180937>Deine Warteschlange existierts bereits!!`",
+ "variable7": "`<:no:833101993668771842>Deine Warteschlange existierts bereits!!`",
"variable8": "`Gelöscht:: \\`${prefix}savedqueue delete ${Name}\\`\\nShow its content: \\`${prefix}savedqueue showdetails ${Name}`",
"variable9": "` Erstellt ${Name}`",
"variable10": "`Die im Moment spielende **Warteschlange ** hinzugefügt zu: \\`${prefix}savedqueue addcurrentqueue ${Name}\\`\\nAdd the current **Track** onto it: \\`${prefix}savedqueue addcurrenttrack ${Name}\\``",
- "variable11": "`<:NO:1169479454918180937> Du hast keine *Gespeicherte Warteschlangen Name* gesagt`",
+ "variable11": "`<:no:833101993668771842> Du hast keine *Gespeicherte Warteschlangen Name* gesagt`",
"variable12": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Kann alles zwischen 10 Buchstaben sein\\``",
- "variable13": "`<:NO:1169479454918180937> Dein Gespeicherter **WARTESCHLANGENNAME** Ist Zu lang!!`",
+ "variable13": "`<:no:833101993668771842> Dein Gespeicherter **WARTESCHLANGENNAME** Ist Zu lang!!`",
"variable14": "`Maximale Länge ist \\`10\\``",
- "variable15": "`<:NO:1169479454918180937> Deine Warteschlange Existiert nicht!`",
+ "variable15": "`<:no:833101993668771842> Deine Warteschlange Existiert nicht!`",
"variable16": "`Erstellt mit:: \\`${prefix}savedqueue create ${Name}\\``",
- "variable17": "`<:NO:1169479454918180937> Es wird nix Gespielt`",
- "variable18": "`<:NO:1169479454918180937> Es wird nix gespielt!`",
+ "variable17": "`<:no:833101993668771842> Es wird nix Gespielt`",
+ "variable18": "`<:no:833101993668771842> Es wird nix gespielt!`",
"variable19": "`Es sind nun \\`${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks\\`\\n\\nPlay it with: \\`${prefix}savedqueue play ${Name}\\``",
- "variable20": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable20": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable21": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable22": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable22": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable23": "`Maximale Länge ist \\`10\\``",
- "variable24": "`<:NO:1169479454918180937> Your Queue does not exists yet!`",
+ "variable24": "`<:no:833101993668771842> Your Queue does not exists yet!`",
"variable25": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
- "variable26": "`<:NO:1169479454918180937> There is nothing playing`",
- "variable27": "`<:NO:1169479454918180937> The Queue is Empty!`",
+ "variable26": "`<:no:833101993668771842> There is nothing playing`",
+ "variable27": "`<:no:833101993668771842> The Queue is Empty!`",
"variable28": "` Added ${tracks.length} Tracks onto the Queue \\`${Name}\\``",
"variable29": "`There are now: \\`${newqueue.length} Tracks\\`\\n\\nPlay it with: \\`${prefix}savedqueue play ${Name}\\``",
- "variable30": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable30": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable31": "`Richtige Nutzung: \\`${prefix}savedqueue removetrack [Options]\\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable32": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable32": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable33": "`Maximale Länge ist \\`10\\``",
- "variable34": "`<:NO:1169479454918180937> You didn't entered an Option (the Track you want to remove (ID OF IT))`",
+ "variable34": "`<:no:833101993668771842> You didn't entered an Option (the Track you want to remove (ID OF IT))`",
"variable35": "`See all your Tracks: \\`${prefix}savedqueue showdetails ${Name}\\`Richtige Nutzung: \\`${prefix}savedqueue removetrack ${Name} \\``",
- "variable36": "`<:NO:1169479454918180937> Your Queue is not existing!`",
+ "variable36": "`<:no:833101993668771842> Your Queue is not existing!`",
"variable37": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
- "variable38": "`<:NO:1169479454918180937> Your provided Option is out of Range (\\`0\\` - \\`${tracks.length-1}\\`)`",
+ "variable38": "`<:no:833101993668771842> Your provided Option is out of Range (\\`0\\` - \\`${tracks.length-1}\\`)`",
"variable39": "`See all your Tracks: \\`${prefix}savedqueue showdetails ${Name}\\`Richtige Nutzung: \\`${prefix}savedqueue removetrack ${Name} \\``",
"variable40": "`There are now: \\`${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks\\`\\n\\nPlay it with: \\`${prefix}savedqueue play ${Name}\\``",
- "variable41": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable41": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable42": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable43": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable43": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable44": "`Maximale Länge ist \\`10\\``",
- "variable45": "`<:NO:1169479454918180937> Your Queue is not existing!`",
+ "variable45": "`<:no:833101993668771842> Your Queue is not existing!`",
"variable46": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
- "variable47": "`<:NO:1169479454918180937> Your Saved-Queue ${Name} is Empty!`",
+ "variable47": "`<:no:833101993668771842> Your Saved-Queue ${Name} is Empty!`",
"variable48": "`Add the current **Queue** onto it: \\`${prefix}savedqueue addcurrentqueue ${Name}\\`\\nAdd the current **Track** onto it: \\`${prefix}savedqueue addcurrenttrack ${Name}\\``",
"variable49": "`There are now: \\`${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks\\`\\n\\nPlay it with: \\`${prefix}savedqueue play ${Name}\\``",
- "variable50": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable50": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable51": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable52": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable52": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable53": "`Maximale Länge ist \\`10\\``",
- "variable54": "`<:NO:1169479454918180937> Your Queue is not existing!`",
+ "variable54": "`<:no:833101993668771842> Your Queue is not existing!`",
"variable55": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
- "variable56": "`<:NO:1169479454918180937> Your Saved-Queue ${Name} is Empty!`",
+ "variable56": "`<:no:833101993668771842> Your Saved-Queue ${Name} is Empty!`",
"variable57": "`Add the current **Queue** onto it: \\`${prefix}savedqueue addcurrentqueue ${Name}\\`\\nAdd the current **Track** onto it: \\`${prefix}savedqueue addcurrenttrack ${Name}\\``",
"variable58": "`There are now: \\`${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks\\`\\n\\nPlay it with: \\`${prefix}savedqueue play ${Name}\\``",
- "variable59": "`<:NO:1169479454918180937> You don't have any Queues saved yet`",
+ "variable59": "`<:no:833101993668771842> You don't have any Queues saved yet`",
"variable60": "`Create one with: \\`${prefix}savedqueue create \\``",
- "variable61": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable61": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable62": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable63": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable63": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable64": "`Maximale Länge ist \\`10\\``",
- "variable65": "`<:NO:1169479454918180937> Your Queue already exists!`",
+ "variable65": "`<:no:833101993668771842> Your Queue already exists!`",
"variable66": "`Delete it: \\`${prefix}savedqueue delete ${Name}\\`\\nShow its content: \\`${prefix}savedqueue showdetails ${Name}`",
- "variable67": "`<:NO:1169479454918180937> There is nothing playing`",
- "variable68": "`<:NO:1169479454918180937> The Queue is Empty!`",
+ "variable67": "`<:no:833101993668771842> There is nothing playing`",
+ "variable68": "`<:no:833101993668771842> The Queue is Empty!`",
"variable69": "` Created ${Name} and Added ${tracks.length} Tracks to it`",
"variable70": "`Play it with: \\`${prefix}savedqueue play ${Name}\\`\\nAdd the current **Queue** onto it: \\`${prefix}savedqueue addcurrentqueue ${Name}\\`\\nAdd the current **Track** onto it: \\`${prefix}savedqueue addcurrenttrack ${Name}\\``",
- "variable71": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable71": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable72": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable73": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable73": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable74": "`Maximale Länge ist \\`10\\``",
- "variable75": "`<:NO:1169479454918180937> Your Queue does not exists yet!`",
+ "variable75": "`<:no:833101993668771842> Your Queue does not exists yet!`",
"variable76": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
"variable77": "` Deleted the Queue \\`${Name}\\``",
- "variable78": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable78": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable79": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable80": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable80": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable81": "`Maximale Länge ist \\`10\\``",
- "variable82": "`<:NO:1169479454918180937> Bitte trete einen Voice Channel vorher bei!.`",
- "variable83": "`<:NO:1169479454918180937> You need to be in my voice channel to use this command!`",
+ "variable82": "`<:no:833101993668771842> Bitte trete einen Voice Channel vorher bei!.`",
+ "variable83": "`<:no:833101993668771842> You need to be in my voice channel to use this command!`",
"variable84": "`Channelname: \\`${message.guild.channels.cache.get(player.voiceChannel).name}\\``",
- "variable85": "`<:NO:1169479454918180937> You need to be in my voice channel to use this command!`",
+ "variable85": "`<:no:833101993668771842> You need to be in my voice channel to use this command!`",
"variable86": "`Channelname: \\`🔈 ${mechannel.name}\\``",
- "variable87": "`<:NO:1169479454918180937> Your Queue does not exists Yet!`",
+ "variable87": "`<:no:833101993668771842> Your Queue does not exists Yet!`",
"variable88": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
"variable89": "`Attempting to Load ${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks`",
"variable90": "`It might take around about \\`${Math.ceil(client.queuesaves.get(message.author.id, `${Name}`).length / 2)} Seconds\\``",
"variable91": "` Loaded ${client.queuesaves.get(message.author.id, `${Name}`).length} Tracks onto the current Queue`",
- "variable92": "`<:NO:1169479454918180937> You didn't entered a Saved-Queue-Name`",
+ "variable92": "`<:no:833101993668771842> You didn't entered a Saved-Queue-Name`",
"variable93": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nName Information:\\n\\`Can be anything with maximum of 10 Letters\\``",
- "variable94": "`<:NO:1169479454918180937> Your Saved-Queue-Name is too long!`",
+ "variable94": "`<:no:833101993668771842> Your Saved-Queue-Name is too long!`",
"variable95": "`Maximale Länge ist \\`10\\``",
- "variable96": "`<:NO:1169479454918180937> Your Queue is not existing!`",
+ "variable96": "`<:no:833101993668771842> Your Queue is not existing!`",
"variable97": "`Create it with: \\`${prefix}savedqueue create ${Name}\\``",
- "variable98": "`<:NO:1169479454918180937> You didn't entered a **valid** TYPE`",
+ "variable98": "`<:no:833101993668771842> You didn't entered a **valid** TYPE`",
"variable99": "`Richtige Nutzung: \\`${prefix}savedqueue \\`\\nValid Types:\\n\\`create\\`, \\`addcurrenttrack\\`, \\`addcurrentqueue\\`, \\`removetrack\\`, \\`removedupes\\`, \\`showall\\`, \\`createsave\\`, \\`delete\\`, \\`showdetails\\`, \\`play\\`, \\`shuffle\\``",
"variable100": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
}
},
"voice": {
"voice": {
- "variable1": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable2": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** VoiceChannels seub!\"",
+ "variable1": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable2": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** VoiceChannels seub!\"",
"variable3": "\"✅Dein Channel wurde Gesperrt✅!!\"",
"variable4": "`Nun kann keiner mehr Beitreten!`",
- "variable5": "\"<:NO:1169479454918180937> Du musst in einem **temp.** SprachChannel, sein um diesen Befehl ausführen zu können!\"",
- "variable6": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable7": "\"<:NO:1169479454918180937> Du musst der Owner des **temp.** VoiceChannels sein!\"",
+ "variable5": "\"<:no:833101993668771842> Du musst in einem **temp.** SprachChannel, sein um diesen Befehl ausführen zu können!\"",
+ "variable6": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable7": "\"<:no:833101993668771842> Du musst der Owner des **temp.** VoiceChannels sein!\"",
"variable8": "\"✅Channel entsperrt✅!!\"",
"variable9": "`Nun kann jeder beitreten`",
- "variable10": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable11": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable12": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable13": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable10": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable11": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable12": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable13": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable14": "`Richtige Nutzung: \\`${prefix}kick @User\\``",
- "variable15": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable15": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable16": "`Richtige Nutzung: \\`${prefix}kick @User\\``",
- "variable17": "\"<:NO:1169479454918180937> Der gepingte Benutzser is nicht mit einem Channel verbunden\"",
- "variable18": "\"<:NO:1169479454918180937> Your pinged user, is not connected in your Channel\"",
+ "variable17": "\"<:no:833101993668771842> Der gepingte Benutzser is nicht mit einem Channel verbunden\"",
+ "variable18": "\"<:no:833101993668771842> Your pinged user, is not connected in your Channel\"",
"variable19": "`✅ Kicked ${member.user.tag} out of your Channel`",
- "variable20": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten\"",
+ "variable20": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten\"",
"variable21": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``",
- "variable22": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable23": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable24": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable25": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable22": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable23": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable24": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable25": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable26": "`Richtige Nutzung: \\`${prefix}invite @User [optional Message]\\``",
- "variable27": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable27": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable28": "`Richtige Nutzung: \\`${prefix}invite @User [optional Message]\\``",
"variable29": "`You got invited to join ${message.author.tag}'s Voice Channel`",
- "variable30": "`<:NO:1169479454918180937> Couldn't Dm \\`${member.user.tag}\\``",
+ "variable30": "`<:no:833101993668771842> Couldn't Dm \\`${member.user.tag}\\``",
"variable31": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``",
"variable32": "`✅ Invited ${member.user.tag} to your Channel`",
- "variable33": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten\"",
+ "variable33": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten\"",
"variable34": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``",
- "variable35": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable36": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable37": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable38": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable35": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable36": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable37": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable38": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable39": "`Richtige Nutzung: \\`${prefix}ban @User\\``",
- "variable40": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable40": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable41": "`Richtige Nutzung: \\`${prefix}ban @User\\``",
"variable42": "`✅ Disconnected ${member.user.tag} out of your Channel`",
- "variable43": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten\"",
+ "variable43": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten\"",
"variable44": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``",
"variable45": "`✅ Banned ${member.user.tag} out from your Channel!`",
- "variable46": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable47": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable48": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable49": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable46": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable47": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable48": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable49": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable50": "`Richtige Nutzung: \\`${prefix}unban @User\\``",
- "variable51": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable51": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable52": "`Richtige Nutzung: \\`${prefix}unban @User\\``",
"variable53": "`✅ Unbanned ${member.user.tag} from your Channel!`",
"variable54": "\"He can now join your Channel again!\"",
- "variable55": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable56": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable57": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable58": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable55": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable56": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable57": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable58": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable59": "`Richtige Nutzung: \\`${prefix}trust @User\\``",
- "variable60": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable60": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable61": "`Richtige Nutzung: \\`${prefix}trust @User\\``",
"variable62": "`✅ Trusted ${member.user.tag} to your Channel!`",
"variable63": "\"He can now join your Channel!\"",
- "variable64": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable65": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable66": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable67": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable64": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable65": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable66": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable67": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable68": "`Richtige Nutzung: \\`${prefix}untrust @User\\``",
- "variable69": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable69": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable70": "`Richtige Nutzung: \\`${prefix}untrust @User\\``",
"variable71": "`✅ Untrusted ${member.user.tag} from your Channel!`",
"variable72": "\"He can now no longer join your Channel!\"",
- "variable73": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable74": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable75": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable76": "\"<:NO:1169479454918180937> You have to include the limit you want to set to\"",
- "variable77": "\"<:NO:1169479454918180937> You have to include the limit you want to set to | It MUST be a **Numer**\"",
- "variable78": "\"<:NO:1169479454918180937> Your included Number is not in the valid Range (`0` - `99`)\"",
+ "variable73": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable74": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable75": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable76": "\"<:no:833101993668771842> You have to include the limit you want to set to\"",
+ "variable77": "\"<:no:833101993668771842> You have to include the limit you want to set to | It MUST be a **Numer**\"",
+ "variable78": "\"<:no:833101993668771842> Your included Number is not in the valid Range (`0` - `99`)\"",
"variable79": "`✅ Set User-limit to \\`${vc.userLimit}\\``",
- "variable80": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable81": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable82": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable83": "\"<:NO:1169479454918180937> You have to include the limit you want to set to\"",
- "variable84": "\"<:NO:1169479454918180937> You have to include the limit you want to set to | It MUST be a **Numer**\"",
- "variable85": "`<:NO:1169479454918180937> Your included Number is not in the valid Range (\\`8000\\` - \\`${maxbitrate}\\`)`",
+ "variable80": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable81": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable82": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable83": "\"<:no:833101993668771842> You have to include the limit you want to set to\"",
+ "variable84": "\"<:no:833101993668771842> You have to include the limit you want to set to | It MUST be a **Numer**\"",
+ "variable85": "`<:no:833101993668771842> Your included Number is not in the valid Range (\\`8000\\` - \\`${maxbitrate}\\`)`",
"variable86": "`✅ Set the Bitrate to \\`${vc.bitrate}\\``",
- "variable87": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
- "variable88": "\"<:NO:1169479454918180937> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
- "variable89": "\"<:NO:1169479454918180937> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
- "variable90": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable87": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable88": "\"<:no:833101993668771842> Du musst in einem Sprach Channel sein um diesen Befehl ausführen zu können!\"",
+ "variable89": "\"<:no:833101993668771842> Du musst der Besitzer des **temp.** Sprach Kanals sein !\"",
+ "variable90": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable91": "`Richtige Nutzung: \\`${prefix}promote @User\\``",
- "variable92": "\"<:NO:1169479454918180937> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
+ "variable92": "\"<:no:833101993668771842> Bitte erwähne einen Benutzer mit einem @Ping oder seiner ID!\"",
"variable93": "`Richtige Nutzung: \\`${prefix}promote @User\\``",
- "variable94": "\"<:NO:1169479454918180937> Der gepingte Benutzser is nicht mit einem Channel verbunden\"",
- "variable95": "\"<:NO:1169479454918180937> Your pinged user, is not connected in your Channel\"",
+ "variable94": "\"<:no:833101993668771842> Der gepingte Benutzser is nicht mit einem Channel verbunden\"",
+ "variable95": "\"<:no:833101993668771842> Your pinged user, is not connected in your Channel\"",
"variable96": "`✅ Promoted ${member.user.tag} to the new Owner of your Channel\\nRemoved your permissions!`",
- "variable97": "\"<:NO:1169479454918180937> Ein Fehler ist aufgetreten\"",
+ "variable97": "\"<:no:833101993668771842> Ein Fehler ist aufgetreten\"",
"variable98": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``",
- "variable99": "\"<:NO:1169479454918180937> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
+ "variable99": "\"<:no:833101993668771842> Du musst in einem **Temp.** Sprach Channel für diesen Befehl sein!\"",
"variable100": "\"Please add a VALID TYPE\"",
"variable101": "`Richtige Nutzung: \\`${prefix}voice [Options]\\`\\nValid CMD_TYPES: \\`lock\\`,\\`invite\\`,\\`add\\`,\\`kick\\`,\\`unlock\\`,\\`ban\\`,\\`unban\\`,\\`trust\\`,\\`untrust\\`,\\`limit\\`,\\`bitrate\\`,\\`promote\\``",
"variable102": "`\\`\\`\\`${e.stack}\\`\\`\\``"
@@ -1151,14 +1151,14 @@
},
"minigames": {
"betrayal-io": {
- "variable1": "\"<:NO:1169479454918180937> Please join a Voice Channel first\"",
+ "variable1": "\"<:no:833101993668771842> Please join a Voice Channel first\"",
"variable2": "`I need \\`CREATE_INSTANT_INVITE\\` permission!`",
"variable3": "`Cannot start the youtube together, please retry`",
"variable4": "`Click on the Link to start the GAME:\\n> https://discord.com/invite/${invite.code}`",
"variable5": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"chess": {
- "variable1": "\"<:NO:1169479454918180937> Please join a Voice Channel first\"",
+ "variable1": "\"<:no:833101993668771842> Please join a Voice Channel first\"",
"variable2": "`I need \\`CREATE_INSTANT_INVITE\\` permission!`",
"variable3": "`Cannot start the chess, please retry`",
"variable4": "`Click on the Link to start the GAME:\\n> https://discord.com/invite/${invite.code}`",
@@ -1171,10 +1171,10 @@
"variable4": "'Connect-4'"
},
"fight": {
- "variable1": "`<:NO:1169479454918180937> **Please mention who you want to fight**`"
+ "variable1": "`<:no:833101993668771842> **Please mention who you want to fight**`"
},
"fishington-io": {
- "variable1": "\"<:NO:1169479454918180937> Please join a Voice Channel first\"",
+ "variable1": "\"<:no:833101993668771842> Please join a Voice Channel first\"",
"variable2": "`I need \\`CREATE_INSTANT_INVITE\\` permission!`",
"variable3": "`Cannot start the youtube together, please retry`",
"variable4": "`Click on the Link to start the GAME:\\n> https://discord.com/invite/${invite.code}`",
@@ -1188,18 +1188,18 @@
"variable3": "\"```\" + this.word + \"```\""
},
"poker-night": {
- "variable1": "\"<:NO:1169479454918180937> Please join a Voice Channel first\"",
+ "variable1": "\"<:no:833101993668771842> Please join a Voice Channel first\"",
"variable2": "`I need \\`CREATE_INSTANT_INVITE\\` permission!`",
"variable3": "`Cannot start the youtube together, please retry`",
"variable4": "`Click on the Link to start the GAME:\\n> https://discord.com/invite/${invite.code}`",
"variable5": "`\\`\\`\\` ${e.message ? e.message : e.stack ? String(e.stack).substr(0, 2000) : String(e).substr(0, 2000)}\\`\\`\\``"
},
"rockpaperscissors": {
- "variable1": "`<:NO:1169479454918180937> **Please mention who you want to challenge at Rock Papaer Scissors.**`"
+ "variable1": "`<:no:833101993668771842> **Please mention who you want to challenge at Rock Papaer Scissors.**`"
},
"sudo": {
- "variable1": "`<:NO:1169479454918180937> **Please mention who you want to sudo.**`",
- "variable2": "`<:NO:1169479454918180937> **Please add Text**`"
+ "variable1": "`<:no:833101993668771842> **Please mention who you want to sudo.**`",
+ "variable2": "`<:no:833101993668771842> **Please add Text**`"
},
"tictactoe": {
"variable1": "`You're currently in a duel`",
@@ -1300,15 +1300,15 @@
"variable96": "`Tie!`",
"variable97": "`🎮 **${authorName}** VS ${this.opponent.username} 🎮`",
"variable98": "`🎮 ${authorName} VS **${this.opponent.username}** 🎮`",
- "variable99": "`<:NO:1169479454918180937> **Please mention who you want to challenge at tictactoe.**`"
+ "variable99": "`<:no:833101993668771842> **Please mention who you want to challenge at tictactoe.**`"
},
"uno": {
- "variable1": "\"<:NO:1169479454918180937> Please enter a valid type\"",
- "variable2": "\"<:NO:1169479454918180937> Please enter a valid type\"",
+ "variable1": "\"<:no:833101993668771842> Please enter a valid type\"",
+ "variable2": "\"<:no:833101993668771842> Please enter a valid type\"",
"variable3": "`**Valid Types:**\\n\\`join\\`, \\`creategame\\`, \\`leave\\`, \\`startgame\\`, \\`endgame\\`, \\`play\\`, \\`UNO\\`, \\`draw\\`, \\`cards\\`, \\`table\\`, \\`viewwinners\\`, \\`settings\\`, \\`viewsettings\\``"
},
"youtubetogether": {
- "variable1": "\"<:NO:1169479454918180937> Please join a Voice Channel first\"",
+ "variable1": "\"<:no:833101993668771842> Please join a Voice Channel first\"",
"variable2": "`I need \\`CREATE_INSTANT_INVITE\\` permission!`",
"variable3": "`Cannot start the youtube together, please retry`",
"variable4": "`Click on the Link to start the GAME:\\n> https://discord.com/invite/${invite.code}`",
@@ -1317,7 +1317,7 @@
},
"schoolcommands": {
"calc": {
- "variable1": "`<:NO:1169479454918180937> You must provide a equation to be solved on the calculator`",
+ "variable1": "`<:no:833101993668771842> You must provide a equation to be solved on the calculator`",
"variable2": "` Richtige Nutzung: \\`${prefix}calc \\`\\n\\nZum Beispiel: \\`${prefix}calc 10 + 4*5\\`\\n\\nHey try out: \\`${prefix}calculator\\``",
"variable3": "`Invalid math equation: ${err}`",
"variable4": "`Try out: \\`${prefix}calculator\\``",
@@ -1335,14 +1335,14 @@
"variable2": "`\\`\\`\\`${pi.substr(0, 2040)}\\`\\`\\``"
},
"remind": {
- "variable1": "`<:NO:1169479454918180937> please add a TIME!`",
+ "variable1": "`<:no:833101993668771842> please add a TIME!`",
"variable2": "` Richtige Nutzung: \\`${prefix}remind