Next Scripts
  • Introduction
  • PAID RESOURCES
    • 📦Job Creator
      • Installation
      • Configuration
        • Client Configuration
        • Server Configuration
      • Exports
        • Client Exports
        • Server Exports
      • Commands
      • FAQ
    • 🍂 Drug System
      • Installation
      • Configuration
    • 📢 Notify
      • Installation
      • Configuration
      • Exports
        • Client Exports
        • Server Exports
    • 🎇 Event Tablet
      • Installation
      • Configuration
  • FREE RESOURCES
    • 🍁 Npc Drug Sells
      • Installation
      • Configuration
    • 👆🏻 Targeting
      • Installation
      • Configuration
      • Client Exports
      • Examples
    • 💻 Dispatch
      • Installation
      • Client Exports
      • Server Exports
      • Commands
Powered by GitBook
On this page
  • Default Timeout
  • Border Color & Background Color
  • Icon
  1. PAID RESOURCES
  2. 📢 Notify

Configuration

Config = {}

--[[
    right-center
    right-bottom
    center
    left-center
]]
Config.DefaultAlign = "right-center"

Config.DefaultTitle = "Notification"

Config.DefaultIcon  = "https://cdn.discordapp.com/attachments/1136989226429321357/1161571533999837265/logo2.png?ex=659511ca&is=65829cca&hm=3feda243c701ff05a4521ebecdb7446b189f8d6378a4406f0eeaa1ef59e73fa7&"

-- Milliseconds
Config.DefaultTimeout = 4500

Config.Icons = {
    ["success"] = {
        borderColor     = "#00ff08",
        backgroundColor = "#43a746d7",
        icon            = "fa-solid fa-circle-check"
    },
    ["error"]   = {
        borderColor     = "#ff0000",
        backgroundColor = "#af372ece",
        icon            = ""
    },
    ["info"]    = {
        borderColor     = "#00c3ff",
        backgroundColor = "#3578aed7",
        icon            = ""
    },
    ["warning"] = {
        borderColor     = "#fbff00",
        backgroundColor = "#aaae35d7",
        icon            = ""
    }
}

Default Timeout

How long the message shows up, if timeout is not provided


Border Color & Background Color


Icon


PreviousInstallationNextExports

Last updated 1 year ago

Hex color. You can easily get it from

icons. If there is not one provided, the Default Icon is used

here
FontAwesome