Skip to content

Release V1.2.2 - Preview 1

Pre-release
Pre-release
Compare
Choose a tag to compare
@astorks astorks released this 19 Jun 23:18
· 14 commits to dev since this release
fe41ef3

What's New

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.