You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.9 KiB
57 lines
1.9 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
package discord.handlers;
|
||
|
|
||
|
import discord.MagicBot;
|
||
|
import discord.RobotSpeak;
|
||
|
import net.dv8tion.jda.api.events.message.MessageReceivedEvent;
|
||
|
import org.pmw.tinylog.Logger;
|
||
|
|
||
|
import static discord.ChatChannel.FORTOFIX;
|
||
|
|
||
|
public class ForToFixChannelHandler {
|
||
|
|
||
|
public static void handleRequest(MessageReceivedEvent event, String[] args) {
|
||
|
|
||
|
String chatText;
|
||
|
String outString;
|
||
|
|
||
|
// Early exit if database unavailable or is not an admin
|
||
|
|
||
|
if (MagicBot.isAdminEvent(event) == false)
|
||
|
return;
|
||
|
|
||
|
// Nothing to send?
|
||
|
|
||
|
if (args.length == 0)
|
||
|
return;
|
||
|
|
||
|
// Convert argument array into string;
|
||
|
|
||
|
chatText = String.join(" ", args);
|
||
|
|
||
|
// Build String
|
||
|
|
||
|
if (chatText.startsWith("-r "))
|
||
|
outString =
|
||
|
"```\n" + "Hello Players \n\n" +
|
||
|
chatText.substring(3) + "\n\n" +
|
||
|
RobotSpeak.getRobotSpeak() + "\n```";
|
||
|
else outString = chatText;
|
||
|
|
||
|
// Write string to changelog channel
|
||
|
|
||
|
if (FORTOFIX.textChannel.canTalk())
|
||
|
FORTOFIX.textChannel.sendMessage(outString).queue();
|
||
|
|
||
|
Logger.info(event.getAuthor().getName() + "fortofix: " + chatText);
|
||
|
|
||
|
}
|
||
|
}
|