aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/commands/DisplayCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'me/Danker/commands/DisplayCommand.java')
-rw-r--r--me/Danker/commands/DisplayCommand.java55
1 files changed, 55 insertions, 0 deletions
diff --git a/me/Danker/commands/DisplayCommand.java b/me/Danker/commands/DisplayCommand.java
new file mode 100644
index 0000000..534ce16
--- /dev/null
+++ b/me/Danker/commands/DisplayCommand.java
@@ -0,0 +1,55 @@
+package me.Danker.commands;
+
+import me.Danker.handlers.ConfigHandler;
+import net.minecraft.command.CommandBase;
+import net.minecraft.command.CommandException;
+import net.minecraft.command.ICommandSender;
+import net.minecraft.entity.player.EntityPlayer;
+import net.minecraft.util.ChatComponentText;
+
+public class DisplayCommand extends CommandBase {
+ public static String display;
+
+ @Override
+ public String getCommandName() {
+ return "display";
+ }
+
+ @Override
+ public String getCommandUsage(ICommandSender arg0) {
+ return getCommandName() + " [zombie/spider/wolf/off]";
+ }
+
+ @Override
+ public int getRequiredPermissionLevel() {
+ return 0;
+ }
+
+ @Override
+ public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
+ final EntityPlayer player = (EntityPlayer) arg0;
+
+ if (arg1.length == 0) {
+ player.addChatMessage(new ChatComponentText("Usage: /display [zombie/spider/wolf/off]"));
+ return;
+ }
+
+ final ConfigHandler cf = new ConfigHandler();
+
+ if (arg1[0].equalsIgnoreCase("wolf")) {
+ display = "wolf";
+ } else if (arg1[0].equalsIgnoreCase("spider")) {
+ display = "spider";
+ } else if (arg1[0].equalsIgnoreCase("zombie")) {
+ display = "zombie";
+ } else if (arg1[0].equalsIgnoreCase("off")) {
+ display = "off";
+ } else {
+ player.addChatMessage(new ChatComponentText("Usage: /display [zombie/spider/wolf/off]"));
+ return;
+ }
+ player.addChatMessage(new ChatComponentText("Display set to " + display + "."));
+ cf.writeStringConfig("misc", "display", display);
+ }
+
+}