Skip to main content

Creating a plugin

The first step to creating a plugin is to create a new directory. The directory name will represent the ID of your plugin.

For this example, we will be creating a plugin named my-plugin.

Start by creating a directory named my-plugin. Then create a file named manifest.json inside the directory you just created. This file contains information about your plugin, like the full name and authors.

my-plugin/manifest.json
{
"id": "my-plugin",
"name": "My Plugin",
"version": "1",
"description": "Adds new furniture.",
"authors": [
"SandroHc <me@sandro.dev>"
],
"link": "https://discord.gg/changeme"
}

Finally, zip the contents of the directory into a file and change the extension to .neo, e.g. my-plugin.neo.