Skip to content

Checks if a player or list of players are vanished via multiple plugins.

License

Notifications You must be signed in to change notification settings

FireML-Dev/VanishChecker

Repository files navigation

VanishChecker

Checks if a player or list of players are vanished via multiple plugins.

It is required to shade this into your plugin for it to work.

Adding VanishChecker as a dependency and shading:

Gradle (Kotlin)
repositories {
    maven("https://repo.firedev.uk/repository/maven-public/")
}

dependencies {
    // The following version may not be the latest. Please check it before using.
    implementation("uk.firedev:VanishChecker:1.0.3")
}

tasks.shadowJar {
    relocate("uk.firedev.vanishchecker", "[package name here].vanishchecker")
}
Maven
    <repository>
        <id>firedev-repo</id>
        <url>https://repo.firedev.uk/repository/maven-public/</url>
    </repository>

    <dependency>
        <groupId>uk.firedev</groupId>
        <artifactId>VanishChecker</artifactId>
        <!--The following version may not be the latest. Please check it before using.-->
        <version>1.0.3</version>
        <scope>compile</scope>
    </dependency>

    <relocations>
        <relocation>
            <pattern>uk.firedev.vanishchecker</pattern>
            <shadedPattern>[package name here].vanishchecker</shadedPattern>
        </relocation>
    </relocations>

About

Checks if a player or list of players are vanished via multiple plugins.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages