-
Notifications
You must be signed in to change notification settings - Fork 16
/
config.lua
78 lines (71 loc) · 1.53 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
QBCore = exports['qb-core']:GetCoreObject()
Config = {}
Config.RenewedPhone = false --> Set to true if you are using Renewed scripts their qb-phone
Config.idcard = "qbx_idcard" -- bl_idcard, qbx_idcard, um_idcard
-- Ped spawner
Config.ped = {
enabled = true,
model = "a_m_m_indian_01",
coords = vector4(-266.88833618164, -961.62231445313, 30.227128982544, 210.22946166992),
label = "Open cityhall"
}
Config.blip = {
enabled = true,
Name = "Cityhall",
SpriteId = 487,
Color = 2,
Scale = 1.3,
ShortRange = true,
Alpha = 255,
Coords = vector3(-266.88833618164, -961.62231445313, 31.227128982544)
}
-- Jobs for hire
Config.jobs = {
{
job = "trucker",
label = "Trucker",
},
{
job = "taxi",
label = "Taxi",
},
{
job = "tow",
label = "Tow Truck",
},
{
job = "reporter",
label = "News Reporter",
},
}
-- Items for purchase
Config.items = {{
item = "id_card",
meta = 'id',
label = "ID Card",
price = 100,
id_card = true
}, {
item = "driver_license",
label = "Driver License",
meta = 'driver',
price = 100,
id_card = true,
}, {
item = "weaponlicense",
label = "Weapon License",
meta = 'weapon',
price = 100,
id_card = true
}}
-- Items shown in the information tab
Config.licenseItems = {{
item = 'id_card',
label = 'ID Card'
}, {
item = 'driver_license',
label = 'Driver License'
}, {
item = 'weaponlicense',
label = 'Weapon License'
}}