Skip to content

Commit 1fc1ac9

Browse files
committed
Updated PearlESP, SourceFill, Tags and SourceFill. Added ProjectileOwner
1 parent eb9ad49 commit 1fc1ac9

11 files changed

Lines changed: 557 additions & 54 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Not happy with the supported versions? Download [ViaFabricPlus](https://modrinth
1919

2020
I make changes very often but I publish releases sparingly, so if you want the latest patches/bug fixes and features you **must** compile it yourself.
2121

22-
![Release](https://i.imgur.com/a7UQGuI.png)
22+
![Release](https://i.imgur.com/uF5smIz.png)
2323

2424
### Wurst7-CevAPI In-Game Screenshot
2525
![Wurst7Cevapi](https://i.imgur.com/4JgZBb8.png)

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,8 @@ public final class HackList implements UpdateListener
249249
public final PortalEspHack portalEspHack = new PortalEspHack();
250250
public final PotEspHack potEspHack = new PotEspHack();
251251
public final PortalGuiHack portalGuiHack = new PortalGuiHack();
252+
public final ProjectileOwnerHack projectileOwnerHack =
253+
new ProjectileOwnerHack();
252254
public final PotionSaverHack potionSaverHack = new PotionSaverHack();
253255
public final ProphuntEspHack prophuntEspHack = new ProphuntEspHack();
254256
public final ProtectHack protectHack = new ProtectHack();

src/main/java/net/wurstclient/hacks/HealthTagsHack.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,10 @@ public final class HealthTagsHack extends Hack implements GUIRenderListener
6060
private final SliderSetting scale = new SliderSetting("Scale",
6161
"Scales the hearts below the nametag. 100% is the original size.", 1,
6262
0.25, 3, 0.05, SliderSetting.ValueDisplay.PERCENTAGE);
63+
private final CheckboxSetting scaleWithNameTagDistance =
64+
new CheckboxSetting("Scale with nametag distance",
65+
"Makes hearts grow with distance like nametags while still applying the Scale setting.",
66+
false);
6367

6468
private final java.util.Set<LivingEntity> entitiesToRender =
6569
java.util.Collections.newSetFromMap(new java.util.WeakHashMap<>());
@@ -79,6 +83,7 @@ public HealthTagsHack()
7983
addSetting(durabilityDisplayMode);
8084
addSetting(showPotionEffectStatus);
8185
addSetting(scale);
86+
addSetting(scaleWithNameTagDistance);
8287
}
8388

8489
@Override
@@ -199,7 +204,8 @@ public void onRenderGUI(GuiGraphicsExtractor context, float partialTicks)
199204
EntityHealthRenderer.drawHeartsAtEntity(context, entity,
200205
partialTicks, -10F, showArmor.isChecked(),
201206
showHeldItems.isChecked(), durabilityDisplayMode.getSelected(),
202-
showPotionEffectStatus.isChecked(), scale.getValueF());
207+
showPotionEffectStatus.isChecked(), scale.getValueF(),
208+
scaleWithNameTagDistance.isChecked());
203209
}
204210

205211
entitiesToRender.clear();

src/main/java/net/wurstclient/hacks/MobHealthHack.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ public final class MobHealthHack extends Hack implements GUIRenderListener
7676
private final SliderSetting scale = new SliderSetting("Scale",
7777
"Scales the health overlay. 100% is the original size.", 1, 0.25, 3,
7878
0.05, SliderSetting.ValueDisplay.PERCENTAGE);
79+
private final CheckboxSetting scaleWithNameTagDistance =
80+
new CheckboxSetting("Scale with nametag distance",
81+
"Makes the health overlay grow with distance like nametags while still applying the Scale setting.",
82+
false);
7983

8084
public MobHealthHack()
8185
{
@@ -91,6 +95,7 @@ public MobHealthHack()
9195
addSetting(durabilityDisplayMode);
9296
addSetting(showPotionEffectStatus);
9397
addSetting(scale);
98+
addSetting(scaleWithNameTagDistance);
9499
}
95100

96101
@Override
@@ -190,7 +195,8 @@ public void onRenderGUI(GuiGraphicsExtractor context, float partialTicks)
190195
EntityHealthRenderer.drawHeartsAtEntity(context, mob, partialTicks,
191196
yOffset, showArmor.isChecked(), showHeldItems.isChecked(),
192197
durabilityDisplayMode.getSelected(),
193-
showPotionEffectStatus.isChecked(), scale.getValueF());
198+
showPotionEffectStatus.isChecked(), scale.getValueF(),
199+
scaleWithNameTagDistance.isChecked());
194200
}
195201

196202
private Mob getLookedAtMob()

0 commit comments

Comments
 (0)