Integrations

Integrations of gx_notify Resource

ESX v1.12.4

-- path => es_extended/client/functions.lua
function ESX.ShowNotification(message, notifyType, length)
    return IsResourceFound('esx_notify') and exports['esx_notify']:Notify(notifyType, length, message)
end

-- with Gx_notify
function ESX.ShowNotification(message, notifyType, length)
    return exports.gx_notify:Notify(message)
end

Last updated