Your First Plugin
In this page you will learn ways of creating your first plugin
{
"name": "ExamplePluginName,
"description": "My first plugin for Tachyon!"
"authors": [
"Me",
"Myself",
"I"
],
"version": "1.0.0",
"main": "my.plugins.main.class"
}@PluginData(
name = "ExamplePlugin",
version = "1.0.0",
description = "An example plugin",
authors = {"Tachyon"}
)
public class ExamplePlugin extends Plugin {
@Override
public void onEnable() {
getLogger().info("ExamplePlugin enabled!");
}
}Last updated