Requests

426 Topics 3.2k Posts
  • This topic is deleted!

    3
    0 Votes
    3 Posts
    55 Views
  • i need Astolfo target hud and sigma clickgui

    2
    0 Votes
    2 Posts
    257 Views

    @kulovhax
    astolfo targethud: https://forums.ccbluex.net/post/27243
    sigma clickgui: doesnt exist

  • Velocity with nomovestop strafe mode

    6
    1 Votes
    6 Posts
    219 Views
    onUpdate() { if(mc.thePlayer.hurtTime != 0) { mc.thePlayer.motionX = mc.thePlayer.motionY = mc.thePlayer.motionZ = 0 } }
  • 0 Votes
    35 Posts
    1k Views
  • Request

    3
    0 Votes
    3 Posts
    138 Views
  • 0 Votes
    3 Posts
    125 Views

    @te-peguei You would have to modify the notification code

  • need a custommessage js

    2
    0 Votes
    2 Posts
    123 Views

    @likerino

    /// api_version=2 var script = registerScript({ name: "CommandSpammer", version: "1.0.0", authors: ["Ali00035"] }); var LiquidBounce = Java.type("net.ccbluex.liquidbounce.LiquidBounce"); var MSTimer = Java.type("net.ccbluex.liquidbounce.utils.timer.MSTimer"); var Timer = new MSTimer(); script.registerModule({ name: "CommandSpammer", description: "", category: "Misc", settings: { Integer: Setting.integer({ name: "Delay", default: 1000, min: 0, max: 10000 }), Text: Setting.text({ name: "Command", default: "help" }) } }, function (module) { module.on("update", function() { if (Timer.hasTimePassed(module.settings.Integer.get())) { LiquidBounce.commandManager.executeCommands(module.settings.Text.get()); Timer.reset(); } }); });
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • I have a question

    1
    0 Votes
    1 Posts
    81 Views
    No one has replied
  • Vulcan fly

    2
    0 Votes
    2 Posts
    321 Views

    @hope2full give me pls scripty

  • Is there a way to make LiquidBounce b72...

    5
    0 Votes
    5 Posts
    218 Views

    @ali00035 I use it because I have a Custom Build based on b72 😞 and the Autosoup in b73 is bugged

  • Fight bot

    1
    0 Votes
    1 Posts
    102 Views
    No one has replied
  • fuky land fly pee

    13
    0 Votes
    13 Posts
    316 Views
  • Pls velocity for intave

    5
    0 Votes
    5 Posts
    361 Views

    @sugarafk Good 🙂

  • 0 Votes
    13 Posts
    505 Views

    @sugarafk WOOOW

  • 3 Votes
    11 Posts
    246 Views

    @sugarafk :axohyperdab:

  • anti-cheat detector

    Moved
    14
    0 Votes
    14 Posts
    581 Views

    Cause the original posters have either solved their problem or dont need an answer to it anymore.

  • 6 Votes
    23 Posts
    798 Views

    @sugarafk maybe I should use it

  • [request] scaffold helper

    11
    0 Votes
    11 Posts
    315 Views
  • 0 Votes
    10 Posts
    724 Views

    @somehax ```
    /// api_version=2
    var safewalkModule = moduleManager.getModule("Safewalk");
    var timerModule = moduleManager.getModule("Timer");
    var script = registerScript({
    name: "FlyNew",
    version: "1.0.0",
    authors: ["GLOBALBOSS&JustNanix&Caxap"]
    });

    script.registerModule({
    name: "FlyNew",
    category: "Fun",
    description: "Moded GLOBALBOSS",
    settings: {
    damagePos: Setting.float({
    name: "DamagePosition",
    min: 0,
    max: 400,
    default: 200
    }),
    flySpeed: Setting.float({
    name: "FlySpeed",
    min: 0.20,
    max: 0.30,
    default: 0.22
    }),
    glide: Setting.float({
    name: "Glide",
    min: 0.00,
    max: 0.05,
    default: 0.010
    })
    }
    }, function(module) {
    var delay = 0;
    var enable = true;
    var flyspeed = module.settings.flySpeed.get();
    module.on("update", function() {
    if (mc.thePlayer.onGround) {
    safewalkModule.setState(true)
    }
    if (!mc.thePlayer.onGround) {
    if (enable) {
    timerModule.setState(true)
    mc.thePlayer.setPosition(mc.thePlayer.posX, module.settings.damagePos.get() - module.settings.damagePos.get() * 2, mc.thePlayer.posZ);
    enable = false;
    }
    if (mc.thePlayer.getHealth() <= 19) {
    mc.thePlayer.onGround = false;
    mc.thePlayer.capabilities.setFlySpeed(module.settings.flySpeed.get() / 2);
    mc.thePlayer.motionY = module.settings.glide.get() - module.settings.glide.get() * 2;
    mc.thePlayer.capabilities.isFlying = true;
    } else {
    mc.thePlayer.setPosition(mc.thePlayer.posX, module.settings.damagePos.get() - module.settings.damagePos.get() * 2, mc.thePlayer.posZ);
    }
    }
    });
    module.on("enable", function() {
    enable = true;
    });
    module.on("disable", function() {
    mc.thePlayer.capabilities.isFlying = false;
    safewalkModule.setState(false)
    timerModule.setState(false)
    });
    });

    function onLoad() {}