PlayerEx¶
PlayerEx is a Minecraft mod built using the Fabric ecosystem that adds RPG themed attributes to the game and the player.
-
Integrating PlayerEx¶
PlayerEx has a Curseforge and Modrinth page. To add PlayerEx to your project, insert the following into your build.gradle:
build.gradle
Alternatively, if you're using Cursemaven:
repositories {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
content {
includeGroup "maven.modrinth"
}
}
}
dependencies {
modImplementation "maven.modrinth:playerex-directors-cut:<version>>"
}
build.gradle
repositories {
maven {
name = "Cursemaven"
url = "https://cursemaven.com"
}
}
dependencies {
modImplementation "curse.maven:playerex-directors-cut-958325:<version-file-id>"
}
PlayerEx has multiple dependencies, so your build.gradle must accommodate this.
-
Dependancies¶
PlayerEx requires the following dependancies:
| Dependancy | Purpose |
|---|---|
| Fabric API | Required by other dependencies and for certain events. |
| Data Attributes: Directors Cut | Provides the core attribute system and attribute configurability. |
| Cardinal Components API (Base, Chunk, and Entity) | A jar-in-jar dependency that provides player attribute modifiers. |
| Cloth Config API | Provides configurability. |
| Offline Player Cache: Directors Cut | A jar-in-jar dependency that provides TextPlaceholderAPI with persistent player data. |
| Text Placeholder API | A jar-in-jar dependency that provides text placeholders, namely for custom multiplayer leaderboards. |
| exp4j | A jar-in-jar dependency that provides levelling configurability, namely an expression parser. |
Last update:
2024-10-13
