Latest release

This commit is contained in:
jackh 2025-05-01 01:16:05 -07:00
parent 653d451f95
commit 9ac95ea715
17 changed files with 26 additions and 17 deletions

View File

@ -12,10 +12,15 @@
<change beforePath="$PROJECT_DIR$/.gradle/8.8/fileHashes/resourceHashesCache.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/fileHashes/resourceHashesCache.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gradle/buildOutputCleanup/buildOutputCleanup.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/buildOutputCleanup/buildOutputCleanup.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/combat/KillAura$KillAuraTarget.class" beforeDir="false" afterPath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/combat/KillAura$KillAuraTarget.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/combat/KillAura.class" beforeDir="false" afterPath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/combat/KillAura.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/other/ViewPackets.class" beforeDir="false" afterPath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/other/ViewPackets.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/player/BedAura.class" beforeDir="false" afterPath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/player/BedAura.class" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/intermediates/raven-bS-13-non-obfuscated-with-deps.jar" beforeDir="false" afterPath="$PROJECT_DIR$/build/intermediates/raven-bS-13-non-obfuscated-with-deps.jar" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/intermediates/raven-bS-13-without-deps.jar" beforeDir="false" afterPath="$PROJECT_DIR$/build/intermediates/raven-bS-13-without-deps.jar" afterDir="false" />
<change beforePath="$PROJECT_DIR$/build/tmp/compileJava/previous-compilation-data.bin" beforeDir="false" afterPath="$PROJECT_DIR$/build/tmp/compileJava/previous-compilation-data.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/combat/KillAura.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/combat/KillAura.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/other/ViewPackets.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/other/ViewPackets.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/player/BedAura.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/player/BedAura.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
@ -175,14 +180,6 @@
<option name="presentableId" value="Default" />
<updated>1736536952705</updated>
</task>
<task id="LOCAL-00013" summary="recoded scaffold rotations (10000x better) and fixed some other issues">
<option name="closed" value="true" />
<created>1737272894776</created>
<option name="number" value="00013" />
<option name="presentableId" value="LOCAL-00013" />
<option name="project" value="LOCAL" />
<updated>1737272894776</updated>
</task>
<task id="LOCAL-00014" summary="t">
<option name="closed" value="true" />
<created>1737336711496</created>
@ -567,7 +564,15 @@
<option name="project" value="LOCAL" />
<updated>1746079552603</updated>
</task>
<option name="localTasksCounter" value="62" />
<task id="LOCAL-00062" summary="Latest release">
<option name="closed" value="true" />
<created>1746081489494</created>
<option name="number" value="00062" />
<option name="presentableId" value="LOCAL-00062" />
<option name="project" value="LOCAL" />
<updated>1746081489494</updated>
</task>
<option name="localTasksCounter" value="63" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">

View File

@ -330,6 +330,12 @@ public class KillAura extends Module {
}
return;
}
if (ModuleManager.bedAura.stopAutoblock) {
if (rotated) {
resetYaw(e);
}
return;
}
if (rotationMode.getInput() != 2) {
if (rotateMode.getInput() == 0 && inRange(target, attackRange.getInput() - 0.005) || rotateMode.getInput() == 1 && inRange(target, swingRange.getInput())) {
float[] rotations = RotationUtils.getRotations(target, RotationUtils.prevRenderYaw, RotationUtils.prevRenderPitch);

View File

@ -53,7 +53,7 @@ public class ViewPackets extends Module {
}
final String s = b ? ("&a" + packet.getClass().getSimpleName()) : applyInfo(packet);
final String string = ((compactC03.isToggled() && packet instanceof C03PacketPlayer) ? "&6" : "&d") + packet.getClass().getSimpleName();
final ChatComponentText chatComponentText = new ChatComponentText(Utils.formatColor("&7[&dR&7]&r &7" + (b ? "Received" : "Sent") + " packet (t:&b" + tick + "&7): "));
final ChatComponentText chatComponentText = new ChatComponentText(Utils.formatColor("&7[&dR&7]&r &7" + (b ? "Received" : "Sent") + " packet (t:&b" + mc.thePlayer.ticksExisted + "&7): "));
final ChatStyle chatStyle = new ChatStyle();
chatStyle.setChatHoverEvent(new HoverEvent(HoverEvent.Action.SHOW_TEXT, new ChatComponentText(Utils.formatColor(s))));
chatComponentText.appendSibling(new ChatComponentText(Utils.formatColor(string)).setChatStyle(chatStyle));

View File

@ -139,7 +139,6 @@ public class BedAura extends Module {
}
if (currentBlock != null && !RotationUtils.inRange(currentBlock, 15)) {
reset(true, true);
previousBlockBroken = null;
}
if (Utils.isBedwarsPracticeOrReplay()) {
return;
@ -199,6 +198,9 @@ public class BedAura extends Module {
Utils.sendModuleMessage(this, "sending c07 &cstop &7break &7(&b" + mc.thePlayer.ticksExisted + "&7)");
}
}
if (isBreaking && !startPacket && !stopPacket) {
swing();
}
if (groundSpoof.isToggled() && !mc.thePlayer.isInWater() && spoofGround) {
e.setOnGround(true);
@ -354,7 +356,6 @@ public class BedAura extends Module {
resetSlot();
}
breakProgress = 0;
currentBlock = null;
breakProgressMap.clear();
lastSlot = -1;
vanillaProgress = 0;
@ -373,6 +374,7 @@ public class BedAura extends Module {
bedPos = null;
ignoreSlow = false;
delayStop = false;
previousBlockBroken = null;
}
public void setPacketSlot(int slot) {
@ -442,6 +444,7 @@ public class BedAura extends Module {
if ((breakProgress <= 0 || breakProgress >= 1) && mode.getInput() == 2 && !firstStop) {
firstStop = true;
stopAutoblock = delayStop = true;
setRots(e);
return;
}
if (mode.getInput() == 2 || mode.getInput() == 0) {
@ -479,11 +482,6 @@ public class BedAura extends Module {
}
double progress = vanillaProgress = (float) (BlockUtils.getBlockHardness(block, (mode.getInput() == 2 && Utils.getTool(block) != -1) ? mc.thePlayer.inventory.getStackInSlot(Utils.getTool(block)) : mc.thePlayer.getHeldItem(), false, ignoreSlow) * breakSpeed.getInput());
if (lastProgress != 0 && breakProgress >= lastProgress - vanillaProgress) {
if (mode.getInput() == 2 && ModuleManager.killAura.autoBlockOverride()) {
if (Raven.debug) {
Utils.sendModuleMessage(this, "&7stopping autoblock &7(&b" + mc.thePlayer.ticksExisted + "&7)");
}
}
if (breakProgress >= lastProgress) {
if (mode.getInput() == 2) {
if (Raven.debug) {