How to change the notify on some QB scripts
Go to qb-core/client/functions.lua and search
QBCore.Functions.Notify
Change to
function QBCore.Functions.Notify(text, texttype, length, icon) local exist = exports["stNotify"]:GetType(texttype) if exist then return exports['stNotify']:Notify(texttype, text) end return exports['stNotify']:Notify('info', text) end
Last updated 6 months ago
Was this helpful?