-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.lua
More file actions
48 lines (43 loc) · 1.36 KB
/
config.lua
File metadata and controls
48 lines (43 loc) · 1.36 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
Config = {}
-- Framework (can be 'ESX' or 'QB')
Config.Framework = 'ESX'
-- UI display time in milliseconds (global)
Config.DisplayTime = 20000 -- Adjust this value according to your needs
-- Job configuration, ranks, and texts for the UI
Config.Jobs = {
['police'] = {
label = "Police Department",
ranks = {1, 2, 3, 4, 5, 6, 7, 8, 9},
openText = "There is POLICE available at the station",
closeText = "There is NO POLICE available at the station"
},
['ambulance'] = {
label = "Los Santos Hospital",
ranks = {1, 2, 3, 4, 5, 6, 7},
openText = "EMS is available at the hospital",
closeText = "No EMS is available at the hospital"
},
['mechanic'] = {
label = "Mechanic Shop",
ranks = {4},
openText = "The Mechanic Shop is OPEN",
closeText = "The Mechanic Shop is CLOSED"
},
['taxi'] = {
label = "Taxi",
ranks = {0, 1, 2, 3, 4},
openText = "Taxis are available",
closeText = "No taxis available"
},
['realestate'] = {
label = "Real Estate",
ranks = {1, 2, 3, 4, 5},
openText = "Real Estate is OPEN",
closeText = "Real Estate is CLOSED"
}
}
-- Configurable commands
Config.OpenCommand = 'open'
Config.CloseCommand = 'closed'
-- Cooldown time for commands (in seconds)
Config.CooldownTime = 300