Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

I

idk my name

@idk my name
About
Posts
336
Topics
23
Shares
0
Groups
0
Followers
8
Following
0

Posts

Recent Best Controversial

  • [CORE] [1.12.2] My very old useless (nowadays) packet fly for LastCraft.
    I idk my name

    https://www.youtube.com/watch?v=HQk3l6YD6VU
    A long time ago I showcased a packetfly bypass, since now it is patched and somebody may be interested in it, there you go my good bois!

    ///api_version=2
    (script = registerScript({
        name: "Flight",
        authors: ["xWhitey"],
        version: "1.337"
    })).import("Core.lib");
    
    list = [
    	resetXYZ = value.createBoolean("Reset-Motion", false),
    	packetVanillaSpeed = value.createFloat("VanillaSpeed", 2.0, 0.0, 5.0),
    	packetSpeed = value.createFloat("Speed", 0.125, 0.125, 5),	
    	packetYSpeed = value.createFloat("YSpeed", 0.125, 0.125, 5),
    	packetInstant = value.createBoolean("Instant", true),
    	packetSendAdditionalMoves = value.createBoolean("SendAdditionalMoves", true)
    ]
    
    Math.toRadians = function(degrees) {
    	return degrees * Math.PI / 180;
    };
    
    module = {
    	values: list,
        category: "Movement",
    	onDisable: function() {
    		resetXYZ.get() && (mc.thePlayer.motionX = mc.thePlayer.motionY = mc.thePlayer.motionZ = 0)
    	},
    	onUpdate: function() {
            mc.thePlayer.motionY = mc.thePlayer.motionX = mc.thePlayer.motionZ = 0;
            MovementUtils.strafe(packetVanillaSpeed.get())
    		if (packetInstant.get()) {
    			if (MovementUtils.isMoving()) {
    			    sendPacket(new CPacketPlayerPosition(mc.thePlayer.posX, mc.thePlayer.posY + 10, mc.thePlayer.posZ, mc.thePlayer.onGround));
    			}
    	    }
    		if (packetSendAdditionalMoves.get()) {
    			sendPacket(new CPacketPlayerPosition(mc.thePlayer.posX + -Math.sin(MovementUtils.getDirection()) * packetSpeed.get(), mc.thePlayer.posY, mc.thePlayer.posZ + Math.cos(MovementUtils.getDirection()) * packetSpeed.get(), mc.thePlayer.onGround));
    		}
    	},
    	onJump: function(e) {
    		e.cancelEvent()
    	},
    	onPacket: function(e) {
    		if (mc.thePlayer && e.getPacket() instanceof CPacketPlayer) {
    			if (MovementUtils.isMoving()) {
    			    e.getPacket().x += -Math.sin(MovementUtils.getDirection()) * packetSpeed.get();
    			    e.getPacket().z += Math.cos(MovementUtils.getDirection()) * packetSpeed.get();
    			}
    			e.getPacket().y += 0.125;
    			if (mc.gameSettings.keyBindJump.pressed) {
    			    e.getPacket().y += packetYSpeed.get();
    			}
    			if (mc.gameSettings.keyBindSneak.pressed) {
    			    e.getPacket().y -= packetYSpeed.get();
    			}
    		}
    	}
    	
    }
    
    CPacketPlayerPosition = Java.type("net.minecraft.network.play.client.CPacketPlayer.Position");
    
    Off-Topic

  • [TUTORIAL] How to deobfuscate (most) scripts on this forum
    I idk my name

    @Aftery XD
    can you try deobfuscating it?

    ScriptAPI

  • Can someone help me which font on arraylist is that?
    I idk my name

    Product Sans from Google, I also used it.

    General

  • LiquidBounce++
    I idk my name

    @HasteToggled for (int LiquidBounce = 0; LiquidBounce < LiquidBounce + 1; LiquidBounce++);

    Support liquidlauncher hack help

  • Scripts in 1.12.2 do not work
    I idk my name

    @puffffffs As I can see, your message has been translated from Russian language so on.
    Don't use LiquidBounce 1.12.2 (or 1.8.9 even!!!). The whole legacy branch is outdated & abandoned

    Bug Reports

  • Baritone help
    I idk my name

    @ali00035 Took some time to take these screenshots (btw nametags are from earthhack client) 2022-09-15_21.54.05.png 2022-09-15_21.51.02.png 2022-09-15_21.50.57.png

    General

  • Baritone help
    I idk my name

    @ali00035 lambda is a continuation for kami blue. Kami blue had baritone so lambda has it.

    General

  • Baritone help
    I idk my name

    @ali00035 impact is also incompatible for me, any other client works for me (together with lb)

    General

  • Baritone help
    I idk my name

    @ali00035 For sure, but I haven't modified any mixin. Just added useful modules.

    General

  • Baritone help
    I idk my name

    @ali00035 uh oh am i wrong or every mod from my mods directory works with liquidbounce (even baritone lol) 0f3da8fb-961f-412a-9d5e-cbc5ec6308ca-изображение.png

    General

  • [CORE] Subscribing to Forge events.
    I idk my name

    1.8.9 version (?):

    
    function register(eventClass, listener) {
        //we are making reflected event bus to access private fields & methods
        adaptedBus = new Reflector(MinecraftForge.EVENT_BUS);
    
        //getting an actual mod container (it seems that activeModContainer() returns null in LiquidBounce so we are checking for null & redefining to minecraft mod container)
        activeModContainer = Loader.instance().activeModContainer();
        !activeModContainer && (activeModContainer = Loader.instance().getMinecraftModContainer());
    
        //https://github.com/MinecraftForge/MinecraftForge/blob/d06e0ad71b8471923cc809dde58251de8299a143/src/main/java/net/minecraftforge/fml/common/eventhandler/EventBus.java#L58
        adaptedBus.listenerOwners.put(listener, activeModContainer);
    
        ctr = eventClass.getConstructor();
        ctr.setAccessible(true);
    
        EVENT = ctr.newInstance();
    
        //don't remove this line because event won't call without it
        asm = new ASMEventHandler(listener, getMethod(listener, "invoke"), activeModContainer);
    
        //registering a new listener
        EVENT.getListenerList().register(adaptedBus.busID, EventPriority.NORMAL, listener);
    
        others = adaptedBus.listeners.get(listener);
        if (!others) {
            others = new ArrayList();
            adaptedBus.listeners.put(listener, others);
        }
        others.add(asm)
    }
    
    ScriptAPI
  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups