Installations
server.cfg
Add the command to your server.cfg file and make sure that the script is started.
ensure mt_deathscreen
config.json
You can adjust the time in the "config.json" file (this is not connected to the ESX Ambulance Job and needs to be set separately within the ESX Ambulance Job).
{
"minutes": 10
}
ESX Ambulance Job Hud
To disable the ESX Ambulance Job HUD, look for the relevant code in the "client/main.lua" file.

text = _U('respawn_available_in', secondsToClock(earlySpawnTimer))
text = _U('respawn_bleedout_in', secondsToClock(bleedoutTimer))
text = text .. _U('respawn_bleedout_prompt')
text = text .. _U('respawn_bleedout_fine', ESX.Math.GroupDigits(Config.EarlyRespawnFineAmount))
swap with
--text = _U('respawn_available_in', secondsToClock(earlySpawnTimer))
--text = _U('respawn_bleedout_in', secondsToClock(bleedoutTimer))
--text = text .. _U('respawn_bleedout_prompt')
--text = text .. _U('respawn_bleedout_fine', ESX.Math.GroupDigits(Config.EarlyRespawnFineAmount))
Last updated
Was this helpful?