Insert HUD Notifys into es_extended
This is a short and simple guide that explains how to set up our notifications in your es_extended
Notifys
function ESX.ShowNotification(message, notifyType, length, title)
return IsResourceFound('esx_notify') and exports['esx_notify']:Notify(notifyType, length, message)
endfunction ESX.ShowNotification(message, notifyType, length, titleNotify, name, ID)
notifyType = notifyType or "info"
titleNotify = titleNotify or "Notify"
length = length or 5000
exports["S-HUDv2"]:DisplayNotify(
notifyType,
titleNotify,
message,
length,
name,
ID
)
endHelp Notify
Progress Bar
Text UI
Hide Text UI
Last updated