Skip to content

ScriptAPI

A place to ask for help on writing scripts

316 Topics 2.3k Posts
  • [SUPPORT] Someone fix this script.

    3
    0 Votes
    3 Posts
    454 Views
    G
    @skidma Thanks
  • I need a criticals script for verus & ncp anticheat

    Unsolved
    3
    0 Votes
    3 Posts
    829 Views
    ?
    insane necropost
  • help me pls

    3
    0 Votes
    3 Posts
    395 Views
    CzechHekC
    @minhcrafters https://scriptapi.liquidbounce.net/net/minecraft/network/play/server/S02PacketChat.html ???
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • hi i need help

    13
    0 Votes
    13 Posts
    2k Views
    MaeyseM
    @leejames2305 Yes, there is a way to play is that the liquid's regeneration is buggy, makes the block stick Hack on crest base
  • help

    16
    0 Votes
    16 Posts
    2k Views
    6Sence6
    @senk-ju does this work on verus
  • Silent Server-side rotating and Checking for the Block beneath you

    5
    0 Votes
    5 Posts
    1k Views
    As丶OneA
    var RotationUtils = Java.type('net.ccbluex.liquidbounce.utils.RotationUtils'); var Rotation = Java.type('net.ccbluex.liquidbounce.utils.Rotation'); RotationUtils.setTargetRotation(new Rotation(mc.thePlayer.rotationYaw + 180, 86));
  • [Legendary] How to make an animation?

    6
    0 Votes
    6 Posts
    853 Views
    exit scammedE
    @skidma uh function animate(target, current, speed, partialTicks) { dif = target - current; if (speed < 0) { speed = 0; } if (speed > 1) { speed = 1; } factor = dif * speed * partialTicks; if (target > current) { current += factor; } else { current -= factor; } return current; } var shit; //...(the following lines of code will use Core) onRender2D: function(event) { shit = animate(target_here, shit, speed_here, event.getPartialTicks()); //too lazy since it's late rn }
  • How to send CustomPayload packet to the server?

    Solved
    2
    0 Votes
    2 Posts
    389 Views
    exit scammedE
    @pp021 sendPacket(new C17PacketCustomPayload(...));
  • How to use pathutils in a script?

    5
    0 Votes
    5 Posts
    832 Views
    exit scammedE
    @soulplexis do you mean importing it? if so: var PathUtils = Java.type("blah.blah.blah.PathUtils"); //where the class file is placed in
  • How is it possible to bypass this?

    6
    0 Votes
    6 Posts
    869 Views
    ForeheadchanF
    @skidma @mems said in How is it possible to bypass this?: @skidma I think that's caused when the server/anticheat makes them look like they are dead so as to "prevent" killauras from hitting them. I believe it's not bypassable. these are actually edited metadata packets and mostlikely done by the anticheat (as said in quote) OR just added by the server for some reason
  • How to possibly convert percentages to height

    10
    0 Votes
    10 Posts
    1k Views
    CzechHekC
    @skidma said in How to possibly convert percentages to height: @czechhek I need the size to work the same way as here (esp health bar)https://www.youtube.com/watch?v=Q48GHwUZh-k&ab_channel=Arithmo @czechhek said in How to possibly convert percentages to height: @skidma You just do percentage * rect height
  • how to check that mc.thePlayer has left the server (not kicked)

    14
    0 Votes
    14 Posts
    2k Views
    I
    @skidma its your fault only
  • Request

    2
    0 Votes
    2 Posts
    379 Views
    some oneS
    @imunne93 disabler for intave?
  • Add a category with scripts

    8
    0 Votes
    8 Posts
    1k Views
    FaaatPotatoF
    @aftery ty
  • help

    4
    0 Votes
    4 Posts
    520 Views
    A
    @skidma id tell you to rtfm but looks like you dno how to rtfm
  • how to get onUpdate: "mc.timer.timerSpeed" value

    3
    0 Votes
    3 Posts
    575 Views
    CzechHekC
    @dont_doubt chat.print(mc.timer.timerSpeed)
  • Adding delay between jumps

    3
    0 Votes
    3 Posts
    648 Views
    icewormy3I
    if(mc.thePlayer.ticksExisted % 20 == 0) { mc.thePlayer.jump(); } for every second that passes, you will jump 40 ticks = 2 seconds 20 ticks = 1 second 10 ticks = 0.5 seconds 5 ticks = 0.25 seconds and so on
  • help

    2
    0 Votes
    2 Posts
    278 Views
    CzechHekC
    @skidma moduleManager.getModule("AntiBot").isBot(entity);