2023-07-03 14:25:25 +05:00
|
|
|
const { Message, BaseInteraction, User } = require("discord.js");
|
|
|
|
|
|
|
|
User.prototype.getUsername = function () {
|
|
|
|
return this.discriminator === "0" ? this.username : this.tag;
|
|
|
|
};
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-04 23:06:51 +05:00
|
|
|
BaseInteraction.prototype.translate = function (key, args) {
|
|
|
|
const language = this.client.translations.get(this.guild ? this.guild.data.language : "en-US");
|
|
|
|
if (!language) throw "Interaction: Invalid language set in data.";
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-04 23:06:51 +05:00
|
|
|
return language(key, args);
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
BaseInteraction.prototype.replyT = async function (key, args, options = {}) {
|
2023-11-04 16:56:10 +05:00
|
|
|
const translated = this.translate(key, args, this.guild.data.language ?? "en-US");
|
2023-10-12 19:44:26 +05:00
|
|
|
const string = options.prefixEmoji ? `${this.client.customEmojis[options.prefixEmoji]} | ${translated}` : translated;
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
if (options.edit) return await this.editReply({ content: string, ephemeral: options.ephemeral || false });
|
|
|
|
else return await this.reply({ content: string, ephemeral: options.ephemeral || false });
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
BaseInteraction.prototype.success = async function (key, args, options = {}) {
|
2023-04-20 11:47:47 +05:00
|
|
|
options.prefixEmoji = "success";
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
return await this.replyT(key, args, options);
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
BaseInteraction.prototype.error = async function (key, args, options = {}) {
|
2023-04-20 11:47:47 +05:00
|
|
|
options.prefixEmoji = "error";
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
return await this.replyT(key, args, options);
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-04 23:06:51 +05:00
|
|
|
Message.prototype.translate = function (key, args) {
|
|
|
|
const language = this.client.translations.get(this.guild ? this.guild.data.language : "en-US");
|
|
|
|
if (!language) throw "Message: Invalid language set in data.";
|
2022-01-04 02:18:28 +05:00
|
|
|
|
2023-11-04 23:06:51 +05:00
|
|
|
return language(key, args);
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
Message.prototype.replyT = async function (key, args, options = {}) {
|
2023-11-04 16:56:10 +05:00
|
|
|
const translated = this.translate(key, args, this.guild.data.language ?? "en-US");
|
2023-10-12 19:44:26 +05:00
|
|
|
const string = options.prefixEmoji ? `${this.client.customEmojis[options.prefixEmoji]} | ${translated}` : translated;
|
2022-07-26 17:20:10 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
if (options.edit) return await this.edit({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
|
|
|
else return await this.reply({ content: string, allowedMentions: { repliedUser: options.mention ? true : false } });
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
Message.prototype.success = async function (key, args, options = {}) {
|
2023-04-20 11:47:47 +05:00
|
|
|
options.prefixEmoji = "success";
|
2022-07-26 17:20:10 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
return await this.replyT(key, args, options);
|
2022-01-04 02:18:28 +05:00
|
|
|
};
|
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
Message.prototype.error = async function (key, args, options = {}) {
|
2023-04-20 11:47:47 +05:00
|
|
|
options.prefixEmoji = "error";
|
2022-07-26 17:20:10 +05:00
|
|
|
|
2023-11-05 16:03:23 +05:00
|
|
|
return await this.replyT(key, args, options);
|
2023-07-05 00:58:06 +05:00
|
|
|
};
|