https://github.com/whynotmax/minestomutilities
Utils for minestom.
https://github.com/whynotmax/minestomutilities
Last synced: 10 months ago
JSON representation
Utils for minestom.
- Host: GitHub
- URL: https://github.com/whynotmax/minestomutilities
- Owner: whynotmax
- Created: 2024-06-10T09:17:40.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-06-10T10:55:57.000Z (about 2 years ago)
- Last Synced: 2025-08-19T05:03:26.479Z (10 months ago)
- Language: Java
- Size: 76.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MinestomUtilities
A collection of utilities for Minestom. This project is a work in progress and will be updated as I add more utilities.
## Utilities
* ``inventory-framework`` - A simple inventory framework for Minestom. This framework allows you to create custom inventories with ease. It also supports custom item stacks and custom item stack actions.
* ``vanilla-crafting`` - A simple crafting framework for Minestom. This framework allows you to create custom crafting recipes with ease. It also supports custom crafting recipe actions.
## Installation
To install MinestomUtilities, you can use Maven or Gradle. Here are the steps to install MinestomUtilities using Maven or Gradle.
### Maven
Add the JitPack repository to your ``pom.xml`` file:
```xml
jitpack.io
https://jitpack.io
```
Add the MinestomUtilities dependency to your ``pom.xml`` file:
```xml
com.github.whynotmax
MinestomUtilities
1.0.0
```
### Gradle
Add the JitPack repository to your ``build.gradle`` file:
```gradle
repositories {
maven { url 'https://jitpack.io' }
}
```
Add the MinestomUtilities dependency to your ``build.gradle`` file:
```gradle
dependencies {
implementation 'com.github.whynotmax:MinestomUtilities:1.0.0'
}
```
## Usage
Here is an example of how to use the inventory framework:
```java
//todo
```