This repository has been archived by the owner on Oct 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.lua
60 lines (54 loc) · 1.88 KB
/
config.lua
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
56
57
58
59
60
Config = Config or {}
-- Side of the screen where you want the ui to be on. Can either be "left" or "right"
Config.Side = "right"
Config.MaxJobs = 3
Config.IgnoredJobs = {
["unemployed"] = true,
}
Config.DenyDuty = {
["ambulance"] = true,
["police"] = true,
}
Config.WhitelistJobs = {
["police"] = true,
["ambulance"] = true,
["mechanic"] = true,
["judge"] = true,
["lawyer"] = true,
}
Config.Descriptions = {
["police"] = "Shoot some criminals or maybe be a good cop and arrest them",
["ambulance"] = "Fix the bullet holes",
["mechanic"] = "Fix the bullet holes",
["tow"] = "Pickup the tow truck and steal some vehicles",
["taxi"] = "Pickup people around the city and drive them to their destination",
["bus"] = "Pickup multiple people around the city and drive them to their destination",
["realestate"] = "Sell houses or something",
["cardealer"] = "Sell cars or something",
["judge"] = "Decide if people are guilty",
["lawyer"] = "Help the good or the bad",
["reporter"] = "Lowkey useless",
["trucker"] = "Drive a truck",
["garbage"] = "Drive a garbage truck",
["vineyard"] = "Get them vines",
["hotdog"] = "Sell them glizzys",
}
-- Change the icons to any free font awesome icon, also add other jobs your server might have to the list
-- List: https://fontawesome.com/search?o=r&s=solid
Config.FontAwesomeIcons = {
["police"] = "fa-solid fa-handcuffs",
["ambulance"] = "fa-solid fa-user-doctor",
["mechanic"] = "fa-solid fa-wrench",
["tow"] = "fa-solid fa-truck-tow",
["taxi"] = "fa-solid fa-taxi",
["bus"] = "fa-solid fa-bus",
["realestate"] = "fa-solid fa-sign-hanging",
["cardealer"] = "fa-solid fa-cards",
["judge"] = "fa-solid fa-gave",
["lawyer"] = "fa-solid fa-gavel",
["reporter"] = "fa-solid fa-microphone",
["trucker"] = "fa-solid fa-truck-front",
["garbage"] = "fa-solid fa-trash-can",
["vineyard"] = "fa-solid fa-wine-bottle",
["hotdog"] = "fa-solid fa-hotdog",
}