β€οΈFrameworks
QB-Core
function QBCore.Functions.Notify(text, texttype, length)
local convert = {
["primary"] = 'info',
["police"] = 'lspd',
["ambulance"] = 'ems'
}
texttype = texttype or 'info'
texttype = convert[texttype] or texttype
if type(text) == "table" then
TriggerEvent('mg-notify:notify',
text.text or 'Placeholder',
texttype,
text.caption or 'Placeholder',
length or 5000
)
else
TriggerEvent('mg-notify:notify', text, texttype, nil, length or 5000)
end
endKey Features
ESX
Key Features
Last updated