blob: ec2360661b85c8c0a24b22f627a007d51eac4f5d (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
package me.Danker.commands;
import java.text.NumberFormat;
import com.google.gson.JsonArray;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import me.Danker.handlers.APIHandler;
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 SlayerCommand extends CommandBase {
@Override
public String getCommandName() {
return "slayer";
}
@Override
public String getCommandUsage(ICommandSender arg0) {
return getCommandName() + " <name>";
}
@Override
public int getRequiredPermissionLevel() {
return 0;
}
@Override
public void processCommand(ICommandSender arg0, String[] arg1) throws CommandException {
// MULTI THREAD DRIFTING
new Thread(() -> {
APIHandler ah = new APIHandler();
ConfigHandler cf = new ConfigHandler();
EntityPlayer player = (EntityPlayer) arg0;
// Check key
String key = cf.getString("api", "APIKey");
if (key.equals("")) {
player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "API key not set. Use /setkey."));
}
// Get UUID for Hypixel API requests
String username;
String uuid;
if (arg1.length == 0) {
username = player.getName();
uuid = player.getUniqueID().toString().replaceAll("[\\-]", "");
player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Checking slayer of " + username));
} else {
username = arg1[0];
String uuidURL = "https://api.mojang.com/users/profiles/minecraft/" + username;
player.addChatMessage(new ChatComponentText(EnumChatFormatting.GREEN + "Checking slayer of " + username));
JsonObject uuidResponse = ah.getResponse(uuidURL, player);
uuid = uuidResponse.get("id").getAsString();
}
// Get profiles
System.out.println("Fetching profiles...");
String profilesURL = "https://api.hypixel.net/skyblock/profiles?uuid=" + uuid + "&key=" + key;
JsonObject profilesResponse = ah.getResponse(profilesURL, player);
if (!profilesResponse.get("success").getAsBoolean()) {
String reason = profilesResponse.get("cause").getAsString();
player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Failed with reason: " + reason));
return;
}
if (profilesResponse.get("profiles").isJsonNull()) {
player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "This player doesn't appear to have played SkyBlock."));
return;
}
// Loop through profiles to find latest
System.out.println("Looping through profiles...");
String latestProfile = "";
int latestSave = 0;
JsonArray profilesArray = profilesResponse.get("profiles").getAsJsonArray();
for (JsonElement profile : profilesArray) {
JsonObject profileJSON = profile.getAsJsonObject();
int profileLastSave = profileJSON.get("members").getAsJsonObject().get(uuid).getAsJsonObject().get("last_save").getAsInt();
if (profileLastSave > latestSave) {
latestProfile = profileJSON.get("profile_id").getAsString();
latestSave = profileLastSave;
}
}
// Find stats of latest profile
System.out.println("Fetching profile...");
String profileURL = "https://api.hypixel.net/skyblock/profile?profile=" + latestProfile + "&key=" + key;
JsonObject profileResponse = ah.getResponse(profileURL, player);
if (!profileResponse.get("success").getAsBoolean()) {
String reason = profilesResponse.get("cause").getAsString();
player.addChatMessage(new ChatComponentText(EnumChatFormatting.RED + "Failed with reason: " + reason));
return;
}
System.out.println("Fetching slayer stats...");
JsonObject slayersObject = profileResponse.get("profile").getAsJsonObject().get("members").getAsJsonObject().get(uuid).getAsJsonObject().get("slayer_bosses").getAsJsonObject();
// Zombie
int zombieXP = 0;
if (slayersObject.get("zombie").getAsJsonObject().has("xp")) {
zombieXP = slayersObject.get("zombie").getAsJsonObject().get("xp").getAsInt();
}
// Spider
int spiderXP = 0;
if (slayersObject.get("spider").getAsJsonObject().has("xp")) {
spiderXP = slayersObject.get("spider").getAsJsonObject().get("xp").getAsInt();
}
// Wolf
int wolfXP = 0;
if (slayersObject.get("wolf").getAsJsonObject().has("xp")) {
wolfXP = slayersObject.get("wolf").getAsJsonObject().get("xp").getAsInt();
}
player.addChatMessage(new ChatComponentText(EnumChatFormatting.AQUA + username + "'s Total XP: " + EnumChatFormatting.GOLD + EnumChatFormatting.BOLD + NumberFormat.getIntegerInstance().format(zombieXP + spiderXP + wolfXP) + "\n" +
EnumChatFormatting.AQUA + " Zombie XP: " + EnumChatFormatting.BLUE + EnumChatFormatting.BOLD + NumberFormat.getIntegerInstance().format(zombieXP) + "\n" +
EnumChatFormatting.AQUA + " Spider XP: " + EnumChatFormatting.BLUE + EnumChatFormatting.BOLD + NumberFormat.getIntegerInstance().format(spiderXP) + "\n" +
EnumChatFormatting.AQUA + " Wolf XP: " + EnumChatFormatting.BLUE + EnumChatFormatting.BOLD + NumberFormat.getIntegerInstance().format(wolfXP)));
}).start();
}
}
|