-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.lua
80 lines (80 loc) · 2.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
Config = {
-- Language settings
defaultlang = "en_lang", -- Set Your Language (Current Languages: "en_lang" English, "ro_lang" Romanian)
devMode = false, -- Set to 'true' to enable debug mode, 'false' to disable
-- NPC and Blip settings
DocumentBlips = true,
DocumentNPC = true,
DocumentLocations = {
{
coords = vector3(-175.29, 631.92, 114.09),
NpcHeading = 326.82,
},
{
coords = vector3(-878.52, -1334.74, 43.97),
NpcHeading = 73.94,
},
{
coords = vector3(1230.19, -1298.7, 76.9),
NpcHeading = 230.74,
},
{
coords = vector3(2747.9, -1396.45, 46.18),
NpcHeading = 31.65,
},
{
coords = vector3(2933.1, 1282.69, 44.65),
NpcHeading = 74.53,
},
},
-- Document types with associated details
DocumentTypes = {
idcard = {
displayName = "Identity Card",
price = 15,
reissuePrice = 20,
changePhotoPrice = 10,
extendPrice = 10,
defaultPicture = ''
},
huntinglicence = {
displayName = "Hunting Licence",
price = 10,
reissuePrice = 30,
changePhotoPrice = 10,
extendPrice = 10,
defaultPicture = ''
},
mininglicence = {
displayName = "Mining Licence",
price = 20,
reissuePrice = 25,
changePhotoPrice = 10,
extendPrice = 10,
defaultPicture = ''
},
lumberlicence = {
displayName = "Lumber Licence",
price = 15,
reissuePrice = 20,
changePhotoPrice = 10,
extendPrice = 10,
defaultPicture = ''
},
goldpanninglicence = {
displayName = "Gold Panning Licence",
price = 10,
reissuePrice = 15,
changePhotoPrice = 10,
extendPrice = 10,
defaultPicture = ''
}
},
Textures = {
['cross'] = { "scoretimer_textures", "scoretimer_generic_cross" },
['locked'] = { "menu_textures", "stamp_locked_rank" },
['tick'] = { "scoretimer_textures", "scoretimer_generic_tick" },
['money'] = { "inventory_items", "money_moneystack" },
['alert'] = { "menu_textures", "menu_icon_alert" },
}
}