🖥️Developers
How to include in your project: WIP: NOT WORKING CURRENTLY
Add this to repositories:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>And this to dependencies:
<dependency>
<groupId>com.github.Bounser</groupId>
<artifactId>Nascraft</artifactId>
<version>version</version>
</dependency>Replace version with the most recent release, at the time of writing this, 1.6.6
Add it in your root build.gradle at the end of repositories:
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
}Add the dependency
dependencies {
implementation 'com.github.Bounser:Nascraft:version'
}Replace version with the most recent release, at the time of writing this, 1.6.6
Page under construction.
Using it:
Events:
BuyItemEvent
SellItemEvent
TransactionCompletedEvent
MarketManager:
Last updated