Default Configuration File

This is what the C7 Advanced Notepad configuration file looks like.

Config = {}

Config.Debug = false

Config.Command = 'notepad'    -- The primary command to open the notepad
Config.MaxTitleLength = 48
Config.MaxBodyLength  = 10000

Config.TemplatesEnabled = true
Config.PlayerTemplatesEnabled = true
Config.MaxTemplateNameLength = 48

Config.AutoSave = {
  Enabled = true,
  DelayMs = 2000            -- time (in seconds) after last edit before an auto-save triggers
}
Config.Webhooks = {
  Enabled = false,          -- Set to 'true' if you want to enable webhooks.
  Url = "",                 -- e.g. "https://discord.com/api/webhooks/..."
  IncludeAutosave = false   -- if false, edits from auto-save won't send webhooks
}

Last updated