blob: 8fb2dfcf86b3e2c3034fc2cba5a2c64280d2088b (
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
|
package rosegoldaddons.features;
import net.minecraft.client.Minecraft;
import net.minecraft.entity.Entity;
import net.minecraft.entity.monster.EntityCreeper;
import net.minecraft.entity.monster.EntityEnderman;
import net.minecraft.util.ChatComponentText;
import net.minecraftforge.client.event.RenderWorldLastEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import rosegoldaddons.Main;
import rosegoldaddons.utils.RenderUtils;
import rosegoldaddons.utils.RotationUtils;
import java.awt.*;
import java.util.Random;
public class GhostMacro {
@SubscribeEvent
public void renderWorld(RenderWorldLastEvent event) {
if (Main.GhostMacro) {
Entity entity1 = getClosestCreeper();
if (entity1 == null) return;
RenderUtils.drawEntityBox(entity1, Color.RED, true, event.partialTicks);
RotationUtils.faceEntity(entity1);
Random r = new Random();
if(r.nextInt(800) == 1) {
RotationUtils.antiAfk();
}
}
}
private static Entity getClosestCreeper() {
Entity eman = null;
Double closest = Double.valueOf(9999);
for (Entity entity1 : (Minecraft.getMinecraft().theWorld.loadedEntityList)) {
if (entity1 instanceof EntityCreeper && !(((EntityCreeper) entity1).getHealth() == 0)) {
double dist = entity1.getDistanceSq(Minecraft.getMinecraft().thePlayer.posX, Minecraft.getMinecraft().thePlayer.posY, Minecraft.getMinecraft().thePlayer.posZ);
if (dist < closest) {
if(Main.configFile.macroRadius != 0 && dist < Main.configFile.macroRadius) {
closest = dist;
eman = entity1;
} if(Main.configFile.macroRadius == 0) {
closest = dist;
eman = entity1;
}
}
}
}
return eman;
}
}
|