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

  • Microsoft linking bug

    Unsolved
    2
    0 Votes
    2 Posts
    59 Views
    EclipsesDevE

    can u atleast post the error message or log? ;/

  • i try launch nextgen and yea

    Unsolved
    2
    0 Votes
    2 Posts
    66 Views
    Razzy AR

    can you send the entire log?

  • item frames problem

    Unsolved
    1
    0 Votes
    1 Posts
    25 Views
    No one has replied
  • .remoteview

    Unsolved
    1
    0 Votes
    1 Posts
    35 Views
    No one has replied
  • 0 Votes
    1 Posts
    81 Views
    No one has replied
  • [HUD] Jello HUD for LiquidBounce or FDPClient (Jello For Caff V5)

    Unsolved
    1
    0 Votes
    1 Posts
    81 Views
    No one has replied
  • KillAura & Rendering Problem

    Solved
    4
    0 Votes
    4 Posts
    203 Views
    EclipsesDevE

    @guosic Alright thanks for the help

  • missing liquid bounce directory in .mc folder??

    Unsolved
    2
    0 Votes
    2 Posts
    72 Views
    G

    @snowyv4 For me to help you, you have to tell me which version you're using, Nextgen is 1.16+, Legacy is 1.8.9.

  • 0 Votes
    1 Posts
    81 Views
    No one has replied
  • how to change this text name

    Moved
    1
    0 Votes
    1 Posts
    54 Views
    No one has replied
  • liquidlauncher not starting

    Unsolved
    4
    0 Votes
    4 Posts
    154 Views
    kawaiinekololisK

    @4gnomesinacoat

    https://forums.ccbluex.net/post/37957

    https://github.com/CCBlueX/LiquidLauncher/issues/189

    1zun4 created this issue in CCBlueX/LiquidLauncher closed Windows 7 support #189
  • This topic is deleted!

    Solved
    6
    0 Votes
    6 Posts
    91 Views
  • Forge Protect server login

    Unsolved
    5
    0 Votes
    5 Posts
    112 Views
    kawaiinekololisK

    @sasaSalvador Seems you have to register on website. Fuck this server. Turkish servers always suck lmao. Not worth for me to try it, sorry, figure it out yourself. I can't even try it because I am not able to join the server based on my region.

    Use the "Fixes" tab to toggle antiforge settings and change brand etc
    unlike me you probably can read turkish

  • LiquidBounce++

    Unsolved
    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.

  • how can i login with session ids?

    Unsolved
    2
    0 Votes
    2 Posts
    134 Views
    D

    @dillydaddiest yes it always my password is wrong???

  • Why mixins eat memory

    Unsolved
    6
    0 Votes
    6 Posts
    194 Views
    A

    @wxdbie said in Why mixins eat memory:

    @Aftery said in Why mixins eat memory:

    watch where you allocate memory

    ?

    watch where you allocate memory?

  • Please add anti spam/bot

    Unsolved
    3
    0 Votes
    3 Posts
    96 Views
    Ali00035A

    @kawaiinekololis It's been used for a while iirc.

  • Session Info

    Solved
    210
    1 Votes
    210 Posts
    8k Views
    wxdbieW

    @r-i-s-e :axocool:

  • Crash game

    9
    0 Votes
    9 Posts
    400 Views
    N

    I play WSOP. Easy to play game that gives lots of chips for bonuses. Exciting. Fun. Challenging. You can get free coins from the game reward.

  • music player script

    4
    0 Votes
    4 Posts
    309 Views
    R

    This is an independent, amateur radio-certified online radio station from the Netherlands with more than 1000 national and regional broadcasters, including Radio 538, Radio 10, Sky Radio and Veronica, RTV Rijnmond, FunX, 2FM etc.! https://radiofmluisteren.nl/