Compatibility
Minecraft: Java Edition
1.20.4–1.20.6
1.20.1
Platforms
Fabric
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Links
Creators
Details
Licensed MIT
Published last month
Updated 2 weeks ago
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
Metadata
Release channel
ReleaseVersion number
0.1.3Loaders
Game versions
1.20.5–1.20.6Downloads
18Publication date
October 13, 2024 at 5:17 PMPublisher
Padej_
Owner