forked from i-kulgu/ik-jobgarage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
117 lines (111 loc) · 2.98 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
Config = {}
Config.enablepayment = false -- Change into true to charge for cars
Config.savecar = false -- Change this to true if you want to save the car in database
Config.UseCarItems = false -- Change into true if you want to use trunk items. Look down for Config.CarItems to set up items
Config.CustomExtras = false -- Set this true if you want custom car extra's. Look down for Config.CarExtras to set up extras
Config.CustomLivery = false -- Set this true if you want custom livery for your cars. Look down for Config.CarExtras to set up livery
Config.MaxMod = false -- Set this to true if you want your vehicle max modded. Look down for Config.CarMods to enable / disable the desired parts to max mod
Config.viewcoords = vector3(454.75, -1020.45, 28.32)
Config.spawnloc = {
coords = vector3(455.45, -1023.67, 28.46),
heading = 49.96
}
Config.Pedlocation = {
{Cords = vector3(459.04, -1017.28, 27.16), h = 91.99} -- NPC Spawn Location.
}
Config.Garage = {
spawn = vector3(459.04708, -1017.191, 28.15582),
out = vector3(451.67, -1019.81, 28.42),
list = {
["01"] = {
model = "policeb",
label = "Police Bike",
rank = { 0, 1 },
price = 0,
},
["02"] = {
model = "police",
label = "Police Car 1",
rank = { 0, 1, 2 },
price = 0,
},
["03"] = {
model = "police2",
label = "Police Car 2",
rank = { 0, 1, 2, 3 },
price = 0,
},
["04"] = {
model = "police3",
label = "Police HSU",
rank = { 3, 4 },
price = 0,
},
["05"] = {
model = "police4",
label = "Police Unmarked",
rank = { 1, 2, 3, 4 },
price = 0,
},
["06"] = {
model = "policet",
label = "Police Van",
rank = { 1, 2 },
price = 0,
},
["07"] = {
model = "riot",
label = "Riot",
rank = { 3, 4 },
price = 0,
},
},
}
Config.CarItems = {
[1] = {
name = "heavyarmor",
amount = 2,
info = {},
type = "item",
slot = 1,
},
[2] = {
name = "empty_evidence_bag",
amount = 10,
info = {},
type = "item",
slot = 2,
},
[3] = {
name = "police_stormram",
amount = 1,
info = {},
type = "item",
slot = 3,
},
}
Config.CarExtras = {
["extras"] = {
["1"] = true, -- on/off
["2"] = true,
["3"] = true,
["4"] = true,
["5"] = true,
["6"] = true,
["7"] = true,
["8"] = true,
["9"] = true,
["10"] = true,
["11"] = true,
["12"] = true,
["13"] = true,
},
["livery"] = 1,
}
Config.CarMods = {
engine = false,
brakes = false,
gearbox = false,
armour = false,
turbo = false,
}