Zorkaz Posted March 9, 2021 Share Posted March 9, 2021 What does this exactly mean?Is it an irreversible status? Link to comment Share on other sites More sharing options...
niston Posted March 9, 2021 Share Posted March 9, 2021 Bleedout is when an NPC sits on the ground and is temporarily "incapacitated".They'll recover after a while.I think this was added for essential NPCs, instead of them dying (since they can't die). Link to comment Share on other sites More sharing options...
SKKmods Posted March 10, 2021 Share Posted March 10, 2021 Bleedout and self recover from OnEnterBleedout() ThisActor.SetEssential(True)ThisActor.SetNoBleedoutRecovery(False) Bleedout and need healing to recover from OnEnterBleedout() ThisActor.SetEssential(True)ThisActor.SetNoBleedoutRecovery(True) In this context "healing" is not a Stimpak, its setting ThisActor.ResetHealthAndLimbs() and then ThisActor.SetNoBleedoutRecovery(False) until IsBleedingOut() == False which typically takes 13 seconds. Link to comment Share on other sites More sharing options...
Zorkaz Posted March 10, 2021 Author Share Posted March 10, 2021 Thx Link to comment Share on other sites More sharing options...
Recommended Posts