Notification

es_extended/client/functions.lua

function ESX.ShowNotification(message, notifyType, length)
    local NotifyTypes = {
        ['info'] = 'fas fa-info',
        ['success'] = 'fas fa-check',
        ['error'] = 'fas fa-times',
        ['warning'] = 'fas fa-exclamation-triangle'
    }
    exports['ZSX_UIV2']:Notification('Notification', message, NotifyTypes[notifyType] or 'fas fa-info', length)
end

Last updated