View difference between Paste ID: 0ALbX7gb and NHuBw9DX
SHOW: | | - or go back to the newest paste.
1
TEAM_BOUNTY_HUNTER = DarkRP.createJob("Bounty Hunter", {
2
    color = Color(255, 0, 0, 255),
3
    model = {"models/player/alyx.mdl"},
4
    description = [[This is a Bounty Hunter.]],
5
    weapons = {},
6
    command = "bountyhunter",
7
    max = 5,
8
    salary = 5,
9
    admin = 0,
10
    vote = false,
11
    hasLicense = false,
12
    candemote = false,
13
    category = "Prisoners"
14
})
15
16
TEAM_MEDIC = DarkRP.createJob("Medic", {
17
    color = Color(255, 0, 0, 255),
18
    model = {"models/player/alyx.mdl"},
19
    description = [[This is a Medic.]],
20
    weapons = {},
21
    command = "medic",
22
    max = 5,
23
    salary = 5,
24
    admin = 0,
25
    vote = false,
26
    hasLicense = false,
27
    candemote = false,
28
    category = "Prisoners"
29
})
30
31
TEAM_SMUGGLER = DarkRP.createJob("Smuggler", {
32
    color = Color(255, 0, 0, 255),
33
    model = {"models/player/alyx.mdl"},
34
    description = [[This is a Smuggler.]],
35
    weapons = {},
36
    command = "smuggler",
37
    max = 5,
38
    salary = 5,
39
    admin = 0,
40
    vote = false,
41
    hasLicense = false,
42
    candemote = false,
43
    category = "Prisoners"
44
})
45
46
TEAM_COOK = DarkRP.createJob("Cook", {
47
    color = Color(255, 0, 0, 255),
48
    model = {"models/player/alyx.mdl"},
49
    description = [[This is a Cook.]],
50
    weapons = {},
51
    command = "cook",
52
    max = 5,
53
    salary = 5,
54
    admin = 0,
55
    vote = false,
56
    hasLicense = false,
57
    candemote = false,
58
    category = "Prisoners"
59
})
60
61
TEAM_THIEF = DarkRP.createJob("Thief", {
62
    color = Color(255, 0, 0, 255),
63
    model = {"models/player/alyx.mdl"},
64
    description = [[This is a Thief.]],
65
    weapons = {},
66
    command = "thief",
67
    max = 5,
68
    salary = 5,
69
    admin = 0,
70
    vote = false,
71
    hasLicense = false,
72
    candemote = false,
73
    category = "Prisoners"
74
})
75
76
TEAM_HOBO = DarkRP.createJob("Hobo", {
77
    color = Color(255, 0, 0, 255),
78
    model = {"models/player/alyx.mdl"},
79
    description = [[This is a Hobo.]],
80
    weapons = {},
81
    command = "hobo",
82
    max = 5,
83
    salary = 5,
84
    admin = 0,
85
    vote = false,
86
    hasLicense = false,
87
    candemote = false,
88
    category = "Prisoners"
89
})
90
91
TEAM_PROSTITUTE = DarkRP.createJob("Prostitute", {
92
    color = Color(255, 0, 0, 255),
93
    model = {"models/player/alyx.mdl"},
94
    description = [[This is a Hobo.]],
95
    weapons = {},
96
    command = "prostitute",
97
    max = 5,
98
    salary = 5,
99
    admin = 0,
100
    vote = false,
101
    hasLicense = false,
102
    candemote = false,
103
    category = "Prisoners"
104
})
105
106
TEAM_CRIP_LEADER = DarkRP.createJob("Crip Leader", {
107
    color = Color(0, 56, 255, 255),
108
    model = {"models/player/alyx.mdl"},
109
    description = [[This is a Crip Leader]],
110
    weapons = {},
111
    command = "cripleader",
112
    max = 5,
113
    salary = 5,
114
    admin = 0,
115
    vote = true,
116
    hasLicense = false,
117
    candemote = false,
118
    category = "Prisoners"
119
})
120
121
TEAM_CRIP_MEMBER = DarkRP.createJob("Crip Member", {
122
    color = Color(0, 56, 255, 255),
123
    model = {"models/player/alyx.mdl"},
124
    description = [[This is a Crip Member]],
125
    weapons = {},
126
    command = "cripmember",
127
    max = 5,
128
    salary = 5,
129
    admin = 0,
130
    vote = false,
131
    hasLicense = false,
132
    candemote = false,
133
    category = "Prisoners"
134
})
135
136
TEAM_BLOOD_LEADER = DarkRP.createJob("Blood Leader", {
137
    color = Color(255, 0, 0, 255),
138
    model = {"models/player/alyx.mdl"},
139
    description = [[This is a Blood Leader]],
140
    weapons = {},
141
    command = "bloodleader",
142
    max = 5,
143
    salary = 5,
144
    admin = 0,
145
    vote = true,
146
    hasLicense = false,
147
    candemote = false,
148
    category = "Prisoners"
149
})
150
151
TEAM_BLOOD_MEMBER = DarkRP.createJob("Blood Member", {
152
    color = Color(255, 0, 0, 255),
153
    model = {"models/player/alyx.mdl"},
154
    description = [[This is a Blood Memebr]],
155
    weapons = {},
156
    command = "bloodmember",
157
    max = 5,
158
    salary = 5,
159
    admin = 0,
160
    vote = true,
161
    hasLicense = false,
162
    candemote = false,
163
    category = "Prisoners"
164
})
165
166
TEAM_GS13_LEADER = DarkRP.createJob("GS'13 Leader", {
167
    color = Color(255, 0, 0, 255),
168
    model = {"models/player/alyx.mdl"},
169
    description = [[This is a GS'13 Leader]],
170
    weapons = {},
171
    command = "gs13leader",
172
    max = 5,
173
    salary = 5,
174
    admin = 0,
175
    vote = true,
176
    hasLicense = false,
177
    candemote = false,
178
    category = "Prisoners"
179
})
180
181
TEAM_GS13_MEMBER = DarkRP.createJob("GS'13 Member", {
182
    color = Color(255, 0, 0, 255),
183
    model = {"models/player/alyx.mdl"},
184
    description = [[This is a GS'13 Member]],
185
    weapons = {},
186
    command = "gs13member",
187
    max = 5,
188
    salary = 5,
189
    admin = 0,
190
    vote = false,
191
    hasLicense = false,
192
    candemote = false,
193
    category = "Prisoners"
194
})
195
196
TEAM_HEAVY_SMUGGLER = DarkRP.createJob("Heavy Smuggler", {
197
    color = Color(255, 0, 0, 255),
198
    model = {"models/player/alyx.mdl"},
199
    description = [[This is a Heavy Smuggler]],
200
    weapons = {},
201
    command = "heavysmuggler",
202
    max = 5,
203
    salary = 5,
204
    admin = 0,
205
    vote = false,
206
    hasLicense = false,
207
    candemote = false,
208
    category = "VIP",
209
    customCheck = function(ply) return CLIENT or
210
        table.HasValue({"superadmin", "owner", "servermanager", "staffmanager", "headadmin"}, ply:GetNWString("usergroup"))
211
    end,
212
    CustomCheckFailMsg = "This is a VIP job only!",
213
})
214
215
TEAM_ELITE_THIEF = DarkRP.createJob("Elite Thief", {
216
    color = Color(255, 0, 0, 255),
217
    model = {"models/player/alyx.mdl"},
218
    description = [[This is a Elite Thief]],
219
    weapons = {},
220
    command = "elitethief",
221
    max = 5,
222
    salary = 5,
223
    admin = 0,
224
    vote = false,
225
    hasLicense = false,
226
    candemote = false,
227
    category = "VIP",
228
    customCheck = function(ply) return CLIENT or
229
        table.HasValue({"superadmin", "owner", "servermanager", "staffmanager", "headadmin"}, ply:GetNWString("usergroup"))
230
    end,
231
    CustomCheckFailMsg = "This is a VIP job only!",
232
})
233
234
TEAM_VAPE_SELLER = DarkRP.createJob("Vape Seller", {
235
    color = Color(255, 0, 0, 255),
236
    model = {"models/player/alyx.mdl"},
237
    description = [[This is a Vape Seller]],
238
    weapons = {},
239
    command = "vapeseller",
240
    max = 5,
241
    salary = 5,
242
    admin = 0,
243
    vote = false,
244
    hasLicense = false,
245
    candemote = false,
246
    category = "VIP",
247
    customCheck = function(ply) return CLIENT or
248
        table.HasValue({"superadmin", "owner", "servermanager", "staffmanager", "headadmin"}, ply:GetNWString("usergroup"))
249
    end,
250
    CustomCheckFailMsg = "This is a VIP job only!",
251
})
252
253
TEAM_DRUG_DEALER = DarkRP.createJob("Drug Dealer", {
254
    color = Color(255, 0, 0, 255),
255
    model = {"models/player/alyx.mdl"},
256
    description = [[This is a Drug Dealer]],
257
    weapons = {},
258
    command = "drugdealer",
259
    max = 5,
260
    salary = 5,
261
    admin = 0,
262
    vote = false,
263
    hasLicense = false,
264
    candemote = false,
265
    category = "VIP",
266
    customCheck = function(ply) return CLIENT or
267
        table.HasValue({"superadmin", "owner", "servermanager", "staffmanager", "headadmin"}, ply:GetNWString("usergroup"))
268
    end,
269
    CustomCheckFailMsg = "This is a VIP job only!",
270
})
271
272
TEAM_GATE_SECURITY = DarkRP.createJob("Gate Security", {
273
    color = Color(255, 0, 0, 255),
274
    model = {"models/player/alyx.mdl"},
275
    description = [[This is Gate Security]],
276
    weapons = {"stunstick", "m9k_colt1911"},
277
    command = "gatesecurity",
278
    max = 6,
279
    salary = 40,
280
    admin = 0,
281
    vote = false,
282
    hasLicense = false,
283
    candemote = false,
284
    category = "Prison Guards"
285
})
286
287
TEAM_MARKSMAN = DarkRP.createJob("Marksman", {
288
    color = Color(255, 0, 0, 255),
289
    model = {"models/player/alyx.mdl"},
290
    description = [[This is a Marksman]],
291
    weapons = {"stunstick", "m9k_colt1911"},
292
    command = "marksman",
293
    max = 6,
294
    salary = 40,
295
    admin = 0,
296
    vote = false,
297
    hasLicense = false,
298
    candemote = false,
299
    category = "Prison Guards"
300
})
301
302
TEAM_GUARD_CAPTAIN = DarkRP.createJob("Guard Captain", {
303
    color = Color(255, 0, 0, 255),
304
    model = {"models/player/alyx.mdl"},
305
    description = [[This is a Guard Captain]],
306
    weapons = {"stunstick", "m9k_colt1911"},
307
    command = "guardcaptain",
308
    max = 6,
309
    salary = 40,
310
    admin = 0,
311
    vote = false,
312
    hasLicense = false,
313
    candemote = false,
314
    category = "Prison Guards"
315
})
316
317
TEAM_GUARD_MEDIC = DarkRP.createJob("Guard Medic", {
318
    color = Color(255, 0, 0, 255),
319
    model = {"models/player/alyx.mdl"},
320
    description = [[This is a Guard Medic]],
321
    weapons = {"stunstick", "m9k_colt1911"},
322
    command = "guardmedic",
323
    max = 6,
324
    salary = 40,
325
    admin = 0,
326
    vote = false,
327
    hasLicense = false,
328
    candemote = false,
329
    category = "Prison Guards"
330
})
331
332
TEAM_GUARD_BOUNTY_HUNTER = DarkRP.createJob("Guard Bounty Hunter", {
333
    color = Color(255, 0, 0, 255),
334
    model = {"models/player/alyx.mdl"},
335
    description = [[This is a Guard Bounty Hunter]],
336
    weapons = {"stunstick", "m9k_colt1911"},
337
    command = "guardbountyhunter",
338
    max = 6,
339
    salary = 40,
340
    admin = 0,
341
    vote = false,
342
    hasLicense = false,
343
    candemote = false,
344
    category = "Prison Guards"
345
})