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

Commit

Permalink
update const
Browse files Browse the repository at this point in the history
  • Loading branch information
xia-mc committed Jan 1, 2025
1 parent eefeaaf commit 2f51fc2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 55 deletions.
62 changes: 9 additions & 53 deletions src/main/java/keystrokesmod/Const.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,59 +9,15 @@
@Unmodifiable
public final class Const {
public static final String NAME = "Raven XD";
public static final String VERSION = "3.0";
public static final String VERSION = "3.0.1";
public static final List<String> CHANGELOG = Collections.unmodifiableList(Arrays.asList(
// Add
"[+] **Add** Optimize.",
"[+] **Add** SelfDamage.",
" - modes: Fake, GrimAC, Vanilla",
"[+] **Add** 'Hypixel' mode to Scaffold rotation.",
"[+] **Add** 'Hide rotation' to RotationHandler.",
// Recode
"[=] **Recode** rotation system (KillAura & Scaffold).",
" - Min/Max rotation speed.",
" - Min/Max rotation accuracy (test).",
" - Improved GCD.",
" - Fix rotation calc order (sometimes attack before rotate).",
" - Remove some shits.",
"[=] **Recode** HUD.",
"[=] **Recode** event system.",
"[=] **Recode** MoveableManager (HUD, TargetHUD, Watermark).",
" - now, you can drag them in chat screen.",
"[=] **Recode** Sprint.",
"[=] **Recode** InvManager (fixed bugs).",
"[=] **Recode** Trajectories.",
" - Better performance. (de-sync compute)",
"[=] **Recode** TargetStrafe.",
"[=] **Recode** MainMenu.",
" - Hover on client details to show changelog.",
// Improve
"[=] **Improve** AutoGapple (works in QuickMacro, but still bad).",
"[=] **Improve** profile system (improved autosave and autoload).",
"[=] **Improve** Hypixel Step (less flag).",
"[=] **Improve** 'Ground' mode in Hypixel Speed.",
"[=] **Improve** scaffold block search.",
"[=] **Improve** Yeet (bypass global exception handler).",
"[=] **Improve** all 'jump' call (fix double jump).",
"[=] **Improve** Performance.",
// Fix
"[=] **Fix** background render ratio on Android device.",
"[=] **Fix** AutoClicker doesn't work and hit reg.",
"[=] **Fix** sprint issue in some modules like Scaffold.",
" - even can't fix sprint, our game got flaws.",
" - hacking never stop, breaking all the laws.",
"[=] **Fix** 'Telly' schedule in Scaffold (still some bugs).",
"[=] **Fix** 'Constant' rotation in Scaffold.",
"[=] **Fix** single player broken.",
"[=] **Fix** some internal bugs.",
// Remove
"[-] **Remove** ArrayList.",
"[-] **Remove** dynamic system.",
"[-] **Remove** NoteBot.",
"[-] **Remove** 'HypixelJump3' from Scaffold sprint (i gave up).",
"[-] **Remove** splash progress.",
"[-] **Remove** polar expend scaffold (patched rn).",
"[-] **Remove** 'Test' mode from Fly.",
"[-] **Remove** some backgrounds to balance mod jar size."
"[=] **Fix** backwards scaffold rotation snap with movefix.",
"[=] **Fix** Hypixel scaffold rotation sometimes fail.",
"[=] **Fix** Trajectories sometimes fail to predict.",
"[=] **Fix** CustomFOV broken.",
"[=] **Fix** AutoPlace broken.",
"[=] **Fix** Ambience broken.",
"[=] **Fix** Chams broken.",
"[-] **Remove** AutoChest."
));
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ public HypixelRotation(String name, @NotNull Scaffold parent) {

private float applyStrafe(float yaw) {
if (parent.isDiagonal()) {
return yaw - 70;
return yaw - 75;
} else {
double offsetToMid = EnumFacing.fromAngle(yaw).getAxis() == EnumFacing.Axis.X ? Math.abs(mc.thePlayer.posZ % 1) : Math.abs(mc.thePlayer.posX % 1);
if (offsetToMid > 0.6 || offsetToMid < 0.4 || lastOffsetToMid == -1) {
lastOffsetToMid = offsetToMid;
}
return yaw + (float) (lastOffsetToMid >= 0.5 ? 70 : -70);
return yaw + (float) (lastOffsetToMid >= 0.5 ? 75 : -75);
}
}
}

0 comments on commit 2f51fc2

Please sign in to comment.