Tags
Creators
Details
1.0.0
Compatibility
Changes
Mob Money v1.0.0
Mob Money is a lightweight, highly configurable Fabric mod that rewards players with money for killing mobs. It is designed to integrate seamlessly with any economy mod that supports the Common Economy API (e.g., Savs Common Economy, Fuji, Impactor).
🚀 Features
- Whitelist System: Money is only awarded for mobs you explicitly list in the config. No accidental payouts!
- Custom Rewards: Set specific reward amounts for each mob type (e.g., Zombies = $5, Ender Dragon = $1000).
- Universal Compatibility: Works with any economy mod via the Common Economy API.
- Configurable Provider: Easily switch between economy providers (e.g.,
savs_common_economy,fuji) in the config.
📦 Installation
- Install Fabric Loader and Fabric API.
- Install an economy mod (e.g., Savs Common Economy).
- Download
mob-money-1.0.0.jarand place it in yourmodsfolder.
⚙️ Configuration
The config file (config/mob-money.json) allows you to define your prices. Example:
{
"economyProvider": "savs_common_economy",
"currencyId": "dollar",
"mobPrices": {
"minecraft:zombie": 5.0,
"minecraft:creeper": 10.0,
"minecraft:ender_dragon": 1000.0
}
}
Optional dependencies
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:rvt61wur:UOWJUAI4"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:rvt61wur:UOWJUAI4"
}



