From 7895d1f627d36bae11ec359ccd02e5d2d89c7120 Mon Sep 17 00:00:00 2001 From: Blade <98755526+INotBLADE@users.noreply.github.com> Date: Tue, 13 Dec 2022 09:54:25 +0200 Subject: [PATCH 1/4] Adding PushOutOfBlocksEvent --- .../com/lambda/client/event/events/PushOutOfBlocksEvent.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/main/kotlin/com/lambda/client/event/events/PushOutOfBlocksEvent.kt diff --git a/src/main/kotlin/com/lambda/client/event/events/PushOutOfBlocksEvent.kt b/src/main/kotlin/com/lambda/client/event/events/PushOutOfBlocksEvent.kt new file mode 100644 index 000000000..fb78968da --- /dev/null +++ b/src/main/kotlin/com/lambda/client/event/events/PushOutOfBlocksEvent.kt @@ -0,0 +1,5 @@ +package com.lambda.client.event.events + +import com.lambda.client.event.* + +class PushOutOfBlocksEvent : Event, ICancellable by Cancellable() From 4dc88f27c707166f5788098824e6b079cff728e7 Mon Sep 17 00:00:00 2001 From: Blade <98755526+INotBLADE@users.noreply.github.com> Date: Tue, 13 Dec 2022 09:55:58 +0200 Subject: [PATCH 2/4] Add needed mixin for PushOutOfBlocksEvent --- .../com/lambda/mixin/player/MixinEntityPlayerSP.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/main/java/com/lambda/mixin/player/MixinEntityPlayerSP.java b/src/main/java/com/lambda/mixin/player/MixinEntityPlayerSP.java index 57e40faa7..683eaa206 100644 --- a/src/main/java/com/lambda/mixin/player/MixinEntityPlayerSP.java +++ b/src/main/java/com/lambda/mixin/player/MixinEntityPlayerSP.java @@ -3,6 +3,7 @@ import com.lambda.client.event.LambdaEventBus; import com.lambda.client.event.events.OnUpdateWalkingPlayerEvent; import com.lambda.client.event.events.PlayerMoveEvent; +import com.lambda.client.event.events.PushOutOfBlocksEvent; import com.lambda.client.gui.mc.LambdaGuiBeacon; import com.lambda.client.manager.managers.MessageManager; import com.lambda.client.manager.managers.PlayerPacketManager; @@ -70,6 +71,15 @@ public void closeScreen(Minecraft minecraft, GuiScreen screen) { if (PortalChat.INSTANCE.isDisabled()) Wrapper.getMinecraft().displayGuiScreen(screen); } + @Inject(method = "pushOutOfBlocks", at = @At("HEAD"), cancellable = true) + private void onPushOutOfBlocks(CallbackInfoReturnable callbackInfoReturnable) { + PushOutOfBlocksEvent event = new PushOutOfBlocksEvent(); + LambdaEventBus.INSTANCE.post(event); + if (event.getCancelled()) { + callbackInfoReturnable.setReturnValue(false); + } + } + /** * @author TBM * Used with full permission from TBM - l1ving From 2f728a6ef02d03513d95d0c8c26d5f265468fc6f Mon Sep 17 00:00:00 2001 From: Blade <98755526+INotBLADE@users.noreply.github.com> Date: Tue, 13 Dec 2022 09:59:42 +0200 Subject: [PATCH 3/4] Add Block setting for NoPush --- .../com/lambda/client/module/modules/movement/Velocity.kt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt index e68232838..472ee5d0a 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt @@ -1,6 +1,7 @@ package com.lambda.client.module.modules.movement import com.lambda.client.event.events.PacketEvent +import com.lambda.client.event.events.PushOutOfBlocksEvent import com.lambda.client.mixin.extension.* import com.lambda.client.module.Category import com.lambda.client.module.Module @@ -31,6 +32,7 @@ object Velocity : Module( private val noPush by setting("No Push", true) private val entity by setting("Entity", true, { noPush }) private val liquid by setting("Liquid", true, { noPush }) + private val block by setting("Block", true, { noPush }) init { safeListener { @@ -57,6 +59,10 @@ object Velocity : Module( } } } + + safeListener{ + if (block) it.cancel() + } } private val isZero get() = horizontal == 0.0f && vertical == 0.0f From faa63d0553b4208deee4fdbdf4ac53ff3fcd7247 Mon Sep 17 00:00:00 2001 From: Constructor Date: Sun, 18 Dec 2022 18:16:03 +0100 Subject: [PATCH 4/4] Block default setting off --- .../com/lambda/client/module/modules/movement/Velocity.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt b/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt index 472ee5d0a..ad7c49538 100644 --- a/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt +++ b/src/main/kotlin/com/lambda/client/module/modules/movement/Velocity.kt @@ -32,7 +32,7 @@ object Velocity : Module( private val noPush by setting("No Push", true) private val entity by setting("Entity", true, { noPush }) private val liquid by setting("Liquid", true, { noPush }) - private val block by setting("Block", true, { noPush }) + private val block by setting("Block", false, { noPush }) init { safeListener { @@ -60,7 +60,7 @@ object Velocity : Module( } } - safeListener{ + safeListener { if (block) it.cancel() } }