addon.json

As of April 3rd 2022 All addons are required to have an addon.json file in their jar file Like how plugins require a plugin.yml file in theirs

Required Keys

This file has a few required keys needed

KeyDescriptionType

name

What is the name of the addon you made?

STRING

author

Who is the author of the addon (Used for when there is only one author)

STRING

authors

Who is contributed to the development of the addon (Used for when there is more then one author)

ARRAY

version

What is the version of the addon Example: 0.1

DOUBLE

supported-build

What build of SimplePets does this addon work on? Example: SimplePets version 5.0-BUILD-160 So the build number would be 160

INT

description

Give a brief description of what the addon does, Color codes can be used in the text (This will also be displayed on the addon item)

STRING / ARRAY

Example addon.json file

{
  "name": "AwesomeAddon",
  "author": "Steve",

  "version": 0.1,
  "supported-build": 160,

  "description": [
    "&7This addon adds multiple awesome",
    "&7features in to SimplePets"
  ]
}

Last updated