Editable Files

client/editable.lua

function wheelCloased()

end

function wheelOpended()

end

function mainHudClosed()
    TriggerEvent("tgiann-lumihud:ui", true)
end

function mainHudOpened()
    TriggerEvent("tgiann-lumihud:ui", false)
end

---@return boolean
---If an animation becomes corrupted while playing and this function returns true, the animation will play again.
function checkAnimationIsCorrupted()
    return true
end

function handsUpActive()
    TriggerServerEvent('esx_thief:update', true)
    LocalPlayer.state:set("handsup", true, true)
end

function handsUpInactive()
    TriggerServerEvent('esx_thief:update', false)
    LocalPlayer.state:set("handsup", false, true)
end

function canPlayIdleAnimation()
    return true
end

server/editable.lua

Last updated