-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
201 lines (177 loc) · 4.84 KB
/
Copy pathconfig.lua
File metadata and controls
201 lines (177 loc) · 4.84 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
Config = {}
Config.Debug = true
Config.MuiltiJob = false
Config.EnableMarkers = false
Config.UseTarget = true
Config.VersionCheck = true
Config.ToggleHUD = true
Config.ToggleRadar = true
Config.Framework = 'qb' -- qb/esx
Config.Multijob = {
enabled = true,
type = 'Domas_MultiJob', -- Currently only Domas_MultiJob supported
script = 'Domas_MultiJob',
maxJobs = 3,
}
Config.AntiCheat = {
enabled = true,
distance = true,
joblist = true,
ban = false, -- Code in your ban logic at server.lua
print = true,
kick = true,
}
Config.Jobs = {
['police'] = {
label = 'Police',
description = 'Fight Robbers!',
icon = 'handcuffs',
Info = {
tag = 'LAW',
location = 'Los Santos PD',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['ambulance'] = {
label = 'Ambulance',
description = 'Heal people!',
icon = 'notes-medical',
Info = {
tag = 'LAW',
location = 'Pillbox Hospital',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['lumberjack'] = {
label = 'Lumberjack',
description = 'Chop down trees!',
icon = 'tree',
Info = {
tag = 'CIVILIAN',
location = 'Paleto Forest',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['garbage'] = {
label = 'Garbage Man',
description = 'Clean the city!',
icon = 'truck-moving',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['taxi'] = {
label = 'Taxi',
description = 'Drive around!',
icon = 'truck-moving',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['miner'] = {
label = 'Miner',
description = 'Mine the coal!',
icon = 'truck-moving',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['garden'] = {
label = 'Gardener',
description = 'Plant the plants!',
icon = 'sun-plant-wilt',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['mechanic'] = {
label = 'Mechanic',
description = 'Fix the cars!',
icon = 'screwdriver-wrench',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
},
['post'] = {
label = 'Post Man',
description = 'Deliver the mail!',
icon = 'envelopes-bulk',
Info = {
tag = 'CIVILIAN',
location = 'Los Santos',
Requirements = 'None',
Type = 'Full Time',
description = '',
salary = 500
}
}
}
Config.Places = {
[1] = {
Coords = vector3(-267.2227, -960.8663, 31.22316),
ListedJobs = {'police', 'ambulance', 'lumberjack', 'garbage', 'taxi', 'miner', 'garden', 'mechanic', 'post'},
Blip = {
enabled = true,
sprite = 408,
color = 7,
size = 1.0,
name = '<font face=\'Roboto\'>Darbo Birža'
},
NPC = {
enabled = true,
npc = 'a_m_y_business_03',
pos = vec4(-267.142975, -960.907166, 30.223129, 199.648758),
},
Marker = {
enabled = true,
sprite = 20,
r = 255,
g = 255,
b = 0,
size = vector3(1.0, 1.0, 1.0),
floating = true,
drawText = true,
text = '~g~[E]~w~Job Center'
}
}
}
Config.Text = {
['job_applied'] = 'You was hired!',
['error_add'] = 'Unable to add job.',
['max_jobs_reached'] = 'You cannot take more jobs. Reach the limit.',
['already_has_job'] = 'You already have this job.'
}