Changelog
0.1.3 Crit Update
- [/] Hit Particle. Crit 90%
- [/] Crit Sound. Crit 90%
No more false sounds & particles
Before(Bad):
private static boolean isCritical() {
return mc.player != null
&& mc.player.fallDistance > 0;
}
After(Good):
private static boolean isCritical() {
return mc.player != null
&& mc.player.getAttackCooldownProgress(0.5F) > 0.9F
&& mc.player.fallDistance > 0
&& !mc.player.isOnGround()
&& !mc.player.isClimbing()
&& !mc.player.isTouchingWater()
&& !mc.player.hasStatusEffect(StatusEffects.BLINDNESS)
&& !mc.player.hasVehicle()
&& !mc.player.isSprinting();
}
Dependencies
Files
SoupAPI-0.1.3.jar(684 KiB) Primary
90% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Metadata
Release channel
ReleaseVersion number
0.1.3Loaders
Fabric
Game versions
1.20.5–1.20.6Downloads
18Publication date
October 13, 2024 at 5:17 PMPublisher
Padej_
Owner