Notifications

Discord notifications

In sconfig.lua it's possible to define webhook for each important event from shortcuts overview/admin

SConfig.Webhooks = {
    SHORTCUT_ADDED = nil,
    SHORTCUT_EDITED = nil,
    SHORTCUT_DELETED = nil,
    PREMADE_SHORTCUT_ADDED = nil,
    PREMADE_SHORTCUT_EDITED = nil,
    PREMADE_SHORTCUT_DELETED = nil,
    CATEGORY_ADDED = nil,
    CATEGORY_EDITED = nil,
    CATEGORY_DELETED = nil,
}

Ingame notifications

All notifications are sent to the players by function in server/api/notification.lua

Last updated