Skip to content
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.

Commit

Permalink
- new TimerRange
Browse files Browse the repository at this point in the history
- improve ClickGui
    - new Watermark option
- improve LongJump
    - work for Hypixel
- improve Tower
- improve MotionSkidder & MotionModifier
- improve KillAura
- rename AntiKnockback to Velocity
- remove Boost
  • Loading branch information
xia-mc committed Jun 5, 2024
1 parent eccb76c commit 1e9a27b
Show file tree
Hide file tree
Showing 18 changed files with 383 additions and 374 deletions.
1 change: 1 addition & 0 deletions src/main/java/keystrokesmod/clickgui/ClickGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public void drawScreen(int x, int y, float p) {
this.drawCenteredString(this.fontRendererObj, "e", wd - w_c, h + 5, Utils.getChroma(2L, 600L));
this.drawCenteredString(this.fontRendererObj, "n", wd - w_c, h + 15, Utils.getChroma(2L, 300L));
this.drawCenteredString(this.fontRendererObj, "bS", wd + 1 + w_c, h + 30, Utils.getChroma(2L, 0L));
this.drawCenteredString(this.fontRendererObj, "(xia__mc forked)", wd + 1 + w_c, h + 45, Utils.getChroma(2L, 0L));
this.drawVerticalLine(wd - 10 - w_c, h - 30, h + 43, Color.white.getRGB());
this.drawVerticalLine(wd + 10 + w_c, h - 30, h + 43, Color.white.getRGB());
if (this.aL != null) {
Expand Down
8 changes: 4 additions & 4 deletions src/main/java/keystrokesmod/module/ModuleManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ModuleManager {
public static Module reach;
public static BedESP bedESP;
public static HUD hud;
public static Module timer;
public static Timer timer;
public static Module fly;
public static Module wTap;
public static Potions potions;
Expand All @@ -57,6 +57,7 @@ public class ModuleManager {
public static MotionModifier motionModifier;
public static AntiVoid antiVoid;
public static Criticals criticals;
public static TimerRange timerRange;

public void register() {
this.addModule(autoClicker = new AutoClicker());
Expand All @@ -72,12 +73,10 @@ public void register() {
this.addModule(new Settings());
this.addModule(reach = new Reach());
this.addModule(new RodAimbot());
this.addModule(new Velocity());
this.addModule(speed = new Speed());
this.addModule(new InvManager());
this.addModule(scaffold = new Scaffold());
this.addModule(new AntiAFK());
this.addModule(new Boost());
this.addModule(new AutoTool());
this.addModule(fly = new Fly());
this.addModule(new InvMove());
Expand All @@ -100,7 +99,7 @@ public void register() {
this.addModule(noFall = new NoFall());
this.addModule(safeWalk = new SafeWalk());
this.addModule(reduce = new Reduce());
this.addModule(antiKnockback = new AntiKnockback());
this.addModule(antiKnockback = new Velocity());
this.addModule(antiBot = new AntiBot());
this.addModule(antiShuffle = new AntiShuffle());
this.addModule(new Chams());
Expand Down Expand Up @@ -146,6 +145,7 @@ public void register() {
this.addModule(motionModifier = new MotionModifier());
this.addModule(antiVoid = new AntiVoid());
this.addModule(criticals = new Criticals());
this.addModule(timerRange = new TimerRange());
antiBot.enable();
modules.sort(Comparator.comparing(Module::getName));
}
Expand Down
94 changes: 0 additions & 94 deletions src/main/java/keystrokesmod/module/impl/combat/AntiKnockback.java

This file was deleted.

Loading

0 comments on commit 1e9a27b

Please sign in to comment.