// Follow the instructions by the mod authors on how to add their mods to this list.
// One line per file.
// The format is {"name":"[filename of mod]","status":[true or false],"description":"[description for the end user so they know which mod to disable or enable]","parameters":{[Don't use this if you're unsure]}},
// If you want to disable a certain mod, change their ["status":true] to ["status":false]
// For Mod Authors:
// Starting in ver. 1.0.6b, you can now automate this process so the end user do not have to edit the mods.txt themselves anymore
// In order to do that, you need to add the following lines once to one of your js files, INCLUDING the // at the start
// #MODS TXT LINES:
// {"name":"ExampleName","status":true,"description":"","parameters":{"Debug":"0"}},
// #MODS TXT LINES END
// Replace the ExampleName part with the filename of your mod, and if your mod contains multiple js files, you can add more lines before the // #MODS TXT LINES END
// If you're not a mod author reading this part and the mod you're using is still requiring you to manually edit the mods.txt, feel free to contact the author of the mod you're using to notify them of this new feature.
var $mods =
[
// Do not edit above this line
// FPSLimit is provided as a sample of how to add a mod to this list
{"name":"FPSLimit","status":false,"description":"An alternative way of limiting FPS for fast monitors, turn off FPS Sync in the ingame Settings if you want to enable this mod.","parameters":{"FPS Limit":"60"}},
// Start adding mods below this line
// #PeroCheat MODS TXT LINES:
{"name":"PEROCheatMenu","status":true,"description":"Cheat Menu for titles and passives. Usage and Credits inside file www\mods\PEROCheatMenu.js
https://f95zone.to/threads/karryns-prison-v1-0-2a-full-remtairy.33777/post-7010514","parameters":{}},
{"name":"PERO_TitlePassive","status":true,"description":"Sub-mod of PeroCheatMenu","parameters":{}},
{"name":"PERO_TitleCondition","status":true,"description":"Sub-mod of PeroCheatMenu","parameters":{}},
{"name":"PERO_PassiveCondition","status":true,"description":"Sub-mod of PeroCheatMenu","parameters":{}},
// #MODS TXT LINES END
// Do not edit below this line
];