Skip to content

MythicDrops/MythicDrops

Repository files navigation

MythicDrops

MythicDrops is an open source Bukkit plugin that brings an RPG-like system of drops to Minecraft. Items can have unique names, lore, and enchantments added randomly to them through a tier system.

Maven Central javadoc

How To Get It (Server Runners)

https://www.spigotmc.org/resources/mythicdrops.6114/

How to Get It (Developers)

MythicDrops is published to Maven Central.

Gradle

repositories {
    mavenCentral()
}

dependencies {
    compileOnly "io.pixeloutlaw.mythicdrops:mythicdrops:x.y.z"
}
repositories {
    mavenCentral()
}

dependencies {
    compileOnly("io.pixeloutlaw.mythicdrops:mythicdrops:x.y.z")
}

Maven

<dependencies>
    <!-- other dependencies... -->
    <dependency>
        <groupId>io.pixeloutlaw.mythicdrops</groupId>
        <artifactId>mythicdrops</artifactId>
        <version>x.y.z</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Sponsors