Skip to content
  • Help me please.

    General Discussion
    2
    0 Votes
    2 Posts
    31 Views
    kawaiinekololisK
    With Fucker module
  • 0 Votes
    4 Posts
    64 Views
    inkobeeI
    Never mind, I found the problem, Sodium's cloud rendering was interfering with Iris.
  • How do you reset a module

    Unsolved General
    1
    0 Votes
    1 Posts
    73 Views
    No one has replied
  • 0 Votes
    2 Posts
    153 Views
    kawaiinekololisK
    Should be fixed now.
  • Nuker whitelist

    Solved General
    2
    0 Votes
    2 Posts
    230 Views
    kawaiinekololisK
    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
  • Disconnected when using Proxy

    Solved General
    6
    0 Votes
    6 Posts
    278 Views
    Brei LiteraturB
    Wait... uh.. im just stupid lol
  • Unable to login

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

    Unsolved Support
    5
    0 Votes
    5 Posts
    1k Views
    G
    @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.
  • LiquidBouce blank screen

    Unsolved General
    5
    0 Votes
    5 Posts
    589 Views
    Senk JuS
    @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.
  • [REQUEST] vanilla damage fly script

    Requests
    10
    0 Votes
    10 Posts
    934 Views
    SugarAFKS
    @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() {}
  • I need help on a fly script

    Unsolved ScriptAPI
    6
    0 Votes
    6 Posts
    541 Views
    DreamWasFuckedD
    //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; } }
  • How do i make a script into a script/config?

    Configs
    7
    0 Votes
    7 Posts
    551 Views
    G
    @6sence Vicnix, Redesky, NCP, Mycraft, Omegacraft (Practice), etc
  • how do I make my own custom liquidbounce

    Unsolved General
    10
    0 Votes
    10 Posts
    2k Views
    suicidemouse33S
    @salvatore-sammarco type .\gradlew build
  • Change de name of the Folder.

    Requests
    10
    0 Votes
    10 Posts
    449 Views
    Plumer ManP
    @sigma-bot Bruh stop with the spoilers
  • Take no damage when using KillAura

    Unsolved General Discussion
    12
    0 Votes
    12 Posts
    851 Views
    brB
    @mac-osx Not possible
  • 0 Votes
    5 Posts
    615 Views
    Joe PapaJ
    @عميل-سيجما-الله buddy your the one that wants to blow me
  • how to set uuid

    General
    3
    0 Votes
    3 Posts
    520 Views
    kikiokolK
    @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
    207 Views
    C
    @thatperson liquidlauncher is probably borkd, try vanilla