For the complete documentation index, see llms.txt. This page is also available as Markdown.

Logs

Edit rcore_dealership/configs/config.logs.lua to send events to Discord through webhooks.

๐Ÿช Discord Webhooks

Config.Logs.Discord.Enabled = true

Config.Logs.Discord.Webhooks maps each log type to a webhook URL. It is empty by default - add a URL for each log type you want to receive.

Each entry looks like:

Config.Logs.Discord.Webhooks = {
    [Logs.SOME_EVENT] = { url = 'https://discord.com/api/webhooks/...' },
}

Last updated