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.
30 lines
1.3 KiB
30 lines
1.3 KiB
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . |
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· |
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ |
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ |
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ |
|
// Magicbane Emulator Project © 2013 - 2022 |
|
// www.magicbane.com |
|
|
|
package discord.handlers; |
|
|
|
import discord.MagicBot; |
|
import net.dv8tion.jda.api.events.message.MessageReceivedEvent; |
|
|
|
public class RulesRequestHandler { |
|
|
|
public static void handleRequest(MessageReceivedEvent event) { |
|
|
|
String outString; |
|
|
|
// Add greeting |
|
|
|
outString = "-No hacking.\n"; |
|
outString += "-No cheating. If you cheat, we will delete.\n"; |
|
outString += "-Players limited to 4 concurrent accounts.\n"; |
|
outString += "-Share accounts at own risk.\n"; |
|
outString += "-No refunds"; |
|
|
|
MagicBot.sendResponse(event, outString); |
|
} |
|
}
|
|
|