Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

Konoha ScarletK

Konoha Scarlet

@Konoha Scarlet
About
Posts
15
Topics
2
Shares
0
Groups
0
Followers
9
Following
3

Posts

Recent Best Controversial

  • [Kotlin] A simple path finder and executor module
    Konoha ScarletK Konoha Scarlet

    Are you interested to contribute this for LB repo?

    Scripts

  • 水影(Liquidbounce)被墙,大陆不使用vpn无法访问,咋解决
    Konoha ScarletK Konoha Scarlet

    部分地区可以直连

    Chinese

  • [API] TypeScript based API for nextgen
    Konoha ScarletK Konoha Scarlet

    GitHub Usage -> README.MD

    • Automatic Completion for Beginners (though still weak up to now)
    • Let your scripts look more like Java (not so similar)

    Example (OOP style)

    import { KScript } from "./base/script"
    import { BooleanSetting, KModule, TextArraySetting, TextSetting } from "./base/module"
    
    import "./extensions/array.extensions"
    
    const mod = new KModule("AutoL", "Player", "Auto send a message when target has been dead.", "", [
        new BooleanSetting("OnlyPlayer", true),
        new TextSetting("Prefix", "@[LB]"),
        new TextArraySetting("Suffix", [
            'string 1',
            'string 2',
            'string 3',
        ])
    ])
    
    const PlayerEntity = Java.type("net.minecraft.entity.player.PlayerEntity")
    
    const debug = false
    const chat = debug ? Client.displayChatMessage : NetworkUtil.sendChatMessage
    
    let target: Entity | undefined = undefined;
    
    mod._attack = (event: { enemy: Entity }) => {
        if (event.enemy instanceof PlayerEntity || !mod.setting('OnlyPlayer')!.value) {
            target = event.enemy;
        }
    }
    
    mod._playerTick = () => {
        if (target?.isDead()) {
            // method_5477=getName
            chat(`${mod.setting('Prefix')!.getValue()} ${target.method_5477().getString()} ${mod.setting('Suffix')!.getValue().random()}`)
            target = undefined;
        }
    }
    
    new KScript("MyScript", "1.0.0", "KonohaScarlet", mod).init()
    

    Welcome to improve it together!!

    Scripts script scriptapi typescript

  • A Notification Theme like IntelliJ IDEA.
    Konoha ScarletK Konoha Scarlet

    @larissa Nice work

    Kotlin/Java

  • Mark scaffold panel
    Konoha ScarletK Konoha Scarlet

    @zoom_mod which version? 1.8.9 already has it (Mark)

    Kotlin/Java

  • Problem in Build LB nextGen
    Konoha ScarletK Konoha Scarlet

    @commandblock2 Well, now I resolved it by using the git command. now I know the necessity of the sub - repo

    Kotlin/Java

  • Problem in Build LB nextGen
    Konoha ScarletK Konoha Scarlet
    Could not determine the dependencies of task ':compileJava'.
    > Could not resolve all task dependencies for configuration ':compileClasspath'.
       > Could not resolve project :theme.
         Required by:
             project :
          > No matching configuration of project :theme was found. The consumer was configured to find an API of a library compatible with Java 17, preferably in the form of class files, preferably optimized for standard JVMs, and its dependencies declared externally, as well as attribute 'org.jetbrains.kotlin.platform.type' with value 'jvm' but:
              - None of the consumable configurations have attributes.
    
    * Try:
    > Run with --stacktrace option to get the stack trace.
    > Run with --info or --debug option to get more log output.
    > Run with --scan to get full insights.
    

    4196142b-0ed4-4c70-88ef-fbd522db0c5d-image.png

    Code Highlight is OK
    f52022c7-8198-46fa-b5e9-c8aef931c026-image.png
    Launch config is OK

    I wanna know how to resolve this problem.

    60c025d3-54ab-4c46-9697-75d5ec20dc80-image.png
    I download the nextGen as ZIP file and extracted it. (= skip the first step)
    Then I used PowerShell and complete step 2~4

    Kotlin/Java

  • 关于Nashorn JS引擎中Java的部分用法
    Konoha ScarletK Konoha Scarlet

    @as丶one said in 关于Nashorn JS引擎中Java的部分用法:
    Nashorn JS 里是不是所有的结尾Object({})型参数都能写到括号外面? function呢

    Chinese

  • foreach
    Konoha ScarletK Konoha Scarlet

    @plumer-man In my understanding, it's like TPAura's route? (it also sends many C04 packets)

    ScriptAPI

  • foreach
    Konoha ScarletK Konoha Scarlet

    @ivanovladimirs I think what you want is an A* path finder to generate an array of 3d vectors which marks the track. You can get it in many other clients' code such as Sigma(oldver)

    ScriptAPI

  • mems help :D
    Konoha ScarletK Konoha Scarlet

    @tyffekz is that class actually existing?

    Kotlin/Java

  • foreach
    Konoha ScarletK Konoha Scarlet

    Please describe your question more clearly and declare what u want

    ScriptAPI

  • 3 line code scaffold LOL
    Konoha ScarletK Konoha Scarlet

    only runs on vanilla & singleplayer lmao

    Kotlin/Java

  • B73 and packet S02
    Konoha ScarletK Konoha Scarlet

    @faaatpotato What you need is S02PacketChat

    ScriptAPI

  • 不懂就问
    Konoha ScarletK Konoha Scarlet

    @落花残云 点击下载MC1.8.8源码

    Chinese
  • Login

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups