itspinger / DisguiseAPI

An open-source library for changing player skins

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DisguiseAPI

Disguise is an open-source library which manipulates with player skins in Minecraft using NMS.
The standard Spigot implementation does not provide support for changing skins, so using this API you can easily control player skins.

Dependency

To install this repository, you should follow the next steps:

  1. Clone this repository: git clone https://github.com/ITSPINGER/DisguiseAPI.git
  2. Enter into the directory folder: cd DisguiseAPI
  3. Build the project using Maven: mvn clean install

After the project has finished building, you may now use the project in your projects.

Maven

<dependency>
  <groupId>net.pinger.disguise</groupId>
  <artifactId>API</artifactId>
  <version>1.2.0</version> <!-- At time of writing, 1.2.0 is the latest version. See the pom.xml for the latest version -->
  <scope>provided</scope> <!-- No need for compiling it within the jar since it is already included within the plugin -->
</dependency>

Gradle

dependencies {
    // No need for compiling it within the jar since it is already included within the plugin
    compileOnly 'net.pinger.disguise:API:1.2.0'
}

Documentation

  • Javadoc: Documentation for the current release
  • Changelog: Information about the latest updates
  • User guide: A well written user guide on how to use this library

License

License: GPL v3

Plugins

Down below plugins implementing this library will be mentioned, along with the download link. If you want your plugin to be included in this list, write me a message on Pinger#5246 (Discord)

About

An open-source library for changing player skins

License:GNU General Public License v3.0


Languages

Language:Java 100.0%