Latest release

This commit is contained in:
jackh 2025-04-30 23:38:08 -07:00
parent f3089efb56
commit 653d451f95
12 changed files with 24 additions and 22 deletions

View File

@ -5,22 +5,18 @@
</component>
<component name="ChangeListManager">
<list default="true" id="371fdaac-49d2-42c5-a655-54882c949de7" name="Changes" comment="Latest release">
<change beforePath="$PROJECT_DIR$/.gradle/8.8/checksums/checksums.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/checksums/checksums.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gradle/8.8/executionHistory/executionHistory.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/executionHistory/executionHistory.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gradle/8.8/executionHistory/executionHistory.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/executionHistory/executionHistory.lock" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gradle/8.8/fileHashes/fileHashes.bin" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/fileHashes/fileHashes.bin" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gradle/8.8/fileHashes/fileHashes.lock" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/8.8/fileHashes/fileHashes.lock" afterDir="false" />
<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$/.gradle/file-system.probe" beforeDir="false" afterPath="$PROJECT_DIR$/.gradle/file-system.probe" 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/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/classes/java/main/keystrokesmod/module/impl/player/Scaffold.class" beforeDir="false" afterPath="$PROJECT_DIR$/build/classes/java/main/keystrokesmod/module/impl/player/Scaffold.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/player/BedAura.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/player/BedAura.java" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/player/Scaffold.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/java/keystrokesmod/module/impl/player/Scaffold.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -179,14 +175,6 @@
<option name="presentableId" value="Default" />
<updated>1736536952705</updated>
</task>
<task id="LOCAL-00012" summary="hi">
<option name="closed" value="true" />
<created>1737186865584</created>
<option name="number" value="00012" />
<option name="presentableId" value="LOCAL-00012" />
<option name="project" value="LOCAL" />
<updated>1737186865584</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>
@ -571,7 +559,15 @@
<option name="project" value="LOCAL" />
<updated>1745988465161</updated>
</task>
<option name="localTasksCounter" value="61" />
<task id="LOCAL-00061" summary="Latest release">
<option name="closed" value="true" />
<created>1746079552603</created>
<option name="number" value="00061" />
<option name="presentableId" value="LOCAL-00061" />
<option name="project" value="LOCAL" />
<updated>1746079552603</updated>
</task>
<option name="localTasksCounter" value="62" />
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">

View File

@ -64,7 +64,7 @@ public class BedAura extends Module {
private BlockPos previousBlockBroken;
private BlockPos rotateLastBlock;
private boolean spoofGround, firstStop;
private boolean isBreaking, startPacket, stopPacket, ignoreSlow;
private boolean isBreaking, startPacket, stopPacket, ignoreSlow, delayStop;
public BedAura() {
super("BedAura", category.player, 0);
@ -124,7 +124,11 @@ public class BedAura extends Module {
@SubscribeEvent(priority = EventPriority.HIGHEST)
public void onClientRotation(ClientRotationEvent e) {
stopAutoblock = false;
if (delayStop) {
delayStop = false;
} else {
stopAutoblock = false;
}
breakTick = false;
if (!Utils.nullCheck()) {
return;
@ -175,6 +179,12 @@ public class BedAura extends Module {
@SubscribeEvent
public void onPreMotion(PreMotionEvent e) {
if (stopAutoblock) {
if (Raven.debug) {
Utils.sendModuleMessage(this, "&7stopping autoblock (&3" + mc.thePlayer.ticksExisted + "&7).");
}
}
if (startPacket) {
mc.thePlayer.sendQueue.addToSendQueue(new C07PacketPlayerDigging(C07PacketPlayerDigging.Action.START_DESTROY_BLOCK, packetPos, EnumFacing.UP));
swing();
@ -362,6 +372,7 @@ public class BedAura extends Module {
currentBlock = null;
bedPos = null;
ignoreSlow = false;
delayStop = false;
}
public void setPacketSlot(int slot) {
@ -376,7 +387,6 @@ public class BedAura extends Module {
setRots(e);
packetPos = blockPos;
startPacket = true;
stopAutoblock = true;
isBreaking = true;
breakTick = true;
if (mc.thePlayer.motionY > -0.5) {
@ -389,7 +399,6 @@ public class BedAura extends Module {
setRots(e);
packetPos = blockPos;
stopPacket = true;
stopAutoblock = true;
isBreaking = false;
breakTick = true;
if (ignoreSlow) {
@ -430,12 +439,9 @@ public class BedAura extends Module {
}
currentBlock = blockPos;
Block block = BlockUtils.getBlock(blockPos);
if (!stopAutoblock && breakProgress <= 0 && mode.getInput() == 2 && ModuleManager.killAura.autoBlockOverride() && !firstStop) {
if ((breakProgress <= 0 || breakProgress >= 1) && mode.getInput() == 2 && !firstStop) {
firstStop = true;
stopAutoblock = true;
if (Raven.debug) {
Utils.sendModuleMessage(this, "&7stopping autoblock on &3start &7(&b" + mc.thePlayer.ticksExisted + "&7)");
}
stopAutoblock = delayStop = true;
return;
}
if (mode.getInput() == 2 || mode.getInput() == 0) {