• 0 Votes
    2 Posts
    33 Views

    Should be fixed now.

  • Nuker whitelist

    Solved General
    2
    0 Votes
    2 Posts
    55 Views

    Fucker is basically Nuker, but with specific blocks. Might try this.

    .value Fucker Targets _BED
    .value Fucker Targets _ORE
    .value Fucker Targets DIAMOND_ORE, DIAMOND_BLOCK

  • 0 Votes
    6 Posts
    116 Views

    Wait... uh.. im just stupid lol

  • Unable to login

    General Discussion
    1
    0 Votes
    1 Posts
    46 Views
    No one has replied
  • LiquidBounce++

    Unsolved Support
    5
    0 Votes
    5 Posts
    897 Views

    @mems said in LiquidBounce++:

    @HasteToggled said in LiquidBounce++:

    What is LiqiudBounce++ is it some sort of addon to liquidbounce. Is it safe to download. If so whats the official website

    It's just another copy of LiquidBounce Legacy that adds a few more features.

    Just to add, LiquidBounce++ is a fork of LiquidBounce+, which is by itself a fork of the newest b73 version BEFORE cross-version was implemented.

  • 0 Votes
    5 Posts
    373 Views

    @tottynat12 Try placing an image called userbackground.png inside the LiquidBounce directory (Minecraft folder). That should disable the main menu shader. It might be incompatible with your hardware.

  • 0 Votes
    10 Posts
    725 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() {}
  • 0 Votes
    6 Posts
    373 Views

    //api_version=2
    (script = registerScript({
    name: "VerusVanillaFly",
    authors: ["SomeHax"],
    version: "1.0"
    })).import("Core.lib");

    module = {
    category: "Fun",
    values: [
    boostMode = value.createList("BoostMode", ["None", "Static", "Gradual"], "Gradual"),
    boostTicksValue = value.createInteger("BoostTicks", 20, 1, 10000),
    boostMotion = value.createFloat("BoostMotion", 9, 1, 9.87)
    ],
    onEnable: function() {
    boostTicks = 0;
    if (boostMode.get() != "None" && mc.theWorld.getCollidingBoundingBoxes(mc.thePlayer, mc.thePlayer.getEntityBoundingBox().offset(0, 3.0001, 0).expand(0, 0, 0)).isEmpty()) {
    mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY + 3.0001, mc.thePlayer.posZ, false));
    mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, false));
    mc.thePlayer.sendQueue.addToSendQueue(new C04PacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY, mc.thePlayer.posZ, true));
    }
    mc.thePlayer.setPosition(mc.thePlayer.posX, mc.thePlayer.posY + 0.42, mc.thePlayer.posZ);
    },
    onDisable: function() {
    if (boostTicks > 0) {
    mc.thePlayer.motionX = 0;
    mc.thePlayer.motionY = 0;
    mc.thePlayer.motionZ = 0;
    }
    },
    onUpdate: function() {
    mc.thePlayer.motionX = 0;
    mc.thePlayer.motionY = 0;
    mc.thePlayer.motionZ = 0;

    if (!boostTicks && mc.thePlayer.hurtTime > 0) {
    boostTicks = boostMode.get() != "None" ? boostTicksValue.get() : 0;
    }

    var motion;
    if (boostTicks > 0) {
    switch (boostMode.get()) {
    case "Static":
    motion = boostMotion.get();
    break;
    case "Gradual":
    motion = boostTicks / boostTicksValue.get() * boostMotion.get();
    break;
    }
    boostTicks--;
    } else {
    motion = 0.25;
    }

    MovementUtils.strafe(motion);
    },
    onPacket: function(event) {
    var packet = event.getPacket();
    if (packet instanceof C03PacketPlayer) {
    packet.onGround = true;
    }
    },
    onJump: function() {
    mc.thePlayer.motionX = 0;
    mc.thePlayer.motionY = 1;
    mc.thePlayer.motionZ = 0;
    }

    }

  • 0 Votes
    7 Posts
    383 Views

    @6sence Vicnix, Redesky, NCP, Mycraft, Omegacraft (Practice), etc

  • 0 Votes
    10 Posts
    1k Views

    @salvatore-sammarco type .\gradlew build

  • Change de name of the Folder.

    Requests
    10
    0 Votes
    10 Posts
    285 Views

    @sigma-bot Bruh stop with the spoilers

  • 0 Votes
    12 Posts
    561 Views

    @mac-osx Not possible

  • 0 Votes
    1 Posts
    494 Views
    No one has replied
  • 0 Votes
    5 Posts
    412 Views

    @عميل-سيجما-الله buddy your the one that wants to blow me

  • 0 Votes
    3 Posts
    282 Views

    @gabriel what does the bungeecord button do then? and do you know any 1.12.2 client with uuid spoofing?

  • my launcher isnt working

    General
    2
    0 Votes
    2 Posts
    106 Views

    @thatperson liquidlauncher is probably borkd, try vanilla

  • 0 Votes
    2 Posts
    452 Views
    No one has replied