Modifications

Remember that this resource has verified DMCA protection, and its illegal use or distribution could imply a claim for protection of Title 17 of Chapter 512 (c) (3) of the Digital Millennium Copyright Act

Ambulancejob modifications

This step is important if you are going to use the die and revive function within the Backrooms, please follow it completely
In this case, we have two completely different esx_ambulancejobs, but we can continue this guide by looking in esx_ambulancejob/client/main.lua for the variable name isDead, or IsDead, depending on your ambulancejob
The only difference is the name of the variable we are returning We will add this exports just above the function OnPlayerDeath()
IsDead (new)
isDead (old)

Add export

../client/main.lua
1
exports('isDead', function()
2
return IsDead
3
end)

Add export

../client/main.lua
1
exports('isDead', function()
2
return isDead
3
end)