Skip to content

Scripts

Share and discover scripts for LiquidBounce

1.0k Topics 9.1k Posts
  • This topic is deleted!

    8
    0 Votes
    8 Posts
    20 Views
  • [Script] AutoLogin 1.0

    7
    1 Votes
    7 Posts
    566 Views
    NinjaMakiN

    CookieChinese has already made it bro, her script's name is AutoMessage

  • Radius-Antibot-Script for Jartex/Matrix/Other

    20
    0 Votes
    20 Posts
    2k Views
    bestnubB

    @CzechHek oh i didn't notice it. One-Line-Coding-Style is not my favorite

  • This topic is deleted!

    15
    0 Votes
    15 Posts
    185 Views
  • TargetInfo 2.3

    10
    1 Votes
    10 Posts
    2k Views
    ?

    @CzechHek Pretty good!

  • 1 Votes
    7 Posts
    761 Views
    Senk JuS

    @CzechHek We do that in b73: https://github.com/CCBlueX/LiquidBounce/blob/master/1.8.9-Forge/src/main/java/net/ccbluex/liquidbounce/script/Script.kt#L126

  • Scaffold Speedier (Legacy)

    4
    0 Votes
    4 Posts
    461 Views
    ChocoPie_ismeC

    @Spoiler said in Scaffold Speedier (Legacy):

    for be cool like another forum users.

    im not cool

  • Re uploading scripts to avoid getting deleted.

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

    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • [Script]CloudConfig

    1
    0 Votes
    1 Posts
    288 Views
    No one has replied
  • HackerSpoofer 1.3

    11
    1 Votes
    11 Posts
    947 Views
    M

    @CzechHek, that's great i guess, i must try it on a server called jartex network, because before that update, when i was toggling the "specificplayer" mode, the npc was the only one hitting and looking.

  • RazerKeyboard Script

    8
    0 Votes
    8 Posts
    682 Views
    scorpion3013S

    Demo
    Razerkeyboard script demo – 00:49
    — scorpion3013

    Added the video to the main post.

  • [De3dAnge1s]SpeedMine (New ScriptsAPI)

    4
    1 Votes
    4 Posts
    481 Views
    De3dAnge1sD

    @Kasumi_Scarlet idk

  • (Reupload) [Script] EffectHUD

    3
    0 Votes
    3 Posts
    584 Views
    ?

    I18n.format is not necessary...
    and if a variable is null, then it instanceof MyClass is always false.

    if(potioneffect.getAmplifier() == 0) s1 = s1 + " I"; else if (potioneffect.getAmplifier() == 1) s1 = s1 + " II"; else if (potioneffect.getAmplifier() == 2) s1 = s1 + " III"; else if (potioneffect.getAmplifier() == 3) s1 = s1 + " IV"; else if (potioneffect.getAmplifier() == 4) s1 = s1 + " V"; else if (potioneffect.getAmplifier() == 5) s1 = s1 + " VI"; else if (potioneffect.getAmplifier() == 6) s1 = s1 + " VII"; else if (potioneffect.getAmplifier() == 7) s1 = s1 + " VIII"; else if (potioneffect.getAmplifier() == 8) s1 = s1 + " IX"; else if (potioneffect.getAmplifier() == 9) s1 = s1 + " X"; else if (potioneffect.getAmplifier() >= 10) s1 = s1 + " X+"; else s1 = s1 + "¿";

    in this part I think it's better to use switch

  • TimeChanger re-upload

    3
    0 Votes
    3 Posts
    297 Views
    AzureA

    Ah, yes,
    Thanks for telling me

  • Writed casually BlockUtils.js

    4
    3 Votes
    4 Posts
    290 Views
    ?

    Some explanation of code

    Following code in JavaScript equals number > 0 ? Math.floor(number) : Math.ceil(number)

    number |= 0 ~~number

    But according to my test, ~~x is much faster than Math.floor(x) for random positive double value. So you can use bit operation instead of Math.floor(x) and parseInt(x)

    if (block != null) blocks.set(blockPos, block); can be simplified to if (block) blocks.set(blockPos, block); or just block && blocks.set(blockPos, block);
    Because null in JavaScript is considered as false value, and && operator will not do things after it if things before it is a false value.