ForrestMarkX / KF2-Server-Extension

A repository for ServerExtension by Marco found here https://forums.tripwireinteractive.com/forum/killing-floor-2/killing-floor-2-modifications/general-modding-discussion-ad/beta-mod-releases/109463-mutator-server-extension-mod
GNU Lesser General Public License v3.0
12 stars 16 forks source link

Rack'em up could get more than maxheadshot hits. #8

Closed oh1no closed 6 years ago

oh1no commented 6 years ago

the maxhits should be 27,but on hud it can go up to more than 50.

FreebaseJosh commented 6 years ago

Current Max is 255;

You can change this yourself by doing the following steps:

  1. Open _ExtPerkRhythmPerkBase.uc
  2. Search for 255
  3. Change the number to anything lower than 255 [Ex. 27] (Anything higher than 255 will not register)

Before: HeadShotComboCount = Min(HeadShotComboCount+1,255); After: HeadShotComboCount = Min(HeadShotComboCount+1,27);

oh1no commented 6 years ago

@FreebaseJosh wait so Rack 'em up trait's level has no effect,since maxcombo is always 255 no matter you are level 1 or 5?