Config File Descriptions

sConfig = {}

sConfig.Perm = "god" -- The required permission to open the menu.
sConfig.ImageUrl = "https://resmim.net/cdn/2025/02/17/NWgQAn.png" -- server-logo link
sConfig.InviteUrl = "https://discord.gg/atomikdev" -- discord server link

sConfig.BanCommand = "ban" -- ban command
sConfig.OffBanCommand = "offban" -- offban command
sConfig.UnBanCommand = "unban" -- unban command

local currentlocale = "en" -- en | tr

local Locales = {
    tr = {
        ["bansuccess"] = "Oyuncu başarılı bir şekilde sunucudan yasaklandı.",
        ["kickmessage"] = "Sunucudan yasaklandın. Sebep: %s",
        ["notfoundp"] = "Oyuncu bulunamadı.",
        ["unbansucces"] = "Oyuncunun yasağı başarıyla kaldırıldı.",
        ["banidnotfound"] = "Belirtilen ID ile yasaklı oyuncu bulunamadı.",
        ["bancmmndsc"] = "Oyuncuyu banlar. (Online)",
        ["bancmndwrng"] = "/ban id süre sebep",
        ["noreason"] = "Sebep belirtilmedi",
        ["wrongidentifier"] = "Geçersiz identifier!",
        ["wrongtime"] = "Geçersiz süre formatı! Geçerli süreler: 1m, 1h, 1d, 1w, 1y, perma",
        ["offbancmddesc"] = "Oyuncuyu sunucudan yasaklar (Offline)",
        ["offbanwrong"] = "/offban identifier süre sebep",
        ["unbancmndsc"] = "Oyuncunun banını açar.",
        ["unbancmnwrng"] = "/unban banid.",
        ["bancheck"] = "Ban kontrol ediliyor...",
        ["banHeader"] = "🚫 Sunucudan Banlandın 🚫",
        ["banReason"] = "**Sebep:** ",
        ["banEndTime"] = "**Bitiş Tarihi:** ",
        ["banFootNote"] = "Eğer bu banın hatalı olduğunu düşünüyorsan, destek sunucumuza katıl!",
        ["banSupportText"] = "Destek Sunucusu"
    },
    
    en = {
        ["bansuccess"] = "Player has been successfully banned from the server.",
        ["kickmessage"] = "You have been banned. Reason: %s",
        ["notfoundp"] = "Player not found.",
        ["unbansucces"] = "The player's ban has been successfully removed.",
        ["banidnotfound"] = "No banned player found with the specified ID.",
        ["bancmmndsc"] = "Bans a player. (Online)",
        ["bancmndwrng"] = "/ban id time reason",
        ["noreason"] = "No Reason",
        ["wrongidentifier"] = "Invalid identifier!",
        ["wrongtime"] = "Invalid time format! Valid formats: 1m, 1h, 1d, 1w, 1y, perma",
        ["offbancmddesc"] = "Bans a player from the server (Offline)",
        ["offbanwrong"] = "/offban identifier time reason",
        ["unbancmndsc"] = "Removes a player's ban.",
        ["unbancmnwrng"] = "/unban banid.",
        ["bancheck"] = "Checking ban status...",
        ["banHeader"] = "🚫 You Have Been Banned 🚫",
        ["banReason"] = "**Reason:** ",
        ["banEndTime"] = "**End Date:** ",
        ["banFootNote"] = "If you think this ban is a mistake, join our support server!",
        ["banSupportText"] = "Support Server"
    }
}

sConfig.Locales = Locales[currentlocale] or Locales["tr"]

Last updated