-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
44 lines (40 loc) · 1.04 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
Config = {}
Config.Groups = { "Mekaniker", "Mekaniker Chef" }
Config.NpcCarPrice = 1000
Config.Scrapyards = {
{
Coords = vector3(-440.9921875,-1698.4564208984,18.940183639526),
Name = 'Skrotplads'
},
{
Coords = vector3(1091.9002685547,3588.9992675781,32.7793995513916),
Name = 'Skrotplads'
},
{
Coords = vector3(-128.37242126465,6214.96484375,30.209449249268),
Name = 'Skrotplads'
}
}
Config.ScrapPrices = {
[0] = 3600, -- compacts
[1] = 4000, -- sedans
[2] = 5200, -- SUVs
[3] = 6400, -- coupes
[4] = 5000, -- muscle
[5] = 6500, -- sport classic
[6] = 7200, -- sport
[7] = 11000, -- super
[8] = 2200, -- motorcycle
[9] = 3800, -- offroad
[10] = 4400, -- industrial
[11] = 3400, -- utility
[12] = 3400, -- vans
[13] = 400, -- bicycles
[14] = 2000, -- boats
[15] = 8200, -- helicopter
[16] = 9000, -- plane
[17] = 2900, -- service
[18] = 5000, -- emergency
[19] = 6200, -- military
[20] = 3400 -- commercial
}