-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
55 lines (48 loc) · 1.09 KB
/
config.lua
File metadata and controls
55 lines (48 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
Config = {}
Config.scriptName = GetCurrentResourceName()
--// Framework - "ESX" or "QBCORE"
Config.Framework = "ESX"
Config.ScoreboardButton = "F9"
Config.ShowColumns = {
showID = true, -- Show ID column
showJob = true, -- Show Job column
showPlaytime = true, -- Show Playtime column
showPing = true, -- Show Ping column
}
Config.Settings = {
serverName1 = "Nevera",
serverName2 = "RP",
maxSlots = 128,
discord = "https://discord.com/app",
store = "https://tebex.io",
}
Config.ColorJobs = {
unemployed = "#9ca3af",
police = "#3b82f6",
ambulance = "#ef4444",
taxi = "#fbbf24",
mechanic = "#6b7280",
bus = "#10b981",
news = "#8b5cf6",
electrician = "#f97316",
realestate = "#ec4899",
lawyer = "#64748b",
garbage = "#84cc16",
fisherman = "#0ea5e9",
chef = "#f43f5e",
mining = "#a3e635",
gardener = "#22c55e"
}
--// This is for jobs that will be shot in scoreboard (top-right) as number only
Config.CountJobs = {
{
job = 'police',
text = "Police",
color = '#60a5fa'
},
{
job = 'taxi',
text = "Taxi",
color = '#fac460'
}
}