aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/commands/MoveCommand.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-13 17:42:57 -0400
committerbowser0000 <bowser0000@gmail.com>2020-07-13 17:42:57 -0400
commit8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2 (patch)
tree4ae7cd5ff26139a3fb0f390cbe359fa210337f7b /me/Danker/commands/MoveCommand.java
parentec0334bfb60226e5bd0fb987babbe16384bd5ae0 (diff)
downloadSkyblockMod-8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2.tar.gz
SkyblockMod-8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2.tar.bz2
SkyblockMod-8ce07f5b4b4c7d8cef95dd613885e5219ce6a6a2.zip
/move command, colours and slayer fixv1.4.1
Added /move command to move text displays. Add colour to messages and error messages in chat. Fixed slayer drops not being tracked.
Diffstat (limited to 'me/Danker/commands/MoveCommand.java')
-rw-r--r--me/Danker/commands/MoveCommand.java58
1 files changed, 58 insertions, 0 deletions
diff --git a/me/Danker/commands/MoveCommand.java b/me/Danker/commands/MoveCommand.java
new file mode 100644
index 0000000..d402680
--- /dev/null
+++ b/me/Danker/commands/MoveCommand.java
@@ -0,0 +1,58 @@
+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 MoveCommand extends CommandBase {
+
+ public static int[] coordsXY = {0, 0};
+ public static int[] displayXY = {0, 0};
+
+ @Override
+ public String getCommandName() {
+ return "move";
+ }
+
+ @Override
+ public String getCommandUsage(ICommandSender arg0) {
+ return getCommandName() + " [coords/display] [x] [y]";
+ }
+
+ @Override
+ public int getRequiredPermissionLevel() {
+ return 0;
+ }
+
+ @Override
+ public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
+ final EntityPlayer player = (EntityPlayer)arg0;
+ final ConfigHandler cf = new ConfigHandler();
+
+ if (arg1.length < 2) {
+ player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Usage: /move [coords/display] [x] [y]"));
+ return;
+ }
+
+ if (arg1[0].equalsIgnoreCase("coords")) {
+ coordsXY[0] = Integer.parseInt(arg1[1]);
+ coordsXY[1] = Integer.parseInt(arg1[2]);
+ cf.writeIntConfig("locations", "coordsX", coordsXY[0]);
+ cf.writeIntConfig("locations", "coordsY", coordsXY[1]);
+ player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Coords have been moved to " + EnumChatFormatting.DARK_GREEN + arg1[1] + ", " + arg1[2]));
+ } else if (arg1[0].equalsIgnoreCase("display")) {
+ displayXY[0] = Integer.parseInt(arg1[1]);
+ displayXY[1] = Integer.parseInt(arg1[2]);
+ cf.writeIntConfig("locations", "displayX", displayXY[0]);
+ cf.writeIntConfig("locations", "displayY", displayXY[1]);
+ player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Tracker display has been moved to " + EnumChatFormatting.DARK_GREEN + arg1[1] + ", " + arg1[2]));
+ } else {
+ player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Usage: /move [coords/display] [x] [y]"));
+ }
+ }
+
+}