2.04
Compatibility
Changes
AltDetector 2.04 adds two new features:
Discord Webhooks
You can have AltDetector's alt messages sent to your Discord server. To use this, enable it in the config file and restart your Minecraft server.
PlaceholderAPI integration
You can now use a Placeholder to get the alts of players on your server. This is enabled by default if you use PlaceholderAPI. The format is:
%altdetector_alts_<playername>%
<playername> is case-sensitive. You can configure the separator between each alt in the config file.
Thanks to Sterile-Gaming for taking the initiative for adding these features.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:DJN0aphq:ceOEhN5T"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:DJN0aphq:ceOEhN5T"
}

