• Please make sure you are familiar with the forum rules. You can find them here: https://forums.tripwireinteractive.com/index.php?threads/forum-rules.2334636/

Mutator Perks LvL 6

ToNiO

Grizzled Veteran
Aug 11, 2009
277
20
France
steamcommunity.com
Hi all,

I wanted to know if somebody knows how to create a mutator???

Because I would like to make my own mutator for my server 30 slots

And I would like that everything the players is in lvl6 indeed on by choosing the profile which it want at the beginning

What is that you think that these possible???

How I has to take me there if I want to make this mutator

Thank you in advance for your help :)
 
Oh yes, i already fixed it, and unfixed it because i didnt realize the remaining star signifies the 6th level, i thought i was back to level 1 ;)

I will update my PerkReplacement (based on KFMods') and release it here later today. Whether you directly implement or alter this code i do not care, but please dont take KFMods' credit away as they did all the work.

I've renamed my mod in order to not ruin the versioning namespace

As for the player amount, i'm pretty sure KFMMaxplayerMut (or something similar, from KFMods(?) ) still does the trick but has to be configured properly for it to do its job... my #1 mistake in this area was to assume (on the linux platform) that killingfloor.ini is read and written to current working directory of ucc-bin. This is not the case, it uses the user's home directory for profile/cache data. (ex: /home/crono/.killingfloor/system/killingfloor.ini)

If anyone has that recipe sharing it would be nice... otherwise i'm bound to figure it out sooner or later and i will share..

My current solution, as has been mentioned elsewhere on this forum, is to use curl (again, in linux) to fake a webadmin console input that enforces the maxplayer count to 16 every minute of the day. Mind you, thats 1440 HTTP requests.. and this also means the excess players get thrown out the first minute after a map is changed.

$ cat updatescript.sh
#!/bin/bash
curl -d"SendText=set Engine.GameInfo MaxPlayers 16" http://admin:[email protected]:8075/ServerAdmin/current_console 1>/dev/null 2>&1
curl -d"SendText=set KFMod.KFGameType MaxZombiesOnce 64" http://admin:[email protected]:8075/ServerAdmin/current_console 1>/dev/null 2>&1


Note: the wget option does not work optimally as the web form is supposed to take in POST, not GET data. I'm not sure if it works, but it didnt seem to work for me.
 
Upvote 0