This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathconfig.lua
67 lines (63 loc) · 1.6 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
Config = {}
Config.UseTarget = GetConvar('UseTarget', 'false') == 'true'
Config.TruckerJobTruckDeposit = 125
Config.TruckerJobFixedLocation = false
Config.TruckerJobMaxDrops = 20 -- amount of locations before being forced to return to station to reload
Config.TruckerJobDropPrice = 500
Config.TruckerJobBonus = 20 -- this is a percentage to calculate bonus over 5 deliveries.
Config.TruckerJobPaymentTax = 15
Config.TruckerJobLocations = {
["main"] = {
label = "Truck Shed",
coords = vector4(153.68, -3211.88, 5.91, 274.5),
},
["vehicle"] = {
label = "Truck Storage",
coords = vector4(141.12, -3204.31, 5.85, 267.5),
},
}
Config.TruckerJobVehicles = {
["rumpo"] = {
["label"] = "Rumpo Delivery Van",
["cargodoors"] = {
[0] = 2,
[1] = 3
},
["trunkpos"] = 1.5
},
["benson"] = {
["label"] = "Benson Box Truck",
["jobrep"] = 0,
["cargodoors"] = {
[0] = 5
},
["trunkpos"] = 3
},
["mule5"] = {
["label"] = "Mule Box Truck",
["jobrep"] = 0,
["cargodoors"] = {
[0] = 2,
[1] = 3
},
["trunkpos"] = 1.5
},
["pounder"] = {
["label"] = "Pounder Box Truck",
["jobrep"] = 0,
["cargodoors"] = {
[0] = 2,
[1] = 3
},
["trunkpos"] = 7
},
["boxville4"] = {
["label"] = "Boxville StepVan",
["jobrep"] = 0,
["cargodoors"] = {
[0] = 2,
[1] = 3
},
["trunkpos"] = 1.5
},
}