Config.lua

ShowIdsAboveHeads     = true

We do not recommend enabling this it may cause issues

Config = {}

Config.settings = {
	Debug = false,               -- true or false
	EnableScoreboardSystem = true, -- true or false
	canAdjustSizes = false,       -- if its true it will adjust the size of the scoreboard when you disable ShowPlayerJob or ShowAdmins
	positions = "right", -- right | left | center
	navBarPositions = "left", -- right | left | center
}

Config.Scoreboard = {
	ServerName            = "SCOREBOARD", -- Scoreboard name
	Key                   = "HOME",
	Cmd                   = "scoreboard", -- Scoreboard open command

	ServerSlots           = 128,        -- It's optional because it will count automatically
	ShowPlayerJob         = true,
	ShowAdmins            = true,

	ShowPlayersList       = true,
	EnableJobsListingPage = true,
	EnableRobberyPage     = true,
	EnableInformationPage = true,

	ShowmyId = false, -- if its true it will show your ID above your head to
	ShowIdsAboveHeads     = true,
	showplayeridsdistance = 3.0,

	ShowHeistsProgress    = true, -- if its true it will show the progress of the heists
	ShowBlackMoney = true,
	BlackMoneyLabel       = "Black Money", -- Dirty Money
	ScoreboardHeaders     = {
		id = "ID",
		Name = "Name",
		Job = "Job",
		Role = "Role",
		Ping = "Ping",
	},
	SwitchNavbarIcons     = {
		scoreboard  = "fa fa-user",
		information = "fas fa-circle-info",
		jobslist    = "fas fa-briefcase",
		robbery     = "fas fa-sack-dollar",
	},
}

 
--- https://fontawesome.com/search?q=board&o=r&m=free
Config.Jobs = {
	[1] = {
		name = 'police',
		icon = 'fa-solid fa-building-shield',
		label = 'Police',
	},
	[2] = {
		name = 'mechanic',
		icon = 'fa-solid fa-gear',
		label = 'Mechanic',
	},
	[3] = {
		name = 'ambulance',
		icon = 'fa-solid fa-hospital',
		label = 'EMS',
	},
	-- add more if you want!
	-- [4] = {
	-- 	name = 'te',
	-- 	icon = 'fa-f',
	-- 	label = 'TE'
	-- },
}

Config.heists = {

	['storerobbery'] = {
		icon = 'fa-solid fa-store',
		title = "Store Robbery",
		job = "police",
		count = 1,
		busy = false
	},
	['jeweleryrobbery'] = {
		icon = 'fa-solid fa-ring',
		title = "Jewelery Robbery",
		job = "police",
		count = 2,
		busy = false
	},
	['fleecabankrobbery'] = {
		icon = 'fa-solid fa-building-columns',
		title = "Fleeca Bank Robbery",
		job = "police",
		count = 1,
		busy = false
	}
	-- Add more if you want
	-- ['rob'] = {
	-- 	icon = 'fa-gem',
	-- 	title = ".. Robbery",
	-- 	job = "test",
	-- 	count = 2,
	-- 	busy = false
	-- },
}

Last updated