Scripts

Share and discover scripts for LiquidBounce

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

    15
    0 Votes
    15 Posts
    185 Views
  • TargetInfo 2.3

    10
    1 Votes
    10 Posts
    2k Views

    @CzechHek Pretty good!

  • Scaffold Speedier (Legacy)

    4
    0 Votes
    4 Posts
    460 Views

    @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
    916 Views

    @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
    675 Views

    Demo
    Razerkeyboard script demo – 00:49
    — scorpion3013

    Added the video to the main post.

  • [De3dAnge1s]SpeedMine (New ScriptsAPI)

    4
    1 Votes
    4 Posts
    479 Views

    @Kasumi_Scarlet idk

  • (Reupload) [Script] EffectHUD

    3
    0 Votes
    3 Posts
    583 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
    296 Views

    Ah, yes,
    Thanks for telling me

  • Writed casually BlockUtils.js

    4
    3 Votes
    4 Posts
    286 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.