Skip to content

Release b1.7.0

Compare
Choose a tag to compare
@xia-mc xia-mc released this 29 Jun 04:14
· 294 commits to master since this release

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:
    modules.registerSlider(String name, int defaultValue, String[] stringArray);
    now you can use 'ModeSetting':
    modules.registerMode(String name, int defaultValue, String[] stringArray);
    the 'ModeSetting' API is similar to the SliderSetting option mode. Meanwhile, the old SliderSetting option mode remains.
    • now you can use 'visibleCheck' feature in script.
      you just need to add a Supplier<Boolean> parameter to the end of the original setting registration.
      e.g.
    modules.registerButton("aSetting", true, () -> 1 + 1 == 2);
    it means "only visible this button if 1+1=2".

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