Skip to content

ScriptAPI

A place to ask for help on writing scripts

312 Topics 2.3k Posts
  • This topic is deleted!

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

    13
    0 Votes
    13 Posts
    1k 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
    926 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
    614 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
    303 Views
    exit scammedE
    @pp021 sendPacket(new C17PacketCustomPayload(...));
  • How to use pathutils in a script?

    5
    0 Votes
    5 Posts
    569 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
    599 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
    786 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
    1k Views
    I
    @skidma its your fault only
  • Request

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

    8
    0 Votes
    8 Posts
    852 Views
    FaaatPotatoF
    @aftery ty
  • help

    4
    0 Votes
    4 Posts
    350 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
    424 Views
    CzechHekC
    @dont_doubt chat.print(mc.timer.timerSpeed)
  • Adding delay between jumps

    3
    0 Votes
    3 Posts
    508 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
    198 Views
    CzechHekC
    @skidma moduleManager.getModule("AntiBot").isBot(entity);
  • How do I play a sound from the script directory?

    2
    0 Votes
    2 Posts
    292 Views
    I
    @arcane said in How do I play a sound from the script directory?: Title says it all you cant
  • How to add Tags in Script API v2

    7
    0 Votes
    7 Posts
    880 Views
    ?
    @neverside said in How to add Tags in Script API v2: @kawaiinekololis ADMIN WOW owner actually
  • Question about adding something to my script.

    scriptapi
    3
    0 Votes
    3 Posts
    631 Views
    F
    @iulian Thanks man! You're the best
  • [REQUEST] disabler

    23
    2 Votes
    23 Posts
    5k Views
    FaaatPotatoF
    you can disable the matrix speed checks to a certain extent