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
I Take Explosion Damage Even On God Mod, After Checking fire_game_modifications.lua, I Find The Problem.
hook.Add("EntityTakeDamage", "vFireFixExplosion", function(ent, dmg)
if hook.Call("vFireSuppressExplosionBehavior") then return end
if !dmg:IsExplosionDamage() then return end
local hp = ent:Health()
if hp < dmg:GetDamage() and hp > 0 then
if math.random(1, 3) == 1 then
ent:SetHealth(0)
end
end
end)
This Work Not Only The Prop Also NPC And Player, The Result Is Explosion Shouldn't Kill You When God Mod Or You Have Armor Or You Have Explosion Resist, But It Set Your Health To 0, The SetHealth Function Ignore Other Hook, You Could Replace It With TakeDamage Or Make It Only Work On Prop, Please Fix It
Sorry To Post This Bug Report To Your Account Comment Section Rather Then The Addon Page And Have A Nice Day
if you still demand that there be smoke, you can ask any developer to write an addon that does that to vfire