You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 23, 2026. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,8 @@ QOL changes that enhances your Hypixel Skyblock experience. Created to add featu
11
11
- /setkey [key] - Sets API key.
12
12
- /getkey - Returns key set with /setkey.
13
13
- /loot [zombie/spider/wolf] - Returns loot received from the slayer quest.
14
-
- /display [zombie/spider/wolf/off] - Text display for slayer tracker
14
+
- /display [zombie/spider/wolf/off] - Text display for slayer tracker.
15
+
- /move [coords/display][x][y] - Moves text display to specified X and Y coordinates.
15
16
16
17
### Notes
17
18
- Slayer tracker for token drops and 20% chance drops uses a 12x12x12 bounding box centered on the player to detect the drops. If you are out of the range of the item drop, it will not count on the tracker.
player.addChatMessage(newChatComponentText("API key not set. Set your API key using /setkey."));
35
+
player.addChatMessage(newChatComponentText(EnumChatFormatting.RED + "API key not set. Set your API key using /setkey."));
35
36
} else {
36
-
player.addChatMessage(newChatComponentText("Your set API key is " + cf.getString("api", "APIKey")));
37
+
player.addChatMessage(newChatComponentText(EnumChatFormatting.GREEN + "Your set API key is " + EnumChatFormatting.DARK_GREEN + cf.getString("api", "APIKey")));
player.addChatMessage(newChatComponentText(EnumChatFormatting.GREEN + "Coords have been moved to " + EnumChatFormatting.DARK_GREEN + arg1[1] + ", " + arg1[2]));
player.addChatMessage(newChatComponentText(EnumChatFormatting.GREEN + "Tracker display has been moved to " + EnumChatFormatting.DARK_GREEN + arg1[1] + ", " + arg1[2]));
player.addChatMessage(newChatComponentText("Guild party notifications has been set to " + gpartyToggled + "."));
44
+
player.addChatMessage(newChatComponentText(EnumChatFormatting.GREEN + "Guild party notifications has been set to " + EnumChatFormatting.DARK_GREEN + gpartyToggled + EnumChatFormatting.GREEN + "."));
player.addChatMessage(newChatComponentText("Coord/Angle display has been set to " + coordsToggled + "."));
48
+
player.addChatMessage(newChatComponentText(EnumChatFormatting.GREEN + "Coord/Angle display has been set to " + EnumChatFormatting.DARK_GREEN + coordsToggled + EnumChatFormatting.GREEN + "."));
57
49
} elseif (arg1[0].equalsIgnoreCase("list")) {
58
-
player.addChatMessage(newChatComponentText("Guild party notifications: " + gpartyToggled));
0 commit comments