Please disclose if any significant portion of your mod was created using AI tools by adding the 'AI Generated' category. Failing to do so may result in the mod being removed from Thunderstore.
Modlist
A modlist for Silksong.
| Date uploaded | 3 months ago |
| Version | 0.3.0 |
| Download link | silksong_modding-Modlist-0.3.0.zip |
| Downloads | 16569 |
| Dependency string | silksong_modding-Modlist-0.3.0 |
This mod requires the following mods to function
BepInEx-BepInExPack_Silksong
BepInEx modloader. Preconfigured and ready to use.
Preferred version: 5.4.2304README
Silksong.Modlist
A modlist for Silksong. That's it!
For Users
Configuration can be changed in ModMenu, BepInExConfigurationManager or by editing BepInEx/config/org.silksong-modding.modlist.cfg.
DisplayModesets how the modlist is shown on the main menu:Fullalways shows all mods,Reducedshows a mod count & any hard-dependent mods,Hiddenhides the modlist.- On both
Full&Reducedsettings, the reduced modlist is shown when paused ingame.
LogModFilessets whether to append a reduced file tree to your logs, useful for troubleshooting.
For Developers
Mods used by speedrunners are encouraged to depend on ModList to force being shown in the patch text, to pose an additional obstruction to cheating in speedruns.
To do so, add a dependency on Modlist to the plugin definition (and update thunderstore.toml appropriately):
[BepInAutoPlugin(id: "your_mod's_guid")]
[BepInDependency("org.silksong-modding.modlist")] // Add this line!
public class YourPlugin : BaseUnityPlugin
{
...
}
# dependencies are specified in the format AuthorName-PackageName = "version". You should always have at least BepInExPack_Silksong.
[package.dependencies]
BepInEx-BepInExPack_Silksong = "5.4.2304"
silksong_modding-Modlist = "0.3.0" # Add this line!
Note that this will prevent your mod from loading without Modlist enabled - this is intentional.