Tags
Creators
Details
Licensed GPL-3.0-or-later
Published 2 weeks ago
All versions
0.1.4
Release
JustQuests 0.1.4last week 1
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Singleplayer only
Changes
JustQuests 0.1.4 — Localization
Quests can now speak the player's language. Still command-only — the GUI is coming in v0.2.
Added
- Multi-language quest text. A quest's title and description can now be either a plain string (as before) or a per-language map, e.g.
"title": { "en_us": "Mining Trip", "de_de": "Bergbau-Ausflug" }. Each player sees their own client language, falling back to English. Existing string-only quests keep working unchanged. - Free content translation. Item, mob and block names in the goal/reward lines now show up in each player's own language automatically — no translation files needed.
- All 12 bundled quests now ship with English and German text.
- The custom-quest template documents the per-language map form and includes a localized example.
/quest testgained a localization check (map resolution + English fallback).
Notes
- The mod's own connective words (e.g. "Collect", "Reward") stay English for now; it's the data-driven text and the vanilla content names that localize.
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:dHVehhni:ohzEUzLg"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:dHVehhni:ohzEUzLg"
}

