πHow to Install
Setup Guide
function QBCore.Functions.Notify(text, texttype, length, icon) local message = { action = 'notify', type = texttype or 'server', length = length or 5000, } if type(text) == 'table' then message.text = text.text or 'Placeholder' message.caption = text.caption or 'Placeholder' else message.text = text end if icon then message.icon = icon end exports['st-notify']:sendNotification('Server', text, texttype, length) -- SendNUIMessage(message) end
Last updated