Skip to content

Commit 882d01a

Browse files
committed
BedrockEscape
1 parent 9c36726 commit 882d01a

3 files changed

Lines changed: 372 additions & 0 deletions

File tree

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ I'm pleased to note that many of the features and improvements below are complet
8383
- Outreach
8484
- LivestreamDetector
8585
- WardenESP
86+
- Towny Hack, ChorusFruit and MeasurementESP (Unlisted Hacks)
87+
- BedrockEscape
8688
- Redstone, Bed, Sign & Workstation ESP
8789
- PearlESP (Not a simple trajectory hack)
8890
- SignFramePassThrough (I didn't know something like this existed as a mod already)
@@ -108,6 +110,8 @@ I have taken the following ideas from other clients/mods:
108110
- ElytraFlight
109111
- AntiVoid
110112
- SpearKill
113+
- InfiniteReach
114+
- UI-Utils
111115

112116
I did not, nor could I copy their code directly as most are Meteor based mods. So these are considered my interpretation of the functionality of those hacks.
113117

@@ -590,6 +594,18 @@ Credits to [Trouser-Streak](https://github.com/etianl/Trouser-Streak/blob/main/s
590594

591595
Credits to [Trouser-Streak](https://github.com/etianl/Trouser-Streak/blob/main/src/main/java/pwn/noobs/trouserstreak/modules/InfiniteReach.java). The difference between mine and theirs is that I have added through block toggle, clip up toggle for mace, and better ESP highlighting.
592596

597+
### BedrockEscape
598+
599+
- Sends you up and down through bedrock instantly and from approx 50 blocks distance.
600+
- Gives you a readout of how many hearts of damage you will take going through the bedrock based on its thickness.
601+
- Only renders the ESP box when it's a valid pass through.
602+
- Will only let you land on a safe spot or an area that has liquids (lava or water).
603+
- A green tick will appear when all teleport conditions are met: can reach, won't die and able to pass through.
604+
- Able to adjust packet rate throttle to avoid spam or detection.
605+
- Only works on PaperMC
606+
607+
![Bedrock](https://i.imgur.com/4mEuHL8.png)
608+
593609
## What's changed or improved in this fork?
594610

595611
### ChestESP

src/main/java/net/wurstclient/hack/HackList.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@ public final class HackList implements UpdateListener
153153
public final MaceDmgHack maceDmgHack = new MaceDmgHack();
154154
public final SpearAssistHack spearAssistHack = new SpearAssistHack();
155155
public final MassTpaHack massTpaHack = new MassTpaHack();
156+
public final BedrockEscapeHack bedrockEscapeHack = new BedrockEscapeHack();
156157
public final MileyCyrusHack mileyCyrusHack = new MileyCyrusHack();
157158
public final MeasurementEspHack measurementEspHack =
158159
new MeasurementEspHack();

0 commit comments

Comments
 (0)