-
Notifications
You must be signed in to change notification settings - Fork 0
Modlists
tmoneymkll edited this page Dec 25, 2025
·
1 revision
Modlists let you export and import mod configurations — perfect for sharing with friends, server setups, or backing up your mod collection.
Export your current mod setup to a file that others can import.
- Make sure you have the correct game instance selected
- Click File → Export Modlist (or the export button)
- Choose a location and filename for your modlist
- Click Save
The modlist file (.json) contains:
| Data | Description |
|---|---|
| Mod names | Name of each installed mod |
| Versions | Version numbers (if available) |
| Download URLs | Original download sources |
| File sizes | Size of each mod |
| Checksums | For verifying file integrity |
{
"name": "My Farm Setup",
"gameVersion": "FS25",
"createdDate": "2025-12-25T12:00:00Z",
"mods": [
{
"name": "John Deere 8R Series",
"version": "1.2.0",
"downloadUrl": "https://...",
"sizeBytes": 52428800
}
]
}Install mods from a shared modlist file.
- Click File → Import Modlist (or the import button)
- Select the modlist file (
.json) - Review the mod list and analysis:
- ✅ Up-to-date - Already installed, no action needed
- 📥 To Download - New mods that will be installed
- 🔄 To Replace - Mods with version differences
- Click Install to begin
Before installing, the app analyzes your current mods folder:
| Status | Meaning | Action |
|---|---|---|
| ✅ Up-to-date | Mod already installed with matching version | Skipped |
| 📥 To Download | Mod not installed | Will be downloaded |
| 🔄 To Replace | Different version installed | Will be updated |
| Download URL unavailable | Manual install required |
The import process:
- Downloads all required mods
- Shows progress for each mod
- Extracts and installs to your mods folder
- Reports success/failure summary
- Server admin exports their modlist
- Shares the file with players (Discord, email, etc.)
- Players import the modlist
- Everyone has matching mods!
- Export your modlist before reinstalling your game
- After reinstall, import the modlist to restore your mods
Create themed mod packs:
- "Realistic American Farming" modlist
- "European Agriculture" modlist
- "Forestry Equipment" modlist
Modlists use a JSON format (.json extension):
{
"manifestVersion": "1.0",
"name": "Modlist Name",
"description": "Optional description",
"author": "Your Name",
"gameVersion": "FS25",
"createdDate": "2025-12-25T12:00:00Z",
"mods": [
{
"id": "unique-mod-id",
"name": "Mod Display Name",
"version": "1.0.0",
"author": "Mod Author",
"downloadUrl": "https://example.com/mod.zip",
"sizeBytes": 10485760,
"checksum": "sha256:abc123..."
}
]
}-
gameVersion- Target game (FS15, FS17, FS19, FS22, FS25) -
mods- Array of mod entries -
mods[].name- Mod name -
mods[].downloadUrl- Where to download the mod
-
name- Friendly name for the modlist -
description- Description of the mod pack -
author- Who created the modlist -
mods[].version- Mod version -
mods[].checksum- File hash for verification
- Mod download URLs may become unavailable over time
- Some mods are removed from hosting sites
- If a download fails, you may need to find the mod manually
- Always use modlists for the same game version
- An FS25 modlist won't work for FS22
- Importing many mods takes time
- Ensure you have enough disk space
- A stable internet connection is recommended
- Customize download behavior in Settings
- Having issues? Check Troubleshooting