No more deadly flame Reload

If you liked this item, please rate it up on Steam Workshop page.

Author: Enoki Sachi

Last revision: 8 May, 2022 at 17:40 UTC

File size: 7.48 KB

On Steam Workshop

Description:
Dont want a flame trooper to destroy your King tiger instantly? Try this mod : )

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"}
}
}
}
}
}