aboutsummaryrefslogtreecommitdiff
path: root/Danker/commands/DisplayCommand.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-11 01:13:53 -0400
committerbowser0000 <bowser0000@gmail.com>2020-07-11 01:13:53 -0400
commit99e549b48623ea7968503377adbbf6ca3eccadca (patch)
treeb227e2fc016b656fd22a987863055cb7ade2c194 /Danker/commands/DisplayCommand.java
parent0d177505ddb0b0d6410d768b32320655e8b24ccf (diff)
downloadSkyblockMod-99e549b48623ea7968503377adbbf6ca3eccadca.tar.gz
SkyblockMod-99e549b48623ea7968503377adbbf6ca3eccadca.tar.bz2
SkyblockMod-99e549b48623ea7968503377adbbf6ca3eccadca.zip
Add tracker and display for all slayer dropsv1.4
Added token and 20% chance slayer drops. Also added display for the slayer tracker with /display. This was more difficult than I thought. I first tried to use the PlayerEvent.ItemPickupEvent event, but it was server side only. Then I tried to use the ClientChatReceivedEvent event, but the boss slain message was sent to late. Ultimately, I decided on the PlaySoundEvent event, which waits for the noise for when a slayer boss dies. I also have no idea what I'm doing with these commits, don't look at history.
Diffstat (limited to 'Danker/commands/DisplayCommand.java')
-rw-r--r--Danker/commands/DisplayCommand.java55
1 files changed, 0 insertions, 55 deletions
diff --git a/Danker/commands/DisplayCommand.java b/Danker/commands/DisplayCommand.java
deleted file mode 100644
index 534ce16..0000000
--- a/Danker/commands/DisplayCommand.java
+++ /dev/null
@@ -1,55 +0,0 @@
-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);
- }
-
-}