Sims Medieval Resource.cfg May 2026
Even with the correct sims medieval resource.cfg, things can fail. Here are the most common issues.
Documents\Electronic Arts\The Sims Medieval\Mods\
│ resource.cfg
│
└───Packages\
│ myMod.package
│
└───HairMods\
fancyHair.package
For power users, the default resource.cfg is just a starting point. You can customize it for specific needs.
Example 1: Creating a "Disabled" Folder
Add this line to create a folder where the game will not read mods (useful for testing):
PackedFile Mods/Disabled/*.package -- Actually, do not use PackedFile. To disable, simply move mods outside Packages. There is no "ignore" command in vanilla cfg. sims medieval resource.cfg
Example 2: Increasing Folder Depth
If you are an extreme organizer with folders like Mods/Packages/Gameplay/Quests/Dragon_Valley/Edit_Tuning/, you need more asterisks. Add:
PackedFile Mods/Packages/*/*/*/*/*/*.package (six levels deep).
Example 3: Prioritizing a Specific Mod
If you have two mods that edit the same file (e.g., two different priest tuning mods), you can force one to load last by giving it a lower priority number. Create a sub-folder called Priority_Override and add a dedicated block with Priority 600. Even with the correct sims medieval resource
Likely cause: Wrong resource.cfg location or content.
For standard mods and custom packages to work, create a new text file named resource.cfg (ensure the extension is .cfg, not .txt) and paste the following: For power users, the default resource
Priority 501
DirectoryFiles Mods/Files/... autoupdate
Priority 500
PackedFile Mods/Packages/*.package
PackedFile Mods/Packages/*/*.package
PackedFile Mods/Packages/*/*/*.package
PackedFile Mods/Packages/*/*/*/*.package
PackedFile Mods/Packages/*/*/*/*/*.package
Priority 499
PackedFile Mods/Overrides/*.package
PackedFile Mods/Overrides/*/*.package
If you are curious about what is inside the file or need to edit one that is broken, you can open it using a simple text editor like Notepad.
A standard Resource.cfg for Medieval usually looks like this:
Priority 500
PackedFile Mods/Packages/*.package
PackedFile Mods/Packages/*/*.package
PackedFile Mods/Packages/*/*/*.package
PackedFile Mods/Packages/*/*/*/*.package
PackedFile Mods/Packages/*/*/*/*/*.package
Here is what those lines mean: