Tags
Creators
Details
Licensed GPL-3.0-or-later
Published 2 months ago
Updated 4 days ago
All versions
neoforge-1.21-0.2.3
Release
JustQuests neoforge-1.21-0.2.34 days ago 8
Compatibility
Minecraft: Java Edition
1.21
Platform
NeoForge
Supported environments
Singleplayer only
Changes
Multiplayer sync — the quest book now works on dedicated servers, not just in singleplayer.
Fixed
- Quest book empty on servers — the book read quest data directly from the server-only stores, which only worked through the integrated (singleplayer) server. On a dedicated server the client had no data, so the book showed "No quests (singleplayer only for now)."
Added
- Server → client quest sync — the full quest list plus the player's own progress are serialized (reusing the existing codecs) and sent to the client on join, whenever that player's progress changes, and on quest reload/reroll and generator rotation. The quest book reads this synced copy, so it works on dedicated servers and still in singleplayer (the sync also fires over the loopback connection). Rolled out to every GUI version (28 builds: NeoForge 1.20.4–1.21.10, Forge 1.20.1, Fabric 1.20.1–1.21.10). The 1.18/1.19 builds stay command-only.
- Upload script sets the Modrinth environment — the local uploader now patches the project to Client + Server "required" (both sides) on upload, so the environment no longer has to be set by hand.
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:zz2lUzip"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:dHVehhni:zz2lUzip"
}

