diff options
Diffstat (limited to 'src/main/java/rosegoldaddons/features')
5 files changed, 357 insertions, 3 deletions
diff --git a/src/main/java/rosegoldaddons/features/BloodTriggerBot.java b/src/main/java/rosegoldaddons/features/BloodTriggerBot.java new file mode 100644 index 0000000..88ce213 --- /dev/null +++ b/src/main/java/rosegoldaddons/features/BloodTriggerBot.java @@ -0,0 +1,94 @@ +package rosegoldaddons.features; + +import net.minecraft.client.Minecraft; +import net.minecraft.client.entity.EntityOtherPlayerMP; +import net.minecraft.client.gui.GuiChat; +import net.minecraft.client.gui.GuiIngameMenu; +import net.minecraft.client.gui.inventory.GuiChest; +import net.minecraft.entity.Entity; +import net.minecraft.entity.boss.EntityWither; +import net.minecraft.util.AxisAlignedBB; +import net.minecraft.util.MovingObjectPosition; +import net.minecraft.util.Vec3; +import net.minecraftforge.client.event.RenderWorldLastEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import rosegoldaddons.Main; +import rosegoldaddons.utils.ChatUtils; +import rosegoldaddons.utils.RenderUtils; +import rosegoldaddons.utils.RotationUtils; + +import java.awt.*; +import java.lang.reflect.Method; +import java.util.ArrayList; + +public class BloodTriggerBot { + private static String[] names = {"Revoker", "Psycho", "Reaper", "Cannibal", "Mute", "Ooze", "Putrid", "Freak", "Leech", "Tear", "Parasite", "Flamer", "Skull", "Mr. Dead", "Vader", "Frost", "Walker", "WanderingSoul"}; + private static ArrayList<Entity> bloodMobs = null; + private Thread thread; + + @SubscribeEvent + public void renderWorld(RenderWorldLastEvent event) { + if (!Main.bloodTriggerBot) return; + bloodMobs = getAllBloodMobs(); + if (thread == null || !thread.isAlive()) { + thread = new Thread(() -> { + try { + for (Entity entity : bloodMobs) { + if (isLookingAtBloodMob(entity.getEntityBoundingBox(), event)) { + click(); + Thread.sleep(100); + } + } + } catch (Exception e) { + e.printStackTrace(); + } + }, "Blood room thingy"); + thread.start(); + } + } + + private static boolean isLookingAtBloodMob(AxisAlignedBB aabb, RenderWorldLastEvent event) { + Vec3 position = new Vec3(Minecraft.getMinecraft().thePlayer.posX, (Minecraft.getMinecraft().thePlayer.posY + Minecraft.getMinecraft().thePlayer.getEyeHeight()), Minecraft.getMinecraft().thePlayer.posZ); + Vec3 look = Minecraft.getMinecraft().thePlayer.getLook(event.partialTicks); + for (int i = 0; i < 30; i++) { + if (aabb.minX <= position.xCoord && aabb.maxX >= position.xCoord && aabb.minY <= position.yCoord && aabb.maxY >= position.yCoord && aabb.minZ <= position.zCoord && aabb.maxZ >= position.zCoord) { + return true; + } + position = position.add(look); + } + + return false; + } + + private static ArrayList<Entity> getAllBloodMobs() { + ArrayList<Entity> bloodMobs = new ArrayList<>(); + for (Entity entity1 : (Minecraft.getMinecraft().theWorld.loadedEntityList)) { + if (entity1 instanceof EntityOtherPlayerMP && !entity1.isDead) { + for (String name : names) { + if (entity1.getName().contains(name)) { + bloodMobs.add(entity1); + } + } + } + if (entity1 instanceof EntityWither) { + bloodMobs.add(entity1); + } + } + return bloodMobs; + } + + public static void click() { + try { + Method clickMouse; + try { + clickMouse = Minecraft.class.getDeclaredMethod("func_147116_af"); + } catch (NoSuchMethodException e) { + clickMouse = Minecraft.class.getDeclaredMethod("clickMouse"); + } + clickMouse.setAccessible(true); + clickMouse.invoke(Minecraft.getMinecraft()); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/src/main/java/rosegoldaddons/features/ForagingIslandMacro.java b/src/main/java/rosegoldaddons/features/ForagingIslandMacro.java new file mode 100644 index 0000000..3dc301e --- /dev/null +++ b/src/main/java/rosegoldaddons/features/ForagingIslandMacro.java @@ -0,0 +1,218 @@ +package rosegoldaddons.features; + +import net.minecraft.block.Block; +import net.minecraft.block.state.IBlockState; +import net.minecraft.client.Minecraft; +import net.minecraft.client.settings.KeyBinding; +import net.minecraft.entity.Entity; +import net.minecraft.entity.monster.EntityEnderman; +import net.minecraft.entity.player.InventoryPlayer; +import net.minecraft.init.Blocks; +import net.minecraft.item.ItemStack; +import net.minecraft.util.*; +import net.minecraftforge.client.event.RenderWorldLastEvent; +import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; +import rosegoldaddons.Main; +import rosegoldaddons.utils.ChatUtils; +import rosegoldaddons.utils.RenderUtils; +import rosegoldaddons.utils.RotationUtils; + +import java.awt.*; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.Random; + +public class ForagingIslandMacro { + private Thread thread; + + @SubscribeEvent + public void renderWorld(RenderWorldLastEvent event) { + if (Main.forageOnIsland) { + if (thread == null || !thread.isAlive()) { + thread = new Thread(() -> { + try { + BlockPos furthestDirt = furthestEmptyDirt(); + //Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("furthest dirt "+furthestDirt)); + int sapling = findItemInHotbar("Jungle Sapling"); + int bonemeal = findItemInHotbar("Bone Meal"); + int treecap = findItemInHotbar("Treecapitator"); + int rod = findItemInHotbar("Rod"); + if(sapling == -1) { + ChatUtils.sendMessage("§cNo jungle saplings in hotbar"); + } + if(bonemeal == -1) { + ChatUtils.sendMessage("§cNo bonemeal in hotbar"); + } + if(treecap == -1) { + ChatUtils.sendMessage("§cNo Treecapitator in hotbar"); + } + if(rod == -1) { + ChatUtils.sendMessage("§cNo Fishing Rod in hotbar"); + } + if(sapling == -1 || bonemeal == -1 || treecap == -1 || rod == -1) { + Main.forageOnIsland = false; + ChatUtils.sendMessage("§cForaging Macro Deactivated"); + return; + } + if (furthestDirt != null) { + RotationUtils.facePos(new Vec3(furthestDirt.getX() + 0.5, furthestDirt.getY() - 0.5, furthestDirt.getZ() + 0.5)); + Thread.sleep(Main.configFile.smoothLookVelocity * 2L); + if (sapling != -1) { + if (Minecraft.getMinecraft().objectMouseOver.typeOfHit.toString().equals("BLOCK")) { + BlockPos pos = Minecraft.getMinecraft().objectMouseOver.getBlockPos(); + Block block = Minecraft.getMinecraft().theWorld.getBlockState(pos).getBlock(); + if (block == Blocks.sapling) { + click(); + Thread.sleep(20); + } + } + Minecraft.getMinecraft().thePlayer.inventory.currentItem = sapling; + //Minecraft.getMinecraft().playerController.onPlayerRightClick(Minecraft.getMinecraft().thePlayer, Minecraft.getMinecraft().theWorld, Minecraft.getMinecraft().thePlayer.inventory.getCurrentItem(), furthestDirt, EnumFacing.NORTH, Minecraft.getMinecraft().objectMouseOver.hitVec); + rightClick(); + } + } else { + BlockPos dirt = closestDirt(); + if (dirt != null) { + RotationUtils.facePos(new Vec3(dirt.getX() + 0.5, dirt.getY(), dirt.getZ() + 0.5)); + if (bonemeal != -1 && treecap != -1) { + Minecraft.getMinecraft().thePlayer.inventory.currentItem = bonemeal; + Thread.sleep(200); + rightClick(); + rightClick(); + Minecraft.getMinecraft().thePlayer.inventory.currentItem = treecap; + Thread.sleep(150); + KeyBinding.setKeyBindState(Minecraft.getMinecraft().gameSettings.keyBindAttack.getKeyCode(), true); + Thread.sleep(100); + KeyBinding.setKeyBindState(Minecraft.getMinecraft().gameSettings.keyBindAttack.getKeyCode(), false); + Thread.sleep(25); + Minecraft.getMinecraft().thePlayer.inventory.currentItem = rod; + Thread.sleep(200); + rightClick(); + Thread.sleep((2000 - Main.configFile.monkeyLevel * 10L)); + } + } + } + } catch (Exception e) { + e.printStackTrace(); + } + }, "Island Foraging Macro"); + thread.start(); + } + } + } + + @SubscribeEvent + public void renderWorld2(RenderWorldLastEvent event) { + if (!Main.forageOnIsland) return; + BlockPos furthestDirt = furthestEmptyDirt(); + if (furthestDirt != null) { + RenderUtils.drawBlockBox(furthestDirt, Color.RED, true, event.partialTicks); + } + } + + private BlockPos furthestEmptyDirt() { + int r = 5; + BlockPos playerPos = Minecraft.getMinecraft().thePlayer.getPosition(); + playerPos.add(0, 1, 0); + Vec3 playerVec = Minecraft.getMinecraft().thePlayer.getPositionVector(); + Vec3i vec3i = new Vec3i(r, r, r); + ArrayList<Vec3> dirts = new ArrayList<Vec3>(); + if (playerPos != null) { + for (BlockPos blockPos : BlockPos.getAllInBox(playerPos.add(vec3i), playerPos.subtract(vec3i))) { + IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos); + IBlockState blockState2 = Minecraft.getMinecraft().theWorld.getBlockState(blockPos.add(0, 1, 0)); + //Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(blockState.getBlock().toString())); + if (blockState.getBlock() == Blocks.dirt && blockState2.getBlock() == Blocks.air) { + dirts.add(new Vec3(blockPos.getX() + 0.5, blockPos.getY(), blockPos.getZ() + 0.5)); + } + } + } + double biggest = -1; + Vec3 furthest = null; + for (int i = 0; i < dirts.size(); i++) { + double dist = dirts.get(i).distanceTo(playerVec); + if (dist > biggest) { + biggest = dist; + furthest = dirts.get(i); + } + } + if (furthest != null && biggest < 4) { + return new BlockPos(furthest.xCoord, furthest.yCoord, furthest.zCoord); + } + return null; + } + + private BlockPos closestDirt() { + int r = 5; + BlockPos playerPos = Minecraft.getMinecraft().thePlayer.getPosition(); + playerPos.add(0, 1, 0); + Vec3 playerVec = Minecraft.getMinecraft().thePlayer.getPositionVector(); + Vec3i vec3i = new Vec3i(r, r, r); + ArrayList<Vec3> dirts = new ArrayList<Vec3>(); + if (playerPos != null) { + for (BlockPos blockPos : BlockPos.getAllInBox(playerPos.add(vec3i), playerPos.subtract(vec3i))) { + IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos); + //Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(blockState.getBlock().toString())); + if (blockState.getBlock() == Blocks.dirt) { + dirts.add(new Vec3(blockPos.getX() + 0.5, blockPos.getY(), blockPos.getZ() + 0.5)); + } + } + } + double smallest = 9999; + Vec3 closest = null; + for (int i = 0; i < dirts.size(); i++) { + double dist = dirts.get(i).distanceTo(playerVec); + if (dist < smallest) { + smallest = dist; + closest = dirts.get(i); + } + } + if (closest != null && smallest < 4) { + return new BlockPos(closest.xCoord, closest.yCoord, closest.zCoord); + } + return null; + } + + private static int findItemInHotbar(String name) { + InventoryPlayer inv = Minecraft.getMinecraft().thePlayer.inventory; + for (int i = 0; i < 9; i++) { + ItemStack curStack = inv.getStackInSlot(i); + if (curStack != null) { + if (curStack.getDisplayName().contains(name)) { + return i; + } + } + } + return -1; + } + + public static void rightClick() { + try { + Method rightClickMouse; + try { + rightClickMouse = Minecraft.class.getDeclaredMethod("func_147121_ag"); + } catch (NoSuchMethodException e) { + rightClickMouse = Minecraft.class.getDeclaredMethod("rightClickMouse"); + } + rightClickMouse.setAccessible(true); + rightClickMouse.invoke(Minecraft.getMinecraft()); + } catch (Exception e) { + e.printStackTrace(); + } + } + + public static void click() { + try { + Method clickMouse; + try { + clickMouse = Minecraft.class.getDeclaredMethod("func_147116_af"); + } catch (NoSuchMethodException e) { + clickMouse = Minecraft.class.getDeclaredMethod("clickMouse"); + } + clickMouse.setAccessible(true); + clickMouse.invoke(Minecraft.getMinecraft()); + } catch (Exception e) { + e.printStackTrace(); + } + } +} diff --git a/src/main/java/rosegoldaddons/features/ItemFrameAura.java b/src/main/java/rosegoldaddons/features/ItemFrameAura.java index 0e7426f..973bd39 100644 --- a/src/main/java/rosegoldaddons/features/ItemFrameAura.java +++ b/src/main/java/rosegoldaddons/features/ItemFrameAura.java @@ -14,6 +14,7 @@ import net.minecraftforge.client.event.RenderWorldLastEvent; import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.common.gameevent.TickEvent; import rosegoldaddons.Main; +import rosegoldaddons.utils.ChatUtils; import java.lang.reflect.Method; import java.util.ArrayList; @@ -79,7 +80,7 @@ public class ItemFrameAura { currRotationAmount = currRotationAmount - 8; toClick = endRotationAmount - currRotationAmount; } - Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("" + toClick)); + ChatUtils.sendMessage("" + toClick); for (int i = 0; i < toClick; i++) { //Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("clicked")); rightClick(); @@ -131,7 +132,7 @@ public class ItemFrameAura { }); String patternName = getPattern(redWools, greenWools, topLeft); - Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(patternName)); + ChatUtils.sendMessage(patternName); clickPatternAura(patternName, topLeft); } diff --git a/src/main/java/rosegoldaddons/features/NecronAimbot.java b/src/main/java/rosegoldaddons/features/NecronAimbot.java new file mode 100644 index 0000000..59e1493 --- /dev/null +++ b/src/main/java/rosegoldaddons/features/NecronAimbot.java @@ -0,0 +1,40 @@ +package rosegoldaddons.features; + +import net.minecraft.client.Minecraft; +import net.minecraft.entity.Entity; +import net.minecraft.entity.boss.EntityWither; +import net.minecraft.entity.monster.EntityEnderman; +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 NecronAimbot { + @SubscribeEvent + public void renderWorld(RenderWorldLastEvent event) { + if (!Main.necronAimbot) return; + Entity necron = getClosestWither(); + if (necron == null) return; + RenderUtils.drawEntityBox(necron, Color.RED, true, event.partialTicks); + RotationUtils.faceEntity(necron); + } + + private static Entity getClosestWither() { + Entity necron = null; + Double closest = Double.valueOf(9999); + for (Entity entity1 : (Minecraft.getMinecraft().theWorld.loadedEntityList)) { + if (entity1 instanceof EntityWither && !(((EntityWither) entity1).getHealth() == 0)) { + double dist = entity1.getDistanceSq(Minecraft.getMinecraft().thePlayer.posX, Minecraft.getMinecraft().thePlayer.posY, Minecraft.getMinecraft().thePlayer.posZ); + if (dist < closest) { + closest = dist; + necron = entity1; + } + } + } + return necron; + } +} diff --git a/src/main/java/rosegoldaddons/features/WartMacro.java b/src/main/java/rosegoldaddons/features/WartMacro.java index 8b47fcb..b96f25b 100644 --- a/src/main/java/rosegoldaddons/features/WartMacro.java +++ b/src/main/java/rosegoldaddons/features/WartMacro.java @@ -11,6 +11,7 @@ import net.minecraftforge.fml.common.eventhandler.SubscribeEvent; import net.minecraftforge.fml.common.gameevent.TickEvent; import rosegoldaddons.Main; import rosegoldaddons.commands.WartSetup; +import rosegoldaddons.utils.ChatUtils; import rosegoldaddons.utils.RenderUtils; import java.awt.*; @@ -124,7 +125,7 @@ public class WartMacro { double xdiff = Math.abs(savex - Minecraft.getMinecraft().thePlayer.posX); double zdiff = Math.abs(savez - Minecraft.getMinecraft().thePlayer.posZ); if(xdiff < 2 && zdiff < 2) { - Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText("stuck detected.")); + ChatUtils.sendMessage("stuck detected."); KeyBinding.setKeyBindState(Minecraft.getMinecraft().gameSettings.keyBindLeft.getKeyCode(), true); Thread.sleep(500); KeyBinding.setKeyBindState(Minecraft.getMinecraft().gameSettings.keyBindLeft.getKeyCode(), false); |