Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
"if not ent:IsNPC() then return end"
to
"if not ent:IsNPC() or not ent:IsRagdoll() then return end"
in the "OnEntityCreated" hook worked for sure though. I made sure to re-test again to be definitive. It seems that before that the script failed to initialize somehow and I couldn't tell if fake hits were happening or not
ragdolls wont pass though that
To make it compatible with Enhanced Blood Splatter System is literally a 2 second fix, just replace the line
"if ent.IgnoreFakeHitFix then return end"
with the line
"if ent.IgnoreFakeHitFix or ent.IsRagdoll then return end".
All this damage logic is not needed on ragdolls anyway since by the default shooting them doesn't spawn any particles, and no need to account for fake hits of Enhanced Blood Splatter System because that addon already has prediction built in
https://sp.zhabite.com/sharedfiles/filedetails/?id=3421440369