πAPI Access
LightCoins comes with a comprehensive API that you can access.
Use LightCoins as a maven dependency
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.lightPlugins</groupId>
<artifactId>lightCcins</artifactId>
<!-- Make sure you are using the latest version! -->
<version>CurrentVersion</version>
<scope>provided</scope>
</dependency>Use LightCoins as a gradle dependency
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.lightPlugins:lightCoins:Tag'
}Some examples of how to use the API
Custom Events
Last updated