This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
forked from Strangerrrs/Raven-bS
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- [+] **Add** Active mode to HitSelect. - Active mode will cancel attack action and keep swing action. It looks like "Legit KeepSprint", and may be flagged by Polar. - [※] **Fix** JumpReset sometimes do impossible jump. - [+] **Improve** TimerRange. - **Add** fov option. default is 180° it means only TimerRange if you are face the target. - **Add** ignoreTeammates option. - Now TimerRange didn't need KillAura anymore. - [※] **Improve** StrafeTest mode in Speed. - Renamed "Strafe (Deprecated)" to "StrafeTest". - [+] **Add** Latency compensation option to Water bucket. - if the value > 0, module will predict your future move and extend your reach distance. - [※] **Fix** Block-In - fix direction
- Loading branch information
Showing
20 changed files
with
212 additions
and
138 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/main/java/keystrokesmod/module/impl/other/anticheats/utils/world/BlockUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
package keystrokesmod.module.impl.other.anticheats.utils.world; | ||
|
||
import net.minecraft.block.Block; | ||
import net.minecraft.block.BlockGlass; | ||
import net.minecraft.block.state.IBlockState; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class BlockUtils { | ||
public static boolean isFullBlock(@NotNull IBlockState blockState) { | ||
return blockState.getBlock().isFullBlock(); | ||
Block block = blockState.getBlock(); | ||
return block instanceof BlockGlass || block.isFullBlock(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.