Descrição do Arquivo
Notificação/Alerta para GTA RP FIVEM bem clean e particularmente achei bem bonito.
Tem opção de ativar ou desativar o som via arquivo config, por padrão ele vem pra vRPex mas o autor passou dois códigos para ativar em QBCORE e ESX conforme abaixo:
ESX compatibility
Acesse: es_extended/client/functions.lua
Procure por ESX.ShowNotification e substitua a função pelo seguinte código:
function ESX.ShowNotification(message, type, data) if GetResourceState("dillen-notifications") ~= "missing" then local _data = data or {} return exports['dillen-notifications']:sendNotification({ message = message, type = type or 'info', title = _data.title or 'Notification', duration = _data.duration or 4000 }) end end
_
QB-Core compatibility
Acesse: qb-core/client/functions.lua
Procure por QBCore-Functions.Notify e substitua a função pelo seguinte código:
function QBCore.Functions.Notify(message, type, data) if GetResourceState("dillen-notifications") ~= "missing" then local _data = data or {} return exports['dillen-notifications']:sendNotification({ message = message, type = type or 'info', title = _data.title or 'Notification', duration = _data.duration or 4000 }) end end
Meu teste foi realizado em vRPex e funcionou normalmente sem dificuldades, os demais frameworks necessitam de testes.