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

Beta Release [Mutator] Server Extension Addons

Finally i found crash cause code in KFExtendedHUD.uc and how to fix it
It works, instead no longer in game drop notification but still we can know it through to steam notification popup.

simulated function PostBeginPlay()
{
Super.PostBeginPlay();
KFPlayerOwner = KFPlayerController(Owner);

//OnlineSub = class'GameEngine'.static.GetOnlineSubsystem();
//if( OnlineSub!=None )
//{
// OnlineSub.AddOnInventoryReadCompleteDelegate(Searc hInventoryForNewItem);
// SetTimer(60,false,'SearchInventoryForNewItem');
//}

SetTimer(300 + FRand()*120.f,false,'CheckForItems');
}
simulated function Destroyed()
{
Super.Destroyed();
NotifyLevelChange();
}
simulated final function NotifyLevelChange( optional bool bMapswitch )
{
//if( OnlineSub!=None )
//{
// OnlineSub.ClearOnInventoryReadCompleteDelegate(Sea rchInventoryForNewItem);
// OnlineSub = None;
//}

// Send to an empty stage to play the "waiting" game.
if( bMapswitch )
SetTimer(0.5,false,'PendingMapSwitch');
}
 
Last edited:
  • Like
Reactions: Pirotehnik.13
Upvote 0
I found a few problems
1. "KFPawn_ZedSirenX" Pet is broken, client crashes.
2. Weapon upgrade count is not display in weapon select HUD. (Updated KF2 feature)
3. Trait "Parry Master" is damage take unconditionally by 1, regardless of resistance value.
4. No longer work Medic boost traits. ("Adrenaline Shot" etc...)
5. No longer work Trait "SWAT Enforcer"(knockdown bump) and "Tactical Move" of SWAT.
6. No longer work Character skin customize.
 
Last edited:
Upvote 0
Hello, I'm trying to get this working on my server, but I can't seem to get it to even show up in the mutators.

I've put all the files in the correct locations

(ServerExt.u/ServerExtMut.u into /KillingFloor2/KFGame/BrewedPC/ and KFServerExt.ini/KFServerExtMut.ini/KFxMapVote.ini into /KillingFloor2/KFGame/Config/)

and tried running the mod by trying both

a) Putting

[KFGame.KFGameEngine]:
...
ServerActors=IpDrv.WebServer
ServerActors=ServerExtMut.ServerExtMut

Into PCServer-KFEngine.ini

and
b) Putting

?Mutator=ServerExtMut.ServerExtMut

Into the Server actors tab

But neither of these options seem to work, the mutators section just remains blank.
I've tried restarting the server, logging out and back in multiple times but that didn't help.
Any help would be very much appreciated, thank you.
 
Upvote 0
duk6046;n2332747 said:
v1081 update it makes can not getting experience with custom weapons. it's really not good... Is there no solution?

Download this mutator and run it with ServerExt to enable dosh and XP. I'll soon be updating ServerExt to implement the fix.
MoneyEnabler.MoneyEnabler
Credits to Insert Name Here and ForrestMarkX - https://cdn.discordapp.com/attachmen...MoneyEnabler.u
 
Last edited:
  • Like
Reactions: duk6046
Upvote 0
Upvote 0