blob: c78c3853f463770284ff2347b433935b4b3a8501 (
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
|
package me.Danker.features;
import me.Danker.commands.ToggleCommand;
import me.Danker.handlers.ScoreboardHandler;
import me.Danker.utils.Utils;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.StringUtils;
import net.minecraft.world.World;
import net.minecraftforge.client.event.ClientChatReceivedEvent;
import net.minecraftforge.client.event.RenderWorldLastEvent;
import net.minecraftforge.event.world.WorldEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import java.util.List;
/**
* @author RabbitType99
*/
public class ArachneESP {
static Entity arachne = null;
static boolean arachneActive = true;
public static int ARACHANE_COLOUR;
@SubscribeEvent
public void onWorldChange(WorldEvent.Load event) {
arachne = null;
}
public boolean inSpidersDen(List<String> scoreboard) {
for (String s : scoreboard) {
if (ScoreboardHandler.cleanSB(s).contains("Spiders Den")) {
return true;
}
}
return false;
}
@SubscribeEvent
public void onChat(ClientChatReceivedEvent event) {
if (!Utils.inSkyblock) return;
if (!inSpidersDen(ScoreboardHandler.getSidebarLines())) return;
String message = StringUtils.stripControlCodes(event.message.getUnformattedText());
if (message.contains("Something is awakening")){
arachneActive = true;
World world = Minecraft.getMinecraft().theWorld;
List<Entity> entities = world.getLoadedEntityList();
for (Entity e : entities) {
if (e.getName().contains("Arachne") && !e.getName().contains("Arachne's Brood")) {
arachne = e;
}
}
}
if (message.contains("ARACHNE DOWN!")) {
arachneActive = false;
arachne = null;
}
}
@SubscribeEvent
public void onWorldRender(RenderWorldLastEvent event) {
if (!Utils.inSkyblock) return;
if (arachne != null) {
if (arachneActive && ToggleCommand.highlightArachne) {
AxisAlignedBB aabb = new AxisAlignedBB(arachne.posX - 0.75, arachne.posY - 1, arachne.posZ - 0.75, arachne.posX + 0.75, arachne.posY, arachne.posZ + 0.75);
Utils.draw3DBox(aabb, ARACHANE_COLOUR, event.partialTicks);
}
}
}
}
|