Configuration

Configuration file overview:

config.lua

Config = {}

-- Language
Config.Language = "EN" -- Languages: EN | HU | ES | RU | ZH | FR | TR | PL

-- Open Menu
Config.Command = "squad"
Config.OpenKey = "F6" -- set it false if you don't want to use it
Config.Description = "Squad system" -- description of the keymap

-- Squad settings
Config.MaxSlot = 32
Config.MaxNameLength = 15
Config.MaxPasswordLength = 15
Config.UseNotify = true
Config.FriendlyFireEnabled = false

-- Player blips
Config.PlayerBlips = {
	Enabled = true, -- Enable/Disable player blips
	Settings = {
		Category = true, -- Blip category
		Sprite = 1, -- Blip sprite
		Color = 3, -- Blip color
		Scale = 1.0, -- Blip scale
	},
}

-- Player names
Config.PlayerNames = {
	Enabled = true, -- Enable/Disable player names
	Display = {
		IDs = true, -- Enable/Disable player IDs display
		HealthAndArmour = true, -- Enable/Disable health and armour display
	},
	Colors = {
		NameColor = 48,
		HealthColor = 129,
		Alpha = 200,
	},
	Distance = 200, -- Distance to display names
}

-- Player healths
Config.PlayerHealths = {
	Enabled = true, -- Enable/Disable player health display
	MaxSelect = 4, -- Maximum number of players to select
}

-- Player ping
-- Images can be found in "pingMarkers" folder
Config.PlayerPing = {
	Enabled = true, -- Enable/Disable player ping system
	Buttons = {
		PingButton = 348, -- Set ping button
		QuickPingButton = 348, -- Set the quick ping button
	},
	PingCooldown = 10000,
	PingRange = 300,
	RefreshRaycast = 1000,
}

Last updated

Was this helpful?