-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconfig.lua
67 lines (63 loc) · 1.77 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 = {}
-- debug
Config.Debug = false
-- settings
Config.AddGPSRoute = true
Config.AlertTimer = 60
Config.Keybind = 'J'
Config.StorageMaxWeight = 4000000
Config.StorageMaxSlots = 50
Config.TrashCollection = 1 -- mins
Config.ArmouryAccessGrade = 1 -- and greater than
Config.SearchTime = 10000
Config.SearchDistance = 2.5
-- Law Office Prompt Locations
Config.LawOfficeLocations =
{
{ -- valentine
name = 'Lawman Office',
prompt = 'vallawoffice',
coords = vector3(-278.42, 805.29, 119.38),
jobaccess = 'vallaw',
blipsprite = 'blip_ambient_sheriff',
blipscale = 0.2,
showblip = true
},
{ -- rhodes
name = 'Lawman Office',
prompt = 'rholawoffice',
coords = vector3(1362.04, -1302.10, 77.77),
jobaccess = 'rholaw',
blipsprite = 'blip_ambient_sheriff',
blipscale = 0.2,
showblip = true
},
{ -- blackwater
name = 'Lawman Office',
prompt = 'blklawoffice',
coords = vector3(-761.76, -1268.18, 44.04),
jobaccess = 'blklaw',
blipsprite = 'blip_ambient_sheriff',
blipscale = 0.2,
showblip = true
},
{ -- strawberry
name = 'Lawman Office',
prompt = 'strlawoffice',
coords = vector3(-1811.95, -353.94, 164.65),
jobaccess = 'strlaw',
blipsprite = 'blip_ambient_sheriff',
blipscale = 0.2,
showblip = true
},
{ -- saint denis
name = 'Lawman Office',
prompt = 'stdenlawoffice',
coords = vector3(2507.72, -1301.89, 48.95),
jobaccess = 'stdenlaw',
blipsprite = 'blip_ambient_sheriff',
blipscale = 0.2,
showblip = true
},
}
Config.LawJobs = { 'vallaw' , 'rholaw', 'blklaw', 'strlaw', 'stdenlaw' }