QB_AMBULANCEJOB

Add to the first line of function OnDeath in dead.lua the next line:

if LocalPlayer.state.inRound then return end

Like this:

function OnDeath()

    if LocalPlayer.state.inRound then return end
    
    if not isDead then
        isDead = true
....

Add to the first line of function SetLaststand in laststand.lua the next line:

if LocalPlayer.state.inRound then return end

Like this:

function SetLaststand(bool)

    if LocalPlayer.state.inRound then return end

    local ped = PlayerPedId()
    if bool then
        Wait(1000)

Last updated