What's New
Minecraft 1.16 support
Now targeting minecraft 1.16.1, the plugin should work with any version 1.13-1.16
Typescript exporter now supports the spigot api
- The TypeScript exporter now supports the spigot api allowing access to spigot features like the action bar api.
TypeScript Example:
import ChatMessageType from '../lib/net/md_5/bungee/api/ChatMessageType.js'; import ComponentBuilder from '../lib/net/md_5/bungee/api/chat/ComponentBuilder.js'; import SpigotChatColor from '../lib/net/md_5/bungee/api/ChatColor.js'; ... let componentBuilder = new ComponentBuilder("Hello World!!").color(SpigotChatColor.AQUA); player.spigot().sendMessage(ChatMessageType.ACTION_BAR, componentBuilder.getParts()); ...
JavaScript Engine
- Updated the JavaScript engine to the latest GeaalJS v20.1
Python Engine
- Currently disabled the python engine, will be re-enabled later on.