https://github.com/InsultingPros/MML
Multi MutLoader to power up your 20-30-40 votings
https://github.com/InsultingPros/MML
killing-floor mutator unrealscript whitelisted
Last synced: about 1 year ago
JSON representation
Multi MutLoader to power up your 20-30-40 votings
- Host: GitHub
- URL: https://github.com/InsultingPros/MML
- Owner: InsultingPros
- License: gpl-3.0
- Created: 2023-05-03T21:58:45.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-03T23:15:56.000Z (almost 3 years ago)
- Last Synced: 2024-10-24T02:34:09.036Z (over 1 year ago)
- Topics: killing-floor, mutator, unrealscript, whitelisted
- Language: UnrealScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multi Mut Loader
[](https://github.com/InsultingPros/MML/releases)
Yet another KF1 MutLoader, but this one is special, because it allows you to have dozens of votings without hitting the `KFMapVote.ini` size limit.
## Usage
1. So, you have 50 classes to use (a bit overkill, but why not):
- MML.ML01
- MML.ML02
- ...
- MML.ML50
2. Open your MML [config](Configs/MML.ini) file, and start to fill mutator lists by your taste. And you can name them properly / add comments, so in future you won't forget which list does what.
3. Finally in your `KFMapVote.ini` replace your mutators with corresponding MML classes:
```ini
GameConfig=(GameClass="KFMod.KFGameType",Prefix="KF-",Acronym="KF",GameName="01. Vanilla",Mutators="MML.ML01")
...
GameConfig=(GameClass="KFStoryGame.KFStoryGameInfo",Prefix="KFO-",Acronym="KFO",GameName="30. Objetive",Mutators="MML.ML30")
```
Grats, you've saved lot's of file space for additional votings. Enjoy!
## Building
Use [KF Compile Tool](https://github.com/InsultingPros/KFCompileTool) for easy compilation.
```ini
EditPackages=MML
```
## Credits
- [Dave_Scream](https://forums.tripwireinteractive.com/index.php?members/dave_scream.22538/) for original [MutLoader](https://web.archive.org/web/20230000000000*/killingfloor.ru/xforum/threads/mutloader.1729/).
- [Poosh](https://github.com/poosh) - I used multiple loader class idea from [ZedManager](https://github.com/poosh/KF-ZedManager).
Additionally you can check [Vel](https://github.com/Vel-San)'s [MutLoader](https://github.com/Bleeding-Action-Man/MutLoader) realization, which doesn't have this much flexibility, but has some other nice features.