2021-08-19 14:19:14 +00:00
|
|
|
import Command from "../../classes/command.js";
|
2021-07-31 05:04:38 +00:00
|
|
|
|
|
|
|
class BroadcastCommand extends Command {
|
|
|
|
// yet another very hacky command
|
|
|
|
run() {
|
|
|
|
return new Promise((resolve) => {
|
2021-11-03 00:43:37 +00:00
|
|
|
const owners = process.env.OWNER.split(",");
|
2022-03-31 05:42:03 +00:00
|
|
|
if (!owners.includes(this.author.id)) return "Only the bot owner can broadcast messages!";
|
2022-03-31 19:53:22 +00:00
|
|
|
const message = this.type === "classic" ? this.args.join(" ") : this.options.message;
|
|
|
|
if (message && message.trim()) {
|
|
|
|
this.ipc.broadcast("playbroadcast", message);
|
2021-07-31 05:04:38 +00:00
|
|
|
this.ipc.register("broadcastSuccess", () => {
|
|
|
|
this.ipc.unregister("broadcastSuccess");
|
|
|
|
resolve("Successfully broadcasted message.");
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
this.ipc.broadcast("broadcastend");
|
|
|
|
this.ipc.register("broadcastEnd", () => {
|
|
|
|
this.ipc.unregister("broadcastEnd");
|
|
|
|
resolve("Successfully ended broadcast.");
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-31 19:53:22 +00:00
|
|
|
static flags = [{
|
|
|
|
name: "message",
|
|
|
|
type: 3,
|
|
|
|
description: "The message to broadcast"
|
|
|
|
}];
|
|
|
|
|
2021-07-31 05:04:38 +00:00
|
|
|
static description = "Broadcasts a playing message until the command is run again or the bot restarts";
|
|
|
|
}
|
|
|
|
|
2021-08-19 14:19:14 +00:00
|
|
|
export default BroadcastCommand;
|