forked from Qbox-project/qbx_cityhall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
92 lines (87 loc) · 2.38 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
Config = Config or {}
Config.UseTarget = GetConvar('UseTarget', 'false') == 'true' -- Use qb-target interactions (don't change this, go to your server.cfg and add `setr UseTarget true` to use this and just that from true to false or the other way around)
Config.Cityhalls = {
{ -- Cityhall 1
coords = vec3(-265.0, -963.6, 31.2),
showBlip = true,
blipData = {
sprite = 487,
display = 4,
scale = 0.65,
colour = 0,
title = "City Services"
},
licenses = {
["id"] = {
item = 'id_card',
label = "ID",
cost = 50,
},
["driver"] = {
item = 'driver_license',
label = "Driver License",
cost = 50,
},
["weapon"] = {
item = 'weaponlicense',
label = "Weapon License",
cost = 50,
},
}
},
}
Config.DrivingSchools = {
{ -- Driving School 1
coords = vec3(240.3, -1379.89, 33.74),
showBlip = true,
blipData = {
sprite = 225,
display = 4,
scale = 0.65,
colour = 3,
title = "Driving School"
},
instructors = {
"DJD56142",
"DXT09752",
"SRI85140",
}
},
}
Config.Peds = {
-- Cityhall Ped
{
model = 'a_m_m_hasjew_01',
coords = vec4(-262.79, -964.18, 30.22, 181.71),
scenario = 'WORLD_HUMAN_STAND_MOBILE',
cityhall = true,
zoneOptions = { -- Used for when UseTarget is false
length = 3.0,
width = 3.0,
debugPoly = false
}
},
-- Driving School Ped
{
model = 'a_m_m_eastsa_02',
coords = vec4(240.91, -1379.2, 32.74, 138.96),
scenario = 'WORLD_HUMAN_STAND_MOBILE',
drivingschool = true,
zoneOptions = { -- Used for when UseTarget is false
length = 3.0,
width = 3.0
}
}
}
Config.Employment = {
enabled = true, -- Set to false to disable the employment menu
jobs = {
unemployed = 'Unemployed',
trucker = 'Trucker',
taxi = 'Taxi',
tow = 'Tow Truck',
reporter = 'News Reporter',
garbage = 'Garbage Collector',
bus = 'Bus Driver'
}
}