-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.lua
119 lines (118 loc) · 3.83 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
Config = {
-- Default Settings
devMode = false,
PlayYear = "1900",
-- Language settings
defaultlang = "en_lang", -- Set Your Language (Current Languages: "en_lang" English, "ro_lang" Romanian)
-- Command Settings
AdminJob = "admin", -- allow Admin-Jobs to give unbuyable licenses
NeedItem = true, -- Set true or false, if you want to need an item zu execute the commands
NeedItemName = "paper", -- define the item-name set in db
-- NPC and Blip settings
DocumentBlips = true,
DocumentNPC = true,
DocumentLocations = {
{
coords = vector3(-175.29, 631.92, 114.09),
NpcHeading = 326.82,
},
{
coords = vector3(-798.53, -1194.58, 43.95),
NpcHeading = 190.82,
},
{
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,
expiryDays = 0, -- Set expiry duration by default
defaultPicture = '',
sellNpc = true,
givenCommand = false,
allowJob = "",
},
huntinglicence = {
displayName = "Hunting Licence",
price = 10,
reissuePrice = 30,
changePhotoPrice = 10,
extendPrice = 10,
expiryDays = 1, -- Set expiry duration by default
defaultPicture ='',
sellNpc = true,
givenCommand = false,
allowJob = "",
},
mininglicence = {
displayName = "Mining Licence",
price = 20,
reissuePrice = 25,
changePhotoPrice = 10,
extendPrice = 10,
expiryDays = 1, -- Set expiry duration by default
defaultPicture = '',
sellNpc = true,
givenCommand = false,
allowJob = "",
},
lumberlicence = {
displayName = "Lumber Licence",
price = 15,
reissuePrice = 20,
changePhotoPrice = 10,
extendPrice = 10,
expiryDays = 1, -- Set expiry duration by default
defaultPicture = '',
sellNpc = true,
givenCommand = false,
allowJob = "",
},
goldpanninglicence = {
displayName = "Gold Panning Licence",
price = 10,
reissuePrice = 15,
changePhotoPrice = 10,
extendPrice = 10,
expiryDays = 1, -- Set expiry duration by default
defaultPicture = '',
sellNpc = true,
givenCommand = false,
allowJob = "",
},
weaponlicense = {
displayName = "Weaponlicense",
price = 0,
reissuePrice = 0,
changePhotoPrice = 0,
extendPrice = 0,
expiryDays = 0, -- Set expiry duration by default
defaultPicture = '',
sellNpc = false,
givenCommand = "giveweaponlicense",
allowJob = "doj",
}
},
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" },
}
}