Skip to content

alfonsoLeandro/MPUtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MPUtils

Description:

MP Utils is a simple library for helping on the developing of minecraft spigot plugins. This library is thought to be expanded as I go on other projects and find new things I could add here.

Table of contents:

  1. Features
  2. Installation
  3. Usage
  4. About the author
  5. License
  6. Wiki

Features:

  • Easy creation of one-page GUIs and paginated GUIs.
  • Manage GUI interactions with a simple event.
  • Method for applying color to a string using minecraft color codes and hex RGB color codes.

Installation

Developers

Add the following maven dependency to your pom.xml file:

    <dependencies>
        <dependency>
            <groupId>com.github.alfonsoLeandro</groupId>
            <artifactId>MPUtils</artifactId>
            <version>VERSION</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

Installing locally

If you are trying to modify the library and use your modified version for developing other plugins or testing your changes, you will need to install it in your local maven repository. To do so, you can use the following maven command:

mnv install

Server owners

  1. Download the .jar file either from here or the plugin page on spigot.
  2. Put the .jar file in your plugins folder inside your server folder.
  3. Start or reload the server.

Usage

You can find this info in the wiki page. Usage

About the author

My name is Leandro Alfonso, I am 19 years old, and I live in Uruguay. I am currently a software engineering student at UCU. If you have any issues or doubts do not hesitate to contact me by the following means:

License

MIT License

Copyright (c) 2020 Leandro Alfonso

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.



For more info refer to the wiki page.