denizen-reflect
Adds direct Java support to Denizen scripts.
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
denizen-reflect
denizen-reflect is an add-on for experienced scripters designed to combine the capabilities of Java directly within the Denizen development environment.
Supported Platforms
---
Features
* 🔹 Importing classes * 🔹 Executing Java code (methods, fields, constructors) * 🔹 Creating your own placeholders (PlaceholderAPI) * 🔹 Creating custom Denizen commands & tags * 🔹 Renaming Denizen events * 🔹 Creating proxies * 🔹 Lambda expressions support * 🔹 And much more...
Example Usage
```yaml import: java.lang.System as test java.lang.String
task: type: task script: - define def <invoke[new String("123")]> - invoke player.sendMessage("321") - invoke test.out.println(def) ```