Standalone
Agency-Notify الإعدادات
نظام إشعارات متقدّم بنمطين بصريين (V1 Classic وV2 Ultra) يمكن لكل لاعب التبديل بينهما، مع قائمة إعدادات داخل اللعبة.
v2.0.1مجاني5 صفحات

01الإعدادات
تثبيت سريع · config.lua · Agency-Notify
-- ============================================================
-- Agency Notify | v2.0.1 - Config
-- ============================================================
--
-- ╔══════════════════════════════════════════════════════════╗
-- ║ ║
-- ║ ⚡ UPGRADE TO AGENCY-ESSENTIALS — 4-IN-1 PREMIUM ⚡ ║
-- ║ ║
-- ║ Get this Notify system + Elevator + Reports + ║
-- ║ Progressbar in ONE re-brandable resource. ║
-- ║ ║
-- ║ • Ad-free — no watermarks, no forced branding ║
-- ║ • Fully re-brandable as your own (logo, name, colors) ║
-- ║ • Unified /aessentials in-game dashboard ║
-- ║ • 24 languages with live switching ║
-- ║ • QBCore / ESX / Standalone auto-detect ║
-- ║ ║
-- ║ ONLY EUR 4.99 — ONE-TIME PAYMENT ║
-- ║ https://agency-script.tebex.io/package/essentials ║
-- ║ ║
-- ╚══════════════════════════════════════════════════════════╝
--
-- ============================================================
Config = {}
-- If true, player preferences are saved to and loaded from the database.
-- Requires oxmysql. Set to false to disable all DB usage.
-- When false, all players always start with the default settings below.
Config.UseDatabase = true
-- The command players use to open the in-game settings menu.
Config.MenuCommand = 'anotify'
-- Language for the settings menu UI.
-- Supported: en, de, fr, es, pt, nl, pl, it, tr, cs, ro, sv, da, no
Config.Locale = 'en'
-- AgencyAI - Smart notification intelligence.
-- Analyzes notifications in real-time: auto-priority detection, spam protection,
-- smart duration scaling based on text length, and duplicate grouping.
Config.AgencyAI = {
enabled = true, -- Master toggle for all AI features
smartPriority = true, -- Auto-detect priority from keywords (error/warning = urgent)
spamProtection = true, -- Suppress duplicate notifications within cooldown window
spamCooldown = 2000, -- Cooldown in ms before same notification can repeat
smartDuration = true, -- Auto-scale duration based on text length
minDuration = 3000, -- Minimum duration in ms
maxDuration = 15000, -- Maximum duration in ms
charsPerSecond = 12, -- Reading speed used for smart duration calculation
}
-- Default settings applied for every player.
-- These are also the fallback when UseDatabase = false.
Config.Defaults = {
position = 'center-right', -- top-right | top-left | center-right | center-left | bottom-right | bottom-left
durationModifier = 1.0, -- 0.5 = half length, 1.0 = normal, 2.0 = double length
accentColor = 'blue', -- blue | orange | purple | pink | green | red | cyan | gold
notifScale = 1.0, -- 0.6 = small, 1.0 = normal, 1.5 = large
notifStyle = 'v2' -- v1 = classic singularity, v2 = ultra modern
}