An AFK plugin for 1.18 minecraft, provides an API to allow other plugins to listen for AFK events
To download the plugin go to releases
Replace VERSION
with the latest version (see badges at the top of the README)
Gradle:
repositories {
maven {
url = 'https://repo.polarian.dev/repo'
}
maven {
name = 'papermc-repo'
url = 'https://papermc.io/repo/repository/maven-public/'
}
}
dependencies {
compileOnly 'xyz.crafttogether:weg:VERSION'
compileOnly 'io.papermc.paper:paper-api:1.18.1-R0.1-SNAPSHOT'
}
Maven:
<repository>
<repository>
<id>papermc-repo</id>
<url>https://papermc.io/repo/repository/maven-public/</url>
</repository>
<repository>
<id>polarian-repo</id>
<url>https://repo.polarian.dev/repo</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>xyz.crafttogether</groupId>
<artifactId>weg</artifactId>
<version>VERSION</version>
<scope>provided</scope>
</dependency>
</dependencies>
Xerition - Lead developer
PolarianDev - Developer