Clear Notify System
Replacing Default Notifications

Replacing Default Notifications

ESX

Edit es_extended/client/functions.lua and replace the notification function with:

function ESX.ShowNotification(msg)
  TriggerEvent('clearNotify', 'info', 'Notification', msg)
end

QBCore

Edit qb-core/client/functions.lua and replace the notification function with:

function QBCore.Functions.Notify(text, type, length)
  TriggerEvent('clearNotify', type or 'info', 'Notification', text)
end