-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathconfig.lua
60 lines (55 loc) · 1.78 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
Config = {}
-- config settings
Config.RemoveJob = true -- if true then player loses job
Config.MarkerDistance = 10.0 -- distance for the marker to show
Config.Keybind = 'J'
Config.DistanceSpawn = 20.0
Config.FadeIn = true
-- blip config
Config.Blip = {
blipName = 'Sisika Prison', -- Config.Blip.blipName
blipSprite = 'blip_mp_roles_bounty_hunter_lock', -- Config.Blip.blipSprite
blipScale = 0.2 -- Config.Blip.blipScale
}
-- locations
Config.Locations = {
["outside"] = { coords = vector4(3340.71, -629.99, 43.72, 36.36) },
["middle"] = { coords = vector4(3357.41, -679.26, 46.26, 165.59) },
spawns = {
[1] = { coords = vector4(3330.66, -692.75, 43.95, 292.86) },
[2] = { coords = vector4(3349.62, -650.41, 45.38, 207.53) },
[3] = { coords = vector4(3380.62, -672.35, 46.27, 110.95) },
[4] = { coords = vector4(3366.75, -666.08, 46.34, 297.69) }
}
}
-- prison menu location
Config.MenuLocations = {
{
name = 'Jail Menu',
prompt = 'sisikaprison',
coords = vector3(3352.11, -690.77, 44.25),
npcmodel = `s_m_m_skpguard_01`,
npccoords = vector4(3352.11, -690.77, 44.25, 31.30),
showblip = true
},
}
Config.PrisonZone =
{
[1] =
{
name = "prison",
zones =
{
vector2(3318.3984375, -657.3021850586),
vector2(3318.3984375, -657.3021850586),
vector2(3384.744140625, -640.3119506836),
vector2(3406.6110839844, -678.14178466796),
vector2(3368.9548339844, -724.2036743164),
vector2(3334.6440429688, -704.1216430664),
vector2(3329.4631347656, -698.779296875),
vector2(3318.314453125, -656.95434570312)
},
minZ = 44.26696395874,
maxZ = 46.395713806152
}
}