No more deadly flame Reload
A simple mod changing the effect of burning
With this mod burning will not destroy the hull of a vehicle anymore, only the engine.
This is a remake of my old mod. Now the game update should no longer break it.
Code:
{on "_burn"
{if work "engine"
{if not able "exploded"
{talk "burning"}
{damage_report "engine" "component/engine_burn"}
{add_view "smoke_fire_engine" "burn_fire" "FXfire1"}
{add_view "smoke_engine" "burn_fire_smoke" "FXfire1"}
;{add_view "smoke_black" "burn_fire" "FXfire1"}
{view start "burn_fire"}
{play_sound "flame" 1}
{delay 10
{components "engine" break}
{start_sound "crush/medium/metal"}
{delay 5 4
{view stop "burn_fire"}
{stop_sound "flame"}
}
}
}
}
}