Skip to content

Requests

25 Topics 56 Posts
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • Add a disabler for blocksmc so it will work and bypass anticheat

    4
    0 Votes
    4 Posts
    501 Views
    L
    it not Disabler might disable anticheat, it use to exploit anticheat, so u can cheat perfectly without being detected, but u got ban instantly because staff is too active, try cheat on some times that staff it won't active, u don't get ban instantly
  • add a grim mode is most module (check out desc for more)

    1
    0 Votes
    1 Posts
    120 Views
    No one has replied
  • Add vainminer script

    1
    0 Votes
    1 Posts
    124 Views
    No one has replied
  • Make anticheat detect better

    3
    0 Votes
    3 Posts
    308 Views
    T
    @kawaiinekololis You could make a list of servers, along with metadata (avg. players, staff activity, anti-cheats), but that seems difficult to maintain.
  • What do I need to know to write scripts for liquid bounce in java script

    Moved
    7
    0 Votes
    7 Posts
    789 Views
    djD
    @commandblock2 yup, Gemini 2.5 flash is miracle. Your project is very nice, good luck making it!
  • Add a new velocity called freeze

    1
    0 Votes
    1 Posts
    151 Views
    No one has replied
  • 0 Votes
    1 Posts
    113 Views
    No one has replied
  • New Crash Methods

    2
    0 Votes
    2 Posts
    343 Views
    kawaiinekololisK
    No. That is not how it works and no, you cannot send the JARs here.
  • Java Script Api

    6
    0 Votes
    6 Posts
    1k Views
    C
    Yes the currently script API can be sometimes very annoying to work with, like the calling a api that accepts a float with a number in js, etc. and the error usually is not very straight forward and needs a lot of experience to understand what's going on. we are still trying to improve it. At least you have https://liquidbounce.net/docs/script-api/debugging now, although you cannot create any named variable in the console. btw the docs looks much better than before.
  • Dumb question, but... (access tablist/scoreboard)

    Moved
    3
    0 Votes
    3 Posts
    550 Views
    kawaiinekololisK
    You can check here how to work with Minecraft: https://maven.fabricmc.net/docs/yarn-1.21.4+build.8/index.html Script API has access to every Class and Method that Minecraft provides, as well as the Fabric API (if installed).
  • Item spawner without creative

    Unsolved
    2
    0 Votes
    2 Posts
    340 Views
    kawaiinekololisK
    That is not possible.
  • strange operation of the NoPush module

    1
    0 Votes
    1 Posts
    195 Views
    No one has replied
  • This topic is deleted!

    2
    0 Votes
    2 Posts
    31 Views
  • Hit select module

    1
    0 Votes
    1 Posts
    177 Views
    No one has replied
  • I hope to fix the autoblock loophole issue in LiquidBounce.

    2
    0 Votes
    2 Posts
    350 Views
    C
    Hard to believe that's not a GPT written one but probably won't be able to fix what ever u say unless you give more information. By consistently you mean how much? Which server/anti cheat combination and what config are you using? There are a lot of configurable autoblock options in killaura. What client(s) are you refering as well-known hacked clients that exploit this flaw
  • Make a module that can bypass kicks/bans

    2
    0 Votes
    2 Posts
    364 Views
    kawaiinekololisK
    That is not possible.
  • Make a new sential fly anticheat

    2
    0 Votes
    2 Posts
    338 Views
    kawaiinekololisK
    You were to late to use the Mineland Fly. It was working fine but it was patched a few days after being added, you probably tried to use it when it was already patched.
  • 0 Votes
    2 Posts
    289 Views
    kawaiinekololisK
    .config list
  • who can write the script? noSlotChanger in the client LB for Nextgen

    Moved Unsolved
    7
    0 Votes
    7 Posts
    985 Views
    C
    Trying with matrix on loyisa.cn with noslow mode set to None indeed will move your slot to other items. However just like I assumed previously simply ignoring the packet just won't do, you can never eat the food, even if you immediately send back a slot change. You might need something else to make a nolow mode for matrix. If you need to verify yourself, here is your script anyway. function __require(path) { if (path.startsWith("@embedded")) { return globalThis } if (path.startsWith("@minecraft-yarn-definitions/types/")) { return { [path.substring(path.lastIndexOf("/") + 1)]: Java.type(path .replaceAll("@minecraft-yarn-definitions/types/", "") .replaceAll("/", ".") ) } } return require(path); } var exports = {} "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // imports /* eslint-disable unused-imports/no-unused-imports */ const _embedded_1 = __require("@embedded"); /* eslint-enable unused-imports/no-unused-imports */ // DO NOT TOUCH ANYTHING ABOVE THIS LINE, also not sure why it didn't work const UpdateSelectedSlotC2SPacket_1 = __require("@minecraft-yarn-definitions/types/net/minecraft/network/packet/c2s/play/UpdateSelectedSlotC2SPacket"); const UpdateSelectedSlotS2CPacket_1 = __require("@minecraft-yarn-definitions/types/net/minecraft/network/packet/s2c/play/UpdateSelectedSlotS2CPacket"); const script = _embedded_1.registerScript.apply({ name: "anti slot changing", version: "1.0.0", authors: ["commandblock2"] }); script.registerModule({ name: "anti-slot-changing", description: "like no rotate reset but for slots", category: "Exploit", settings: { resyncServerSide: _embedded_1.Setting.boolean({ name: "resync server side", default: true }) }, }, (mod) => { mod.on("packet", (event) => { var _a, _b, _c; if (event.packet instanceof UpdateSelectedSlotS2CPacket_1.UpdateSelectedSlotS2CPacket) { event.cancelEvent(); if (!mod.settings.resyncServerSide.get()) return; (_a = _embedded_1.mc.getNetworkHandler()) === null || _a === void 0 ? void 0 : _a.sendPacket(new UpdateSelectedSlotC2SPacket_1.UpdateSelectedSlotC2SPacket((_c = (_b = _embedded_1.mc.player) === null || _b === void 0 ? void 0 : _b.inventory.selectedSlot) !== null && _c !== void 0 ? _c : 0)); } }); });