how to set the Patriarch HP

  • 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/

fengxue0108

Member
Jul 18, 2011
191
0
16
How to do that ,Can you say specifically it

How to do that ,Can you say specifically it

How to do that ,Can you say specifically it:confused:
 

Trololololololololololo

FNG / Fresh Meat
May 6, 2010
110
35
0
easy, create a basic mutator (benjamins tutorial in this forum)

open file zombiebossbase.uc with notepad in the folder \Steam\steamapps\common\killingfloor\KFMod\Classes

use this code in the mutator

class'ZombieBossBase'.default.Health = 50000;
class'ZombieBossBase'.default.HealthMax = 60000;
class'ZombieBossBase'.default.HealingAmount = 12500;

edit the numbers only, i did the above, its allready well over the regular one.
 

ro_sauce

FNG / Fresh Meat
Sep 26, 2007
3,135
329
0
bwhgaming.com
you could just do it on the fly during the game, and it wont break your server since youre probably using serverperksmut.
login as admin, then in console type:
admin set zombieboss health 999999

remember to set it back before u leave or the pat will have that health forever, or until you restart the server.
 

FluX

Grizzled Veteran
Oct 26, 2010
5,395
234
63
www.fluxiserver.co.uk
you could just do it on the fly during the game, and it wont break your server since youre probably using serverperksmut.
login as admin, then in console type:
admin set zombieboss health 999999

remember to set it back before u leave or the pat will have that health forever, or until you restart the server.
I wouldn't personally use this. This will mean you have to be in the server to change the health for the patriarch every time. A quick and simple mutator will be the best idea so it's done every match without any hassle. I did forget you can do admin commands like that though...
 

ASSAYARO

Member
Sep 12, 2010
159
14
18
Behind you...
sorry...

sorry...

It's a defaultpropertie where it should say minhealth & maxhealth I think it is (not entirely sure on the right name).

so sorry...
in KFHardPat mutator :D

From this source.
I want... more than BOSS's 4 syringes.
I do not know what to modify any part...
 
Last edited:

FluX

Grizzled Veteran
Oct 26, 2010
5,395
234
63
www.fluxiserver.co.uk
so sorry...
in KFHardPat mutator :D

From this source.
I want... more than BOSS's 4 syringes.
I do not know what to modify any part...
You'd have to check out the main file for the patriarch (dunno it's name as I haven't decompiled it or anything). To make it have more then 4 syringes, you will probably have to look at the default patriarch code and see how it's done there and override it to have more.
 

Benjamin

Grizzled Veteran
May 17, 2009
3,650
635
113
France
Use a mutator:

Code:
class PatriarchHPMut extends Mutator;

function bool CheckReplacement(Actor Other, out byte bSuperRelevant)
{
	if (ZombieBoss(Other) != none)
	{
		ZombieBoss(Other).HealthMax = 9000;
		ZombieBoss(Other).Health = 9000;
	}

	return true;
}

defaultproperties
{
	GroupName="KF-PatriarchHPMut"
	FriendlyName="Patriarch HP"
	Description="..."
}

Replace ZombieBoss with the name of the custom patriarch class.