Talk:Fleshpound (Killing Floor 2)

From Killing Floor 2 Wiki
Jump to navigation Jump to search

Regarding edits

This edit by User:Puporonga:

However, it is worth noting that this timer will reset whenever the Fleshpound switches its target to a different player. This means that two different players can indefinitely "juggle" a calm Fleshpound as long as they keep him switching his attention by proximity.

Was rejected due to what i consider a false info. Sorry, i see no evidence of that in the code. From what i see it's only rage ending condition is when all players are out of it's sights for 30 seconds and when it lands a melee hit on a player or another ZEDs. Timer until next rage time does no appear to change based on switching enemies. Pls use this discussion page if you'd like to prove me wrong, which i might be.

--Simplecat (talk) 23:12, 25 December 2022 (UTC)


Honestly I was not expecting the wiki to be moderated and didnt bother to add an actual source due to laziness, so I do apologize, the following is an extract of the KFAIController_ZedFleshpound.uc file found in the Src/KFGame/Classes folder which if im not mistaken contains all the information about how the AI of the Fleshpound works, and in lines 241 to 258 the following code reads:

/** Overridden to reset frustration when enemy changes */ event bool SetEnemy( Pawn NewEnemy ) { local bool bNewEnemySet;

bNewEnemySet = super.SetEnemy( NewEnemy );

// If enemy changed, reset frustration related properties if( bNewEnemySet ) { `AILog( GetFuncName()$" Just started targeting a new enemy ("$NewEnemy$"), clearing RageFrustrationTimer", 'SeePlayer' ); bSawEnemy = false; EnableSeePlayer(); RagePlugin.StartRageTimer(); }

return bNewEnemySet; }

Here is an ingame clip I just made with a friend on the KF-HTC testing map to show it in action: https://streamable.com/an0xhi Two missed swings, but even if they hit, they wouldnt reset the rage timer, and the clip is 25 seconds long so the fleshpound should have autoraged if there was no aggro swap or the above was false


You're indeed correct, i've made some tests as well and yes, variable RageFrustrationStartTime from KFAIPluginRage_Fleshpound class is updated every time FP changes enemy starting the whole rage timer over. My bad, i should've verified it once more before rejecting (i don't reject everything right away, but this change really put me in doubt). Your edit is approved and visible. Thanks.

Your observation is also correct for QP and King FP. I've placed this note to these pages as well.

Yeah, the wiki is moderated due to rather common attacks of spam bots that come here creating their user pages with some spam links. The way to get automoderated user rights is to contact developers in their kf2 discord channel https://discord.com/channels/120305629175742464/ I can ask them for you if you would like.

Simplecat (talk) 07:47, 26 December 2022 (UTC)