mirror of
https://github.com/opentibiabr/canary
synced 2026-08-16 06:26:09 -04:00
27 lines
959 B
Lua
27 lines
959 B
Lua
-- Sends Discord webhook notifications.
|
|
-- The URL layout is https://discord.com/api/webhooks/:id/:token
|
|
-- Leave empty if you wish to disable.
|
|
|
|
if not announcementChannels then
|
|
announcementChannels = {
|
|
["serverAnnouncements"] = "", -- Used for an announcement channel on your discord
|
|
["raids"] = "", -- Used to isolate raids on your discord
|
|
["player-kills"] = "", -- Self-explaining
|
|
["player-levels"] = "", -- Self-explaining
|
|
["reports"] = "",
|
|
}
|
|
end
|
|
|
|
--[[
|
|
Example of notification (After you do the config):
|
|
This is going to send a message into your server announcements channel
|
|
|
|
local message = blablabla
|
|
local title = test
|
|
Webhook.sendMessage(title, message, WEBHOOK_COLOR_YELLOW,
|
|
announcementChannels["serverAnnouncements"])
|
|
|
|
Dev Comment: This lib can be used to add special webhook channels
|
|
where you are going to send your messages. Webhook.specialSend was designed
|
|
to be used with countless possibilities.
|
|
]]
|