aboutsummaryrefslogtreecommitdiff
path: root/me/Danker/commands/SetkeyCommand.java
diff options
context:
space:
mode:
authorbowser0000 <bowser0000@gmail.com>2020-07-11 00:37:32 -0400
committerGitHub <noreply@github.com>2020-07-11 00:37:32 -0400
commit9ef7d0c75496281946f6139e98095d01f0164ba3 (patch)
treebb23c544960f6baba2b47c25b006b1dc95aaf427 /me/Danker/commands/SetkeyCommand.java
parent734f08a5d50ce2c8d7ecc5b946316b269d1d57f2 (diff)
downloadSkyblockMod-9ef7d0c75496281946f6139e98095d01f0164ba3.tar.gz
SkyblockMod-9ef7d0c75496281946f6139e98095d01f0164ba3.tar.bz2
SkyblockMod-9ef7d0c75496281946f6139e98095d01f0164ba3.zip
Add tracker and display for all slayer drops
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.
Diffstat (limited to 'me/Danker/commands/SetkeyCommand.java')
-rw-r--r--me/Danker/commands/SetkeyCommand.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/me/Danker/commands/SetkeyCommand.java b/me/Danker/commands/SetkeyCommand.java
new file mode 100644
index 0000000..bfbca80
--- /dev/null
+++ b/me/Danker/commands/SetkeyCommand.java
@@ -0,0 +1,42 @@
+package me.Danker.commands;
+
+import me.Danker.handlers.ConfigHandler;
+import net.minecraft.command.CommandBase;
+import net.minecraft.command.CommandException;
+import net.minecraft.command.ICommand;
+import net.minecraft.command.ICommandSender;
+import net.minecraft.entity.player.EntityPlayer;
+import net.minecraft.util.ChatComponentText;
+
+public class SetkeyCommand extends CommandBase implements ICommand {
+
+ @Override
+ public String getCommandName() {
+ return "setkey";
+ }
+
+ @Override
+ public String getCommandUsage(ICommandSender arg0) {
+ return getCommandName() + " [key]";
+ }
+
+ @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: /setkey [key]"));
+ return;
+ }
+
+ final ConfigHandler cf = new ConfigHandler();
+ cf.writeStringConfig("api", "APIKey", arg1[0]);
+ player.addChatMessage(new ChatComponentText("Set API key to " + arg1[0]));
+ }
+
+}