ESX
Last updated
Last updated
function ESX.ShowNotification(message, notifyType, length, title, position)
exports['nm1_notification']:Notify({
title = title or 'Notification',
message = message,
type = notifyType or 'info',
duration = length or 5000,
position = position,
theme = settings.notification_theme or 'light'
})
endfunction ESX.ShowNotification(message, notifyType, length, title, position)
exports['nm1_notification']:Notify({
title = title or 'Notification',
message = message,
type = notifyType or 'info',
duration = length or 5000,
position = position,
theme = settings.notification_theme or 'dark'
})
end