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

Code Mut: Per Server Stats

Updated this mutator again. This time I fixed the server crash with latest patch, reimplemented custom characters selection and split up the code in 3 different packages:
- ServerPerksV5.u = contains the client replication/GUI codes.
- ServerPerksV5P.u = contains the standard perks.
- ServerPerksMut.u = contains the server side data management code (client's does not need to download this code so servers hosts can edit it at their own will).
This will make it easier to patch up if Tripwire breaks the mutator again with any new KF versions.

Also SRVeterancyTypes contains a new function:
Code:
// This function is called for every weapon with and every perk every time trader menu is shown.
// If returned false on any perk, weapon is hidden from the buyable list.
static function bool AllowWeaponInTrader( class<KFWeaponPickup> Pickup, KFPlayerReplicationInfo KFPRI )
{
	return true;
}
This lets any perk remove any weapons from trader, as for example (this will removes flame thrower unless that specified perk is selected):
Code:
static function bool AllowWeaponInTrader( class<KFWeaponPickup> Pickup, KFPlayerReplicationInfo KFPRI )
{
	return (Pickup!=Class'FlameThrowerPickup' || KFPRI.ClientVeteranSkill!=Default.Class);
}

As always, you'll find the download links from the first post.
 
Last edited:
Upvote 0
Thank you so much for being so quick to the punch on the update. will save a few headaches there!!

Also, thanks for adding back in the character selection, this is definitely needed while Flux is polishing his....(enter line here :D )

Just a couple of notes:

M4/M203 does not show how many rockets in hud

Character select does not show custom when escaping to menu during game

If I find any other issues, I will let you know.

Still, good work and glad you were on the ball.
 
Upvote 0
Warning: Failed to load 'XWeapons' ...

Warning: Failed to load 'XWeapons' ...

Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'

.....................................

What's problem?
 
Upvote 0
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'
Warning: Failed to load 'XWeapons': Can't find file for package 'XWeapons'
Warning: Failed to load 'Class XWeapons.RocketLauncher': Can't find file for package 'XWeapons'

.....................................

What's problem?
Im guessing you have some custom characters installed? That is inside the .ucl files.
 
Upvote 0
is there a way to save the original steam ID?

uZQme.jpg


Data.ini
[75956550]
Old=124935,33,10,18,30,5,1,15,20,20,10,10,1,20,15,10,55,15,20,1,1,17,1,25,1,1,1,1,3,1,2,7,1,0,1,1,1,3,0,0,0
 
Last edited:
Upvote 0