1.21.0-1.3.0
Compatibility
Changes
What's New
✨ Custom Mods Support — Require any mod in your modpack, not just FTB mods! Add entries to config using format: modId|Display Name|Download URL
🚫 Non-Dismissable Screen — Missing mods screen can no longer be closed or ignored - players must download required mods to continue
🧵 Fabric and Quilt Support — Now available for NeoForge, Fabric, and Quilt mod loaders
🎨 Mod Icon — Now displays in mod menus
Default Required Mods
Quilt
- Architectury API
- FTB Chunks
- FTB Library
- FTB Quests
- FTB Teams
All mods can be enabled/disabled individually in the config.
Configuration
Config file location: config/ftbchecker.toml
Adding Custom Mods
[customMods]
mods = [
"jei|Just Enough Items|https://www.curseforge.com/minecraft/mc-mods/jei/download/5101366",
"create|Create|https://www.curseforge.com/minecraft/mc-mods/create/download/5678901"
]
Dependencies
Quilt
- Quilted Fabric API
- Cloth Config (bundled)
- Mod Menu (optional, for config GUI)
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:ocEZ7tc1:ZlG4d1YV"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:ocEZ7tc1:ZlG4d1YV"
}

