-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.lua
61 lines (55 loc) · 1.52 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
Config = {}
Config.GrapePickingCooldownTime = 10 -- Time Is In Minutes
Config.Target = 'qb-target'
-- 'qb-target' = QBCore Target
-- 'qtarget' = QTarget by Overextended
Config.DebugPoly = true
-- True = Poly's Enabled
-- False = Poly's Disabled
Config.Blip = true
-- True = Blips Enabled
-- Blip = Config.EnabledBlip
-- False = Blips Disabled
Config.EnabledBlip = {
BlipSprite = 615,
BlipDisplay = 4,
BlipScale = 0.6,
BlipColour = 58,
BlipName = "Vineyard",
}
Config.Routes = {
[1] = {
DeliveryCoords = vector3(193.2354, 103.5669, 93.5474),
Heading = 161.8913
},
[2] = {
DeliveryCoords = vector3(-413.9259, 220.4128, 83.4308),
Heading = 315.9512
},
[3] = {
DeliveryCoords = vector3(-1213.4998, -406.7510, 34.1401),
Heading = 210.8096
},
[4] = {
DeliveryCoords = vector3(-1213.4998, -406.7510, 34.1401),
Heading = 297.4095
},
[5] = {
DeliveryCoords = vector3(63.8172, -1729.1006, 29.6441),
Heading = 49.4062
},
}
Config.RoutesBlipConfig = {
BlipSprite = 274,
BlipDisplay = 3,
BlipScale = 0.6,
BlipColour = 59,
BlipName = "Dealer Destination",
}
Config.Notifications = {
--Messages
["TaskCancel"] = "You have cancelled the task...",
["PickGrapesNextStepMessage"] = "Begin heading to the back two Doors of the Mansion...",
--OkOk Titles
["okok_VineyardTitle"] = "Juice System Aid",
}