QBCore
Replace Default Notification System
QBCore Default Notifications
Step 1:
Step 2:
RegisterNetEvent('QBCore:Notify', function(text, type, length)
exports['Browns-iNotify']:iNotify(nil, text, true)
end)Step 3:
Step 4:
function QBCore.Functions.Notify(text, texttype, length)
if type(text) == "table" then
local ttext = text.text or 'Placeholder'
local caption = text.caption or 'Placeholder'
exports['Browns-iNotify']:iNotify(caption, ttext, true)
else
exports['Browns-iNotify']:iNotify(nil, text, true)
end
endOX_Lib Default Notifications
Step 1:
Step 2:
Last updated