Skip to content

ScriptAPI

A place to ask for help on writing scripts

316 Topics 2.3k Posts
  • This topic is deleted!

    4
    0 Votes
    4 Posts
    39 Views
  • This topic is deleted!

    5
    0 Votes
    5 Posts
    38 Views
  • weird outofbounds exception

    4
    0 Votes
    4 Posts
    885 Views
    TemmT
    If the Array has a Size of 107, its last valid index is 106 as arrays start at Index 0.
  • I need Hypixel's Criticals.

    Solved
    18
    0 Votes
    18 Posts
    3k Views
    notautismatallN
    @T-S I use delay -1 and doesn't get ban may tuoi gi em
  • Build Blocks silent around you

    3
    0 Votes
    3 Posts
    515 Views
    FaaatPotatoF
    // Target block private PlaceInfo placeInfo; this is what ive found for the targetblock stuff but no code where its described or im blind. How to do this in script api? Can i say the code cords like: scan where palyer is set player exact at block mid place a block at ~1 ~ ~ place a block at ~-1 ~ ~ place a block at ~ ~ ~1 place a block at ~ ~ ~-1 place a block at ~1 ~1 ~ ...
  • How to get the player looking pos?

    4
    0 Votes
    4 Posts
    883 Views
    scorpion3013S
    Just take a look at the teleport class of LiquidBounce, you should be able to find the code that gets the block you are looking at and how to determine the distance to it. By the way, if you want to teleport more than 10 blocks, you have to send several packets. https://github.com/CCBlueX/LiquidBounce/blob/master/1.8.9-Forge/src/main/java/net/ccbluex/liquidbounce/features/module/modules/exploit/Teleport.java
  • Plz help me [Civbreak]

    5
    0 Votes
    5 Posts
    876 Views
    C
    @余浩 actually by looking at the fucker's src I realized there is actually an option called instant in fucker, that should be the thing u want. It was added like 6 months ago, it should be in the current version.
  • plz help

    14
    0 Votes
    14 Posts
    2k Views
    Senk JuS
    @KnechtRobert5 This is a bug. I will try to resolve it as well. I created an issue for it: https://github.com/CCBlueX/LiquidBounce1.8-Issues/issues/3883 SenkJu created this issue in CCBlueX/LiquidBounce1.8-Issues open [BUG] Duplicate Script InventoryTabs after reloading #3883
  • plz help #2

    3
    0 Votes
    3 Posts
    643 Views
    K
    @Senk-Ju thanks
  • How do I get started with scripting?

    8
    0 Votes
    8 Posts
    1k Views
    P
    @ChocoPie_isme ty
  • This topic is deleted!

    4
    0 Votes
    4 Posts
    23 Views
  • Using snowballs and fishing rod for combo with killaura

    12
    0 Votes
    12 Posts
    2k Views
    T
    bruh.....
  • Help me change from java form to js form.

    4
    0 Votes
    4 Posts
    822 Views
    notautismatallN
    @ButterChicken said in Help me change from java form to js form.: Probably not skidded from Sigma 4.11 cracked src's Mineplex antibot
  • Help a script-noob now

    7
    0 Votes
    7 Posts
    1k Views
    bestnubB
    @Senk-Ju thx
  • This topic is deleted!

    Unsolved
    5
    0 Votes
    5 Posts
    33 Views
  • How to change the range (reach) value in Killaura with a script?

    Solved
    5
    0 Votes
    5 Posts
    971 Views
    6Sence6
    "moduleManager.getModule("killaura").getValue("range").set(newvalue)" That's what I did and I don't use core.
  • How to write how much m is the player from me?

    Solved
    5
    0 Votes
    5 Posts
    931 Views
    notautismatallN
    @ChocoPie_isme
  • 0 Votes
    1 Posts
    345 Views
    No one has replied
  • check how many blocks are in player inventory

    2
    0 Votes
    2 Posts
    487 Views
    CzechHekC
    using dyskord.cc/Core count = 0; Java.from(mc.thePlayer.inventory.mainInventory).forEach(function (s) {s && s.getItem() instanceof ItemBlock && (count += s.stackSize)}); //converts java array to js array and uses js function //for (i in mc.thePlayer.inventory.mainInventory) (stack = mc.thePlayer.inventory.mainInventory[i]) && stack.getItem() instanceof ItemBlock && (count += stack.stackSize); //alternative, cycles through java array via for function chat.print(count);
  • How to Check ThePlayer teleported?

    Unsolved
    6
    0 Votes
    6 Posts
    997 Views
    NinjaMakiN
    Record all the player's position and check it on next tick Of course if there are too many players your client will crash XD