Skip to content

Commit bfdad43

Browse files
committed
Updated AltGUI
1 parent fc1ee2d commit bfdad43

File tree

4 files changed

+659
-66
lines changed

4 files changed

+659
-66
lines changed

README.md

Lines changed: 36 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ I'm pleased to note that many of the features and improvements below are complet
108108
- MusicAura
109109
- Performance Overlay
110110
- PearlIntercept
111+
- PlayerSonar
111112
- Redstone, Bed, Sign & Workstation ESP
112113
- PearlESP (Not a simple trajectory hack)
113114
- SignFramePassThrough (I didn't know something like this existed as a mod already)
@@ -137,6 +138,7 @@ I have taken the following ideas from other clients/mods:
137138
- BookBot
138139
- NewerNewChunks
139140
- ElytraInfo
141+
- TunnelHoleStairESP
140142

141143
I did not, and could not, copy any code directly since most implementations are Meteor-based mods or standalone projects. These are my own implementations of the concepts, rewritten for Mojmap and often improved or expanded upon.
142144

@@ -181,8 +183,8 @@ A ready-to-publish starter project is included here: [https://github.com/cev-api
181183

182184
## What's new in this fork?
183185

184-
### New GUI
185-
- Added a new alternative GUI which you can initially access from the navigator menu and bind to a key
186+
### New GUI (AltGUI)
187+
- Added a new alternative GUI which you can initially access from the navigator menu and bind to a key (Default Left ALT)
186188
- Totally separate from ClickGUI and Navigator
187189
- Customisable coloring, opacities and sizing with consistancy based on font scaling to prevent clipping
188190
- Changeable fonts, though pixel fonts are preferred unless you want performance hit
@@ -194,8 +196,10 @@ A ready-to-publish starter project is included here: [https://github.com/cev-api
194196
- Configurable open behavior: Open on Favorites, Enabled or restore last category/scroll state
195197
- Replaced old color editor with HSV Color Picker giving access to a greater color spectrum
196198
- Supports keybind adding and removing
199+
- Optional top or side category modes
197200

198201
![AltGUI](https://i.imgur.com/0PpYJm4.png)
202+
![AltGUI2](https://i.imgur.com/7twFGgG.png)
199203

200204
### MobSearch
201205
- Search mobs by fuzzy name/ID or exact type (e.g., `minecraft:zombie` or `zombie`).
@@ -987,34 +991,36 @@ Purpose: helps you avoid and debug anticheat flags by cleaning risky movement pa
987991

988992
![Sonar](https://i.imgur.com/F2EPbvT.png)
989993

990-
### TunnelHoleStairESP
991-
- Finds likely player-dug paths and highlights:
992-
- Vertical shafts
993-
- Straight tunnels
994-
- Stair mines
995-
- Additional independent detections:
996-
- Ladder columns
997-
- Bubble-column holes
998-
- Water-filled holes (non-bubble)
999-
- `Detection mode` controls holes/tunnels/stairs; ladder/bubble/water detection has separate toggles.
1000-
- `Area` + `Sticky area` control coverage:
1001-
- `Area` = scan radius
1002-
- `Sticky area` = keep previously found results anchored while active scanning still follows your current position
1003-
- Performance controls:
1004-
- `Chunks per tick` = scan speed
1005-
- `Scan time budget` = hard CPU cap per tick (main FPS stabilizer)
1006-
- `Refresh interval` = periodic full re-queue of in-range chunks to refresh stale detections
1007-
- Scan order prioritizes top-down passes to surface detections sooner
1008-
- Accuracy controls:
1009-
- `Air only` for stricter shape detection
1010-
- Min/max hole width and depth
1011-
- Min/max tunnel width, height, and minimum tunnel length
1012-
- Stair height/length limits
1013-
- Minimum ladder/bubble/water column heights
1014-
- `Natural wall filter` + `ratio` to reduce cave/worldgen false positives
1015-
- Tunnel detection treats torches as passable so lit tunnels don't split.
1016-
- Includes per-dimension toggles and separate render colors/styles for holes, tunnels, stairs, ladders, bubble columns, and water holes.
1017-
- Heuristic system: strong for route/base hunting, not perfect.
994+
### TunnelHoleStairESP
995+
- Finds likely player-dug paths and highlights:
996+
- Vertical shafts
997+
- Straight tunnels
998+
- Stair mines
999+
- Additional independent detections:
1000+
- Ladder columns
1001+
- Bubble-column holes
1002+
- Water-filled holes (non-bubble)
1003+
- `Detection mode` controls holes/tunnels/stairs; ladder/bubble/water detection has separate toggles.
1004+
- `Area` + `Sticky area` control coverage:
1005+
- `Area` = scan radius
1006+
- `Sticky area` = keep previously found results anchored while active scanning still follows your current position
1007+
- Performance controls:
1008+
- `Chunks per tick` = scan speed
1009+
- `Scan time budget` = hard CPU cap per tick (main FPS stabilizer)
1010+
- `Refresh interval` = periodic full re-queue of in-range chunks to refresh stale detections
1011+
- Scan order prioritizes top-down passes to surface detections sooner
1012+
- Accuracy controls:
1013+
- `Air only` for stricter shape detection
1014+
- Min/max hole width and depth
1015+
- Min/max tunnel width, height, and minimum tunnel length
1016+
- Stair height/length limits
1017+
- Minimum ladder/bubble/water column heights
1018+
- `Natural wall filter` + `ratio` to reduce cave/worldgen false positives
1019+
- Tunnel detection treats torches as passable so lit tunnels don't split.
1020+
- Includes per-dimension toggles and separate render colors/styles for holes, tunnels, stairs, ladders, bubble columns, and water holes.
1021+
- Heuristic system: strong for route/base hunting, not perfect.
1022+
1023+
- Inspired by [Trouser-Streak's](https://github.com/etianl/Trouser-Streak/blob/main/src/main/java/pwn/noobs/trouserstreak/modules/HoleAndTunnelAndStairsESP.java) implementation, but heavily improved upon.
10181024

10191025
![DigDig](https://i.imgur.com/CODK0xp.png)
10201026

0 commit comments

Comments
 (0)