Tags
Creators
Details
Licensed GPL-3.0-or-later
Published 2 weeks ago
All versions
0.1.3
Release
JustQuests 0.1.3last week 2
Compatibility
Minecraft: Java Edition
1.21.1
Platform
NeoForge
Supported environments
Singleplayer only
Changes
JustQuests 0.1.3 โ Custom Quests
Write your own quests per world โ no datapack needed. Still command-only (the GUI is coming in v0.2).
Added
- Per-world custom quests. A
custom-quests.jsonfile in your world folder (<world>/justquests/) lets you add quests directly. Each entry's key is the quest id โ a bare name likemy_questbecomesjustquests:my_quest, or use a fullnamespace:path. - Fill-in-the-blanks template is created automatically the first time you load a world, with an explained example quest and blank slots ready to fill in. Empty slots are skipped, so you can leave blanks.
- Automatic live reload โ edit and save the file and your quests update in-game within a few seconds. No restart needed.
/quest reloadalso reloads on demand and reports the total quest count. - Custom quests override datapack quests that share the same id, so you can tweak bundled quests without editing the datapack.
Notes
- All 9 objective types (
collect_item,kill_mob,place_block,craft_item,tame_animal,gain_advancement,visit_dimension,reach_level,reach_location) and all 3 reward types (give_item,command,loot_table) work in custom quests. Item fields accept a single id, a list, or a#tag. - NeoForge 1.21.1 only. More loaders and MC versions are planned.
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:dUGv1eqY"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:dHVehhni:dUGv1eqY"
}

