Are you interested to contribute this for LB repo?

Konoha Scarlet
Posts
-
[Kotlin] A simple path finder and executor module -
水影(Liquidbounce)被墙,大陆不使用vpn无法访问,咋解决部分地区可以直连
-
[API] TypeScript based API for nextgenGitHub 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!!
-
A Notification Theme like IntelliJ IDEA.@larissa Nice work
-
Mark scaffold panel@zoom_mod which version? 1.8.9 already has it (Mark)
-
Problem in Build LB nextGen@commandblock2 Well, now I resolved it by using the git command. now I know the necessity of the sub - repo
-
Problem in Build LB nextGenCould 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.
Code Highlight is OK
Launch config is OKI wanna know how to resolve this problem.
I download the nextGen as ZIP file and extracted it. (= skip the first step)
Then I used PowerShell and complete step 2~4 -
关于Nashorn JS引擎中Java的部分用法@as丶one said in 关于Nashorn JS引擎中Java的部分用法:
Nashorn JS 里是不是所有的结尾Object({})型参数都能写到括号外面? function呢 -
foreach@plumer-man In my understanding, it's like TPAura's route? (it also sends many C04 packets)
-
foreach@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)
-
mems help :D@tyffekz is that class actually existing?
-
foreachPlease describe your question more clearly and declare what u want
-
3 line code scaffold LOLonly runs on vanilla & singleplayer lmao
-
B73 and packet S02@faaatpotato What you need is
S02PacketChat
-
不懂就问