1.0.0
Compatibility
Required content
Changes
AutoSaveMod 1.0.0
AutoSaveMod has been updated and ported to Minecraft 26.2.
This release brings the mod to the latest Fabric environment and keeps the same simple purpose: automatically saving the server world at a configurable interval.
Features
- Automatic server saves
- Configurable save interval
- Configurable broadcast messages
- Manual save command
- Config reload command
- Autosave status command
- Server-side only
- No client installation required
Commands
/autosave now- manually starts a server save/autosave reload- reloads the configuration/autosave status- shows the time left before the next autosave
Configuration
The configuration file is located at:
config/autosave_mod.json
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:4fTdcqeu:dEl2PZPt"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:4fTdcqeu:dEl2PZPt"
}

