Skip to content

Support

Stuck? Just ask for help!

1.5k Topics 8.7k Posts

Subcategories


  • A place to ask for general support

    753 Topics
    4k Posts
    AjaxA

    Bumping this, since I'm also looking for it

  • A place to ask for help on writing scripts

    305 Topics
    2k Posts
    A

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

    // Indstillinger for KillAura
    const rangeValue = value.createFloat("Range", 4.0, 3.0, 6.0);
    const cpsValue = value.createInteger("CPS", 10, 1, 20);
    const rotationSpeedValue = value.createList("RotationSpeed", ["Slow", "Medium", "Fast"], "Medium");

    // Mål liste
    const targetList = [];
    let isEnabled = false;

    // Opdatering af mållisten
    function updateTargetList(name, action) {
    if (action === "add" && !targetList.includes(name)) {
    targetList.push(name);
    Client.displayChatMessage(§aAdded ${name} to target list.);
    } else if (action === "remove") {
    const index = targetList.indexOf(name);
    if (index > -1) {
    targetList.splice(index, 1);
    Client.displayChatMessage(§cRemoved ${name} from target list.);
    }
    }
    }

    // Registrer kommandoer
    script.registerCommand({
    name: ".vk",
    description: "Manage KillAura target list.",
    hub: true,
    subcommands: [
    {
    name: "add",
    parameters: [{ name: "name", required: true }],
    onExecute(name) {
    updateTargetList(name, "add");
    }
    },
    {
    name: "remove",
    parameters: [{ name: "name", required: true }],
    onExecute(name) {
    updateTargetList(name, "remove");
    }
    },
    {
    name: "list",
    onExecute() {
    if (targetList.length === 0) {
    Client.displayChatMessage("§eTarget list is empty.");
    } else {
    Client.displayChatMessage("§eTargets: " + targetList.join(", "));
    }
    }
    },
    {
    name: "toggle",
    onExecute() {
    isEnabled = !isEnabled;
    Client.displayChatMessage(§eKillAura is now ${isEnabled ? "enabled" : "disabled"}.);
    }
    }
    ]
    });

    // Hent mål inden for rækkevidde
    function getTargetsInRange(range) {
    const targets = [];
    for (const entity of mc.theWorld.loadedEntityList) {
    if (entity !== mc.thePlayer && entity.getDistanceToEntity(mc.thePlayer) <= range) {
    targets.push(entity);
    }
    }
    return targets;
    }

    // Angrebsmål
    function attackTarget(target) {
    if (targetList.includes(target.getName())) {
    mc.thePlayer.swingItem();
    mc.playerController.attackEntity(mc.thePlayer, target);
    }
    }

    // Opdatering af angreb
    script.on("update", () => {
    if (!isEnabled) return;

    const targets = getTargetsInRange(rangeValue.get()); for (const target of targets) { attackTarget(target); sleep(1000 / cpsValue.get()); // CPS }

    });

    // Aktiver modulet
    script.on("enable", () => {
    Client.displayChatMessage("§eVKKILLAURA module enabled.");
    });

    // Deaktiver modulet
    script.on("disable", () => {
    isEnabled = false;
    targetList.length = 0; // Rydder mål listen
    Client.displayChatMessage("§eVKKILLAURA module disabled.");
    });

    This dose not work at all, i made it with chatgpt and i have no coding experience, what i want it to do is to make killaura target the players on the list i can interact with the list with these commands:
    .vka -active/deactivate
    .vk "Name" -adds a player
    .vkf "name" -removes a player
    .vkl -shows the list

    I hope that someone can help me fix the script so that i can target the players i want- Thanks!

  • 338 Topics
    2k Posts
    余浩

    OpenProtocol-master.zip 26b514384995b6836a153ed26611298c.png

  • How do I use custom HUD files/scripts?

    Solved
    3
    0 Votes
    3 Posts
    224 Views
    ?

    replace old hud.json file to the new hud.json file, then reload

  • Can't Login to mojang account on LiquidLauncher

    Solved
    2
    0 Votes
    2 Posts
    101 Views
    C

    you have to put in your email not your username

  • I need scripts!!

    Unsolved
    13
    0 Votes
    13 Posts
    492 Views
    nofile pictureN

    ghost client users are dicks

  • This topic is deleted!

    Solved
    4
    0 Votes
    4 Posts
    57 Views
  • LiquidLauncher

    Unsolved
    3
    0 Votes
    3 Posts
    154 Views
    Senk JuS

    We are currently working on a new launcher that will support nightly builds as well.

  • I cant do anything help

    Unsolved
    7
    0 Votes
    7 Posts
    128 Views
    M

    @shizvne Please set timer higher than 0, like 0.1 or something. Timer value at 0 freezes the game.

  • Liquid bounce not launcher

    Unsolved
    2
    0 Votes
    2 Posts
    208 Views
    C

    @externall that's not matter
    if it's unlaunchable maybe caused by other problems

  • how do i load configs in liquidbounce 1.8.9

    12
    0 Votes
    12 Posts
    3k Views
    Senk JuS

    @c69_amg Both should be working. If it doesn't, that would be a bug.

  • Killaura scaffold

    5
    0 Votes
    5 Posts
    267 Views
    C

    @quadro

    if(ScaffoldModule.getState()) { if (KillAura.getState()) { NeedSwitch = true; KillAura.setState(false); } } else if (NeedSwitch) { NeedSwitch=false; KillAura.setState(true); }

    Fixed

  • Liquid Bounce Features.

    4
    1 Votes
    4 Posts
    265 Views
    OoookkkkO

    @mems Yeah im talking about liquid bounce b73, can u explain how i can do this?

  • what does the modules in killaura mean??

    2
    0 Votes
    2 Posts
    105 Views
    DreamWasFuckedD

    @bitchguy0914 kill

  • How do I get chest in blockesp?

    3
    0 Votes
    3 Posts
    99 Views
    Q

    1b4cec37-d449-4d80-9ada-14d54e6b9933-image.png

  • This topic is deleted!

    3
    0 Votes
    3 Posts
    109 Views
  • Help:p

    4
    0 Votes
    4 Posts
    96 Views
    WissoW

    @skiddermaster412 read what i said " btw i am stupido "

  • support

    3
    0 Votes
    3 Posts
    109 Views
    M

    @leejames2305 thx

  • Uninstall Liquid bounce.

    5
    0 Votes
    5 Posts
    808 Views
    A

    @mlggaming once you install liquidbounce you never uninstall liquidbounce

  • how do i log into my minecraft account in liquid bounce

    3
    0 Votes
    3 Posts
    105 Views
    カカロットファイナル月日天翔

    there is no error message it just doesnt work i click the button and nothing happens

  • Any tutorial on how to compile nextgen LiquidBounce?

    10
    0 Votes
    10 Posts
    835 Views
    M

    Well, these are the steps to install LiquidBounce 1.16.5:

    LiquidBounce itself. Put that file to mods. Fabric Kotlin Language. Put that file to mods aswell. Fabric loader for 1.16.5. You run that file as it is for installing purposes, and just hit next all the way during installation. Load your Minecraft launcher, select fabric-loader-0.11.1-1.16.5 and run the game. Profit, I guess.

    EDIT: And for click GUI, just type .bind clickgui <akeythatyoupreferhere>. Trust me, there is nothing good to see for now.

  • liquid launcher file location help pls

    2
    0 Votes
    2 Posts
    126 Views
    ?

    don't use liquidlauncher

  • Who has a hypixel disabler

    6
    0 Votes
    6 Posts
    519 Views
    R

    @6sence If its not working for you must of been patched, haven't checked in a week