Miyuki Nozomi /
JavaScript scripting for Minecraft Bukkit based servers (with support for TypeScript)
A easy way of making mods for minecraft servers.
You should have a descent knowledge of JavaScript or TypeScript in order to develop plugins under Lycorine, unless you're simply a server owner trying to install some third-party JS plugins (If this is the case, test the plugin in a safe environment and have backups to ensure the script you're installing is safe. As Lycorine Scripts have the same permission level as the other Java plugins you might have in your server.
Right now, tested minecraft versions are 1.18 to 1.21. Therefore setup a bukkit-based minecraft server in one of these versions.
If you need to use Lycorine in an earlier version- feel free to, and make sure to report any problems you find with the older versions
on my email at miyuki@takina.jp.net
Paste the plugin's jar file into your plugins folder, and the instalation will be completed after you either restart your server, or load the plugin through a plugin manager plugin.
Here's a very basic explanation of what happens during server startup:
- A directory named LycorineScriptAPI
will be created inside of the plugins folder if it does not exist.
- A file named lycorine.d.ts
will be generated in that directory (no matter if it already exists or not).
- Folders data
and scripts
will be created if does not exist inside of LycorineScriptAPI
.
If you have knowledge on TypeScript, you might have already noticed this file refers to TypeScript bindings for your scripts. If you do end up using TypeScript in your scripts, ensure to have these settings in your tsconfig.json:
{
"moduleResolution": "classic",
"module": "None",
"target": "ES2015",
}
This article is located at CODING_GUIDE.md.
Right now there is no proper module support, I do plan on supporting CommonJS modules in the future, but for now you'll have to stick with single-file scripts.
No, and this is server side code- you shouldn't even be thinking of async in the first place.
However, in a next release of Lycorine I'll provide implementations for setInterval
and clearTimeout
in case someone ends up needing a degree of "asynchronality".
But don't expect proper async support anytime soon unless there's a really good reason for me to implement proper async in.
If this is the case (and most likely is-) consider sending me an E-Mail at miyuki@takina.jp.net
detailing the APIs that are missing, and what functionality should be expected.
The Minecraft API is huge, and every time I touch this project I try to port as much as possible.
This is because Bukkit does not have an API to remove commands, I have to register commands as a wrapper object that actually invokes your JS function stored in another object.
This is why you can still change and create commands after editing a script and running /lycorine reload
.
If you want to know how this wrapper object works, see JSCommand.java
1 | |
2 | |
3 | |
4 | |
5 | |
6 | |
7 | |
8 | |
9 | |
10 | |
11 | |
12 | |
13 | |
14 | |
15 | |
16 | |
17 | |
18 | |
19 | |
20 | |
21 | |
22 | |
23 | |
24 | |
25 | |
26 | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 | |
33 | |
34 | |
35 | |
36 | |
37 | |
38 | |
39 | |
40 | |
41 | |
42 | |
43 | |
44 | |
45 | |
46 | |
47 | |
48 | |
49 | |
50 | |
51 | |
52 | |
53 | |
54 | |
55 | |
56 | |
57 | |
58 | |
59 | |
60 | |
61 | |