Config = {} Config.DeaultNotify = 'info'; -- Default notification (if there is no notify type given) Config.Debug = false -- Set to true is you want to enable /notify command. Usage: '/notify error'; Config.EsxNotifcation = false --Set this to true to use ESX notifications Config.GlobalMute = false -- If set to true, this mutes all notifications regardless of notification settings Config.Notifications = { -- Restart your server for new notifications! ['error'] = { icon = 'fas fa-exclamation-triangle', title = 'Bildirim', sound = "sound.mp3", color = '#FF0045', volume = "0", mute = false, }, ['success'] = { icon = 'fa-solid fa-check', title = 'Bildirim', sound = "sound.mp3", color = '#00DD6B', volume = "0", mute = false, }, ['warning'] = { icon = 'fas fa-exclamation-triangle', title = 'Bildirim', sound = "sound.mp3", color = '#fc9f27', volume = "0", mute = false, }, ['health'] = { icon = 'fas fa-heartbeat', title = 'Bildirim', sound = "sound.mp3", color = '#EF5350', volume = "0", mute = false, }, ['police'] = { icon = 'fas fa-bullseye', title = 'Bildirim', sound = "sound.mp3", color = '#135DD8', volume = "0", mute = false, }, ['ambulance'] = { icon = 'fa-solid fa-star-of-life', title = 'Bildirim', sound = "sound.mp3", color = '#FFC905', volume = "0", mute = false, }, ['info'] = { -- Default notfication of ESX (You can edit this notify) icon = 'fa-solid fa-circle-info', title = 'Bildirim', sound = "sound.mp3", color = '#2980b9', volume = "0", mute = false, }, ['primary'] = { -- Default notification of QBCore (You can edit this notify) icon = 'fa-solid fa-circle-info', title = 'Bildirim', sound = "sound.mp3", color = '#2980b9', volume = "0", mute = false, }, }