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

IgniteTNTI

IgniteTNT

@IgniteTNT
About
Posts
11
Topics
4
Shares
0
Groups
0
Followers
1
Following
0

Posts

Recent Best Controversial

  • Dumb question, but... (access tablist/scoreboard)
    IgniteTNTI IgniteTNT

    Does anyone know how to access the scoreboard or the tablist in Liquidbounce Nextgen's scripts? I was trying to find out today so I could do some stuff with them, but I couldn't figure it out.

    Requests

  • AutoPotion
    IgniteTNTI IgniteTNT

    Dam the more you know lol, guess you gotta do it yourself rn 🙂

    Bug Reports

  • cant join a server after crashing it (idk if thats the reason but it was up again)
    IgniteTNTI IgniteTNT

    Seems to be a problem with via version 🙂

    General

  • AutoPotion
    IgniteTNTI IgniteTNT

    Change config? Believe there is an option for it to throw a fire resistance potion.

    Bug Reports

  • Help With Fixing Code
    IgniteTNTI IgniteTNT

    It doesn't seem to like mc.gameSettings.keyBindSneak.pressed works, weird.

    ScriptAPI

  • Sneak Packet
    IgniteTNTI IgniteTNT

    I know this sounds rather dumb that I don't know this, but how do you send out a packet onto the server (like sending a sneak packet to spoof that you sneaked for 1 tick in the server's eyes). Liquidbounce nextgen, not legacy

    ScriptAPI

  • Help With Fixing Code
    IgniteTNTI IgniteTNT

    What is the syntax for tick events?

    ScriptAPI

  • Help With Fixing Code
    IgniteTNTI IgniteTNT

    Still doesn't work, thank you for attempting it though!

    ScriptAPI

  • Help With Fixing Code
    IgniteTNTI IgniteTNT

    Thank you!

    ScriptAPI

  • Help With Liquidbounce Nextgen ScriptingAPI
    IgniteTNTI IgniteTNT

    My stuff is gone now?

    ScriptAPI

  • Help With Fixing Code
    IgniteTNTI IgniteTNT

    Can Somebody Help Me To Get The Code Down Below To Work? I Am Slightly Confused On This Scripting API.

    const script = registerScript({
        name: "AntiVulcanLimit",
        version: "1.0.0",
        authors: ["IgniteTNT"]
    });
    
    var sneakCooldown = 200; // Cooldown in milliseconds 
    
    script.registerModule({
        name: "VulcanLimit",
        category: "Misc", // Movement, Combat, Renderr, ...
        description: "Bypass Vulcan's Limit Check When Scaffolding"
    }, (mod) => {
        mod.on("enable", () => {
            Client.displayChatMessage("§aEnabled AntiVulcanLimit :)");
            mc.gameSettings.keyBindSneak.pressed = true;
            setTimeout(function() {
                mc.gameSettings.keyBindSneak.pressed = false;
            }, sneakCooldown);
        });
    
        mod.on("disable", () => {
            Client.displayChatMessage("§aDisabled AntiVulcanLimit :(");
        });
        
        this.onGround = function(event) {
            mc.gameSettings.keyBindSneak.pressed = true;
            setTimeout(function() {
                mc.gameSettings.keyBindSneak.pressed = false;
            }, sneakCooldown);
        }
    });
    
    
    
    ScriptAPI
  • Login

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