This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
Release b1.7.0
Changelog
- [+] Add LegitScaffold.
- works like SafeWalk with shift option, but more legit.
- [+] Add InfiniteAura.
- Under developing, now it doesn't bypass anti-cheat.
- [+] Improve Phase, VClip.
- add 'Cancel S06' option.
- add 'Blink' option to Phase.
- [+] Add 'Standard' & 'Intave' mode to Velocity.
- [+] Add 'Balance' mode to Timer.
- [※] Fix Velocity lobby check crash.
- [※] Improve GUI System.
- add 'Mode Setting'. click to switch to next mode, and sneak+click to switch to prev mode.
- add 'Hover color' for settings. now it will draw hover color if mouse hover on it.
- add 'visible check' for settings. now Some child settings are now only displayed when the parent setting is enabled.
- [※] Change Script System.
- now you can use 'ModeSetting' object instanced of the option 'SliderSetting'.
Like this:
now you can use 'ModeSetting':modules.registerSlider(String name, int defaultValue, String[] stringArray);
the 'ModeSetting' API is similar to the SliderSetting option mode. Meanwhile, the old SliderSetting option mode remains.modules.registerMode(String name, int defaultValue, String[] stringArray);
- now you can use 'visibleCheck' feature in script.
you just need to add aSupplier<Boolean>
parameter to the end of the original setting registration.
e.g.
it means "only visible this button if 1+1=2".modules.registerButton("aSetting", true, () -> 1 + 1 == 2);
- now you can use 'ModeSetting' object instanced of the option 'SliderSetting'.
Known issues
- BedNuker didn't break anything if your bounding box interact with the block above the bed.
- KillAura target sorts won't work.
Full Changelog: b1.6.2...b1.6.3