blob: 998aeadbcbe2ca16d6602859a504e2e662e1e455 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
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;
import net.minecraft.util.EnumChatFormatting;
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(EnumChatFormatting.RED + "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(EnumChatFormatting.RED + "Usage: /display <zombie/spider/wolf/off>"));
return;
}
player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Display set to " + EnumChatFormatting.DARK_GREEN + display + EnumChatFormatting.GREEN + "."));
cf.writeStringConfig("misc", "display", display);
}
}
|