Compatibility
Minecraft: Java Edition
1.21–1.21.1
1.20.x
1.19.2–1.19.4
1.18.2
1.17.1
1.16.5
Platforms
BungeeCord
Supported environments
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
Licensed MIT
Published last year
Updated last month
pv-addon-lavaplayer-lib
Add-on bundled with LavaPlayer fork library required for some Plasmo Voice add-ons.
Installation
- Download the add-on from Modrinth
- Install the add-on:
- For Paper, install the library in
~/plugins
. - For Fabric or Forge, install the library in
~/mods
.
- For Paper, install the library in
- Restart the server
Adding to the project (For developers)
Kotlin DSL
repositories {
maven("https://repo.plo.su")
}
dependencies {
compileOnly("su.plo:pv-addon-lavaplayer-lib:1.0.2")
}
Groovy DSL
repositories {
maven { url 'https://repo.plo.su/' }
}
dependencies {
compileOnly 'su.plo:pv-addon-lavaplayer-lib:1.0.2'
}
Using with universal addons
Kotlin
@Addon(
...
dependencies = [
Dependency(id = "pv-addon-lavaplayer-lib")
]
)
Java
@Addon(
...
dependencies = {
@Dependency(id = "pv-addon-lavaplayer-lib")
}
)
Using with Bukkit plugins
Add pv-addon-lavaplayer-lib
to plugin.yml
depend
:
depend:
- pv-addon-lavaplayer-lib