Advertisement
Guest User

Untitled

a guest
May 16th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.25 KB | None | 0 0
  1. TEAM_MAFIAASSOCIATE = DarkRP.createJob("Mafia Associate", {
  2. color = Color(255, 0, 0, 255),
  3. model = {
  4. "models/player/suits/male_07_closed_coat_tie.mdl",
  5. "models/player/suits/male_07_closed_tie.mdl",
  6. "models/player/suits/male_07_open.mdl",
  7. "models/player/suits/male_07_open_tie.mdl",
  8. "models/player/suits/male_07_open_waistcoat.mdl",
  9. "models/player/suits/male_07_shirt.mdl",
  10. "models/player/suits/male_07_shirt_tie.mdl"
  11. },
  12. description = [[You are part of the Mafia]],
  13. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  14. command = "MafiaAssociate",
  15. max = 0,
  16. salary = 100,
  17. admin = 0,
  18. vote = false,
  19. hasLicense = false,
  20. candemote = false,
  21. category = "Mafia",
  22. PlayerSpawn = function(ply)
  23. ply:SetMaxHealth(100)
  24. ply:SetHealth(100)
  25. ply:SetArmor(25)
  26. end
  27. })
  28.  
  29. TEAM_MAFIARECRUIT = DarkRP.createJob("Mafia Recruit", {
  30. color = Color(255, 0, 0, 255),
  31. model = {
  32. "models/player/suits/male_07_closed_coat_tie.mdl",
  33. "models/player/suits/male_07_closed_tie.mdl",
  34. "models/player/suits/male_07_open.mdl",
  35. "models/player/suits/male_07_open_tie.mdl",
  36. "models/player/suits/male_07_open_waistcoat.mdl",
  37. "models/player/suits/male_07_shirt.mdl",
  38. "models/player/suits/male_07_shirt_tie.mdl"
  39. },
  40. description = [[You are part of the Mafia]],
  41. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  42. command = "MafiaRecruit",
  43. max = 0,
  44. salary = 150,
  45. admin = 0,
  46. vote = false,
  47. hasLicense = false,
  48. candemote = false,
  49. category = "Mafia",
  50. PlayerSpawn = function(ply)
  51. ply:SetMaxHealth(100)
  52. ply:SetHealth(100)
  53. ply:SetArmor(25)
  54. end
  55. })
  56.  
  57. TEAM_MAFIASOLDIER = DarkRP.createJob("Mafia Soldier", {
  58. color = Color(255, 0, 0, 255),
  59. model = {
  60. "models/player/suits/male_07_closed_coat_tie.mdl",
  61. "models/player/suits/male_07_closed_tie.mdl",
  62. "models/player/suits/male_07_open.mdl",
  63. "models/player/suits/male_07_open_tie.mdl",
  64. "models/player/suits/male_07_open_waistcoat.mdl",
  65. "models/player/suits/male_07_shirt.mdl",
  66. "models/player/suits/male_07_shirt_tie.mdl"
  67. },
  68. description = [[You are part of the Mafia]],
  69. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  70. command = "MafiaSoldier",
  71. max = 0,
  72. salary = 200,
  73. admin = 0,
  74. vote = false,
  75. hasLicense = false,
  76. candemote = false,
  77. category = "Mafia",
  78. PlayerSpawn = function(ply)
  79. ply:SetMaxHealth(100)
  80. ply:SetHealth(100)
  81. ply:SetArmor(25)
  82. end
  83. })
  84.  
  85. TEAM_MAFIAGTADSOLDIER = DarkRP.createJob("Mafia Graduated Soldier", {
  86. color = Color(255, 0, 0, 255),
  87. model = {
  88. "models/player/suits/male_07_closed_coat_tie.mdl",
  89. "models/player/suits/male_07_closed_tie.mdl",
  90. "models/player/suits/male_07_open.mdl",
  91. "models/player/suits/male_07_open_tie.mdl",
  92. "models/player/suits/male_07_open_waistcoat.mdl",
  93. "models/player/suits/male_07_shirt.mdl",
  94. "models/player/suits/male_07_shirt_tie.mdl"
  95. },
  96. description = [[You are part of the Mafia]],
  97. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  98. command = "MafiaGraduatedSoldier",
  99. max = 0,
  100. salary = 250,
  101. admin = 0,
  102. vote = false,
  103. hasLicense = false,
  104. candemote = false,
  105. category = "Mafia",
  106. PlayerSpawn = function(ply)
  107. ply:SetMaxHealth(100)
  108. ply:SetHealth(100)
  109. ply:SetArmor(25)
  110. end
  111. })
  112.  
  113. TEAM_MAFIACAPO = DarkRP.createJob("Mafia Capo", {
  114. color = Color(255, 0, 0, 255),
  115. model = {
  116. "models/player/suits/male_07_closed_coat_tie.mdl",
  117. "models/player/suits/male_07_closed_tie.mdl",
  118. "models/player/suits/male_07_open.mdl",
  119. "models/player/suits/male_07_open_tie.mdl",
  120. "models/player/suits/male_07_open_waistcoat.mdl",
  121. "models/player/suits/male_07_shirt.mdl",
  122. "models/player/suits/male_07_shirt_tie.mdl"
  123. },
  124. description = [[You are part of the Mafia]],
  125. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  126. command = "MafiaCapo",
  127. max = 0,
  128. salary = 300,
  129. admin = 0,
  130. vote = false,
  131. hasLicense = false,
  132. candemote = false,
  133. category = "Mafia",
  134. PlayerSpawn = function(ply)
  135. ply:SetMaxHealth(100)
  136. ply:SetHealth(100)
  137. ply:SetArmor(50)
  138. end
  139. })
  140.  
  141. TEAM_MAFIACHIEFADVISER = DarkRP.createJob("Mafia Chief Adviser", {
  142. color = Color(255, 0, 0, 255),
  143. model = {
  144. "models/player/suits/male_07_closed_coat_tie.mdl",
  145. "models/player/suits/male_07_closed_tie.mdl",
  146. "models/player/suits/male_07_open.mdl",
  147. "models/player/suits/male_07_open_tie.mdl",
  148. "models/player/suits/male_07_open_waistcoat.mdl",
  149. "models/player/suits/male_07_shirt.mdl",
  150. "models/player/suits/male_07_shirt_tie.mdl"
  151. },
  152. description = [[You are part of the Mafia]],
  153. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  154. command = "MafiaChiefAdviser",
  155. max = 0,
  156. salary = 300,
  157. admin = 0,
  158. vote = false,
  159. hasLicense = false,
  160. candemote = false,
  161. category = "Mafia",
  162. PlayerSpawn = function(ply)
  163. ply:SetMaxHealth(100)
  164. ply:SetHealth(100)
  165. ply:SetArmor(50)
  166. end
  167. })
  168.  
  169. TEAM_MAFIAUNDERBOSS = DarkRP.createJob("Mafia Under boss", {
  170. color = Color(255, 0, 0, 255),
  171. model = {
  172. "models/player/suits/male_07_closed_coat_tie.mdl",
  173. "models/player/suits/male_07_closed_tie.mdl",
  174. "models/player/suits/male_07_open.mdl",
  175. "models/player/suits/male_07_open_tie.mdl",
  176. "models/player/suits/male_07_open_waistcoat.mdl",
  177. "models/player/suits/male_07_shirt.mdl",
  178. "models/player/suits/male_07_shirt_tie.mdl"
  179. },
  180. description = [[You are part of the Mafia]],
  181. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  182. command = "MafiaUnderboss",
  183. max = 0,
  184. salary = 350,
  185. admin = 0,
  186. vote = false,
  187. hasLicense = false,
  188. candemote = false,
  189. category = "Mafia",
  190. PlayerSpawn = function(ply)
  191. ply:SetMaxHealth(100)
  192. ply:SetHealth(100)
  193. ply:SetArmor(50)
  194. end
  195. })
  196.  
  197. TEAM_MAFIAGODFATHER = DarkRP.createJob("Mafia Godfather", {
  198. color = Color(255, 0, 0, 255),
  199. model = {
  200. "models/player/suits/male_07_closed_coat_tie.mdl",
  201. "models/player/suits/male_07_closed_tie.mdl",
  202. "models/player/suits/male_07_open.mdl",
  203. "models/player/suits/male_07_open_tie.mdl",
  204. "models/player/suits/male_07_open_waistcoat.mdl",
  205. "models/player/suits/male_07_shirt.mdl",
  206. "models/player/suits/male_07_shirt_tie.mdl"
  207. },
  208. description = [[You are part of the Mafia]],
  209. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  210. command = "MafiaGodfather",
  211. max = 0,
  212. salary = 400,
  213. admin = 0,
  214. vote = false,
  215. hasLicense = false,
  216. candemote = false,
  217. category = "Mafia",
  218. PlayerSpawn = function(ply)
  219. ply:SetMaxHealth(100)
  220. ply:SetHealth(100)
  221. ply:SetArmor(50)
  222. end
  223. })
  224.  
  225. TEAM_MAFIAHGODFATHER = DarkRP.createJob("Mafia Head-Godfather", {
  226. color = Color(255, 0, 0, 255),
  227. model = {
  228. "models/player/suits/male_07_closed_coat_tie.mdl",
  229. "models/player/suits/male_07_closed_tie.mdl",
  230. "models/player/suits/male_07_open.mdl",
  231. "models/player/suits/male_07_open_tie.mdl",
  232. "models/player/suits/male_07_open_waistcoat.mdl",
  233. "models/player/suits/male_07_shirt.mdl",
  234. "models/player/suits/male_07_shirt_tie.mdl"
  235. },
  236. description = [[You are part of the Mafia]],
  237. weapons = {"lockpick", "weapon_uni_cracker", "m9k_glock"},
  238. command = "MafiaHeadGodfather",
  239. max = 0,
  240. salary = 450,
  241. admin = 0,
  242. vote = false,
  243. hasLicense = false,
  244. candemote = false,
  245. category = "Mafia",
  246. PlayerSpawn = function(ply)
  247. ply:SetMaxHealth(100)
  248. ply:SetHealth(100)
  249. ply:SetArmor(50)
  250. end
  251. })
  252. TEAM_CIV = DarkRP.createJob("Civilian", {
  253. color = Color(234, 255, 0, 255),
  254. model = {"models/player/gman_high.mdl"},
  255. description = [[Civilian]],
  256. weapons = {"pass_england"},
  257. command = "civilian",
  258. max = 0,
  259. salary = 0,
  260. admin = 0,
  261. vote = false,
  262. hasLicense = false,
  263. candemote = false,
  264. category = "Civilian"
  265. })
  266. --[[
  267. Generated using: DarkRP | Job Generator
  268. https://csite.io/tools/gmod-darkrp-job
  269. --]]
  270. TEAM_CivilProtection = DarkRP.createJob("Police Recruit", {
  271. color = Color(234, 255, 0, 255),
  272. model = {"models/player/uk_police/uk_police_01.mdl"},
  273. description = [[Police Recruit]],
  274. weapons = {"pass_england"},
  275. command = "recruit",
  276. max = 0,
  277. salary = 0,
  278. admin = 0,
  279. vote = false,
  280. hasLicense = false,
  281. candemote = false,
  282. category = "Police Recruitment"
  283. })
  284. --[[
  285. Generated using: DarkRP | Job Generator
  286. https://csite.io/tools/gmod-darkrp-job
  287. --]]
  288. TEAM_CivilProtection = DarkRP.createJob("Traffic Private", {
  289. color = Color(115, 13, 13, 255),
  290. model = {"models/player/londoncop/londoncop_01.mdl"},
  291. description = [[Traffic Constable]],
  292. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  293. command = "trafficprivate",
  294. max = 0,
  295. salary = 250,
  296. admin = 0,
  297. vote = false,
  298. hasLicense = false,
  299. candemote = false,
  300. category = "Traffic"
  301. })
  302. --[[
  303. Generated using: DarkRP | Job Generator
  304. https://csite.io/tools/gmod-darkrp-job
  305. --]]
  306. TEAM_CivilProtection = DarkRP.createJob("Traffic Lance Corporal", {
  307. color = Color(115, 13, 13, 255),
  308. model = {"models/player/londoncop/londoncop_04.mdl"},
  309. description = [[Traffic Sergeant]],
  310. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  311. command = "trafficlcpl",
  312. max = 0,
  313. salary = 250,
  314. admin = 0,
  315. vote = false,
  316. hasLicense = false,
  317. candemote = false,
  318. category = "Traffic"
  319. })
  320. --[[
  321. Generated using: DarkRP | Job Generator
  322. https://csite.io/tools/gmod-darkrp-job
  323. --]]
  324. TEAM_CivilProtection = DarkRP.createJob("Traffic Corporal", {
  325. color = Color(115, 13, 13, 255),
  326. model = {"models/player/londoncop/londoncop_09.mdl"},
  327. description = [[Traffic Officer]],
  328. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  329. command = "trafficcorporal",
  330. max = 0,
  331. salary = 250,
  332. admin = 0,
  333. vote = false,
  334. hasLicense = false,
  335. candemote = false,
  336. category = "Traffic"
  337. })
  338. TEAM_CivilProtection = DarkRP.createJob("Traffic Sergeant", {
  339. color = Color(115, 13, 13, 255),
  340. model = {"models/player/londoncop/londoncop_09.mdl"},
  341. description = [[Traffic Sergeant]],
  342. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  343. command = "trafficsergeant",
  344. max = 0,
  345. salary = 250,
  346. admin = 0,
  347. vote = false,
  348. hasLicense = false,
  349. candemote = false,
  350. category = "Traffic"
  351. })
  352. TEAM_CivilProtection = DarkRP.createJob("Traffic StaffSergeant", {
  353. color = Color(115, 13, 13, 255),
  354. model = {"models/player/londoncop/londoncop_09.mdl"},
  355. description = [[Traffic Staff Sergeant]],
  356. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  357. command = "trafficssergeant",
  358. max = 0,
  359. salary = 250,
  360. admin = 0,
  361. vote = false,
  362. hasLicense = false,
  363. candemote = false,
  364. category = "Traffic"
  365. })
  366. TEAM_CivilProtection = DarkRP.createJob("Traffic Sergeant Major", {
  367. color = Color(115, 13, 13, 255),
  368. model = {"models/player/londoncop/londoncop_09.mdl"},
  369. description = [[Traffic Major Sergeant]],
  370. weapons = {"drivers_license", "m9k_usp", "weapon_cuff_elastic", "weapon_stungun","arrest_stick","realrbn_tazer","weapon_handcuffs","pass_detectiv"},
  371. command = "trafficsergeantmajor",
  372. max = 0,
  373. salary = 250,
  374. admin = 0,
  375. vote = false,
  376. hasLicense = false,
  377. candemote = false,
  378. category = "Traffic"
  379. })
  380. TEAM_CivilProtection = DarkRP.createJob("Traffic Deputy Chief", {
  381. color = Color(115, 13, 13, 255),
  382. model = {"models/player/londoncop/londoncop_09.mdl"},
  383. description = [[Traffic Deputy Chief]],
  384. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","m9k_mossberg590","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  385. command = "trafficdepchief",
  386. max = 0,
  387. salary = 250,
  388. admin = 0,
  389. vote = false,
  390. hasLicense = false,
  391. candemote = false,
  392. category = "Traffic"
  393. })
  394. TEAM_CivilProtection = DarkRP.createJob("Traffic Chief", {
  395. color = Color(115, 13, 13, 255),
  396. model = {"models/player/londoncop/londoncop_09.mdl"},
  397. description = [[Traffic Deputy Chief]],
  398. weapons = {"drivers_license", "m9k_usp", "weapon_stungun","arrest_stick","m9k_mossberg590","realrbn_tazer","weapon_r_handcuffs","pass_detectiv"},
  399. command = "trafficchief",
  400. max = 0,
  401. salary = 250,
  402. admin = 0,
  403. vote = false,
  404. hasLicense = false,
  405. candemote = false,
  406. category = "Traffic"
  407. })
  408. --[[
  409. Generated using: DarkRP | Job Generator
  410. https://csite.io/tools/gmod-darkrp-job
  411. --]]
  412. TEAM_CivilProtection = DarkRP.createJob("ARU Private", {
  413. color = Color(0, 0, 0, 255),
  414. model = {"models/player/winningrook/gtav/tacguy.mdl"},
  415. description = [[ARU]],
  416. weapons = {"fas2_g36c", "fas2_glock20", "weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  417. command = "aruprivate",
  418. max = 0,
  419. salary = 250,
  420. admin = 0,
  421. vote = false,
  422. hasLicense = false,
  423. candemote = false,
  424. category = "ARU"
  425. })
  426. --[[
  427. Generated using: DarkRP | Job Generator
  428. https://csite.io/tools/gmod-darkrp-job
  429. --]]
  430. TEAM_CivilProtection = DarkRP.createJob("ARU Lance Corporal", {
  431. color = Color(0, 0, 0, 255),
  432. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  433. description = [[ARU]],
  434. weapons = {"fas2_g36c", "fas2_glock20", "weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  435. command = "arulcpl",
  436. max = 0,
  437. salary = 500,
  438. admin = 0,
  439. vote = false,
  440. hasLicense = false,
  441. candemote = false,
  442. category = "ARU"
  443. })
  444. TEAM_CivilProtection = DarkRP.createJob("ARU Corporal", {
  445. color = Color(0, 0, 0, 255),
  446. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  447. description = [[ARU]],
  448. weapons = {"fas2_g36c", "fas2_glock20", "weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  449. command = "arucorporal",
  450. max = 0,
  451. salary = 500,
  452. admin = 0,
  453. vote = false,
  454. hasLicense = false,
  455. candemote = false,
  456. category = "ARU"
  457. })
  458. --[[
  459. Generated using: DarkRP | Job Generator
  460. https://csite.io/tools/gmod-darkrp-job
  461. --]]
  462. TEAM_CivilProtection = DarkRP.createJob("ARU Sergeant", {
  463. color = Color(0, 0, 0, 255),
  464. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  465. description = [[ARU]],
  466. weapons = {"fas2_g36c", "fas2_glock20","weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  467. command = "arusergeant",
  468. max = 0,
  469. salary = 750,
  470. admin = 0,
  471. vote = false,
  472. hasLicense = false,
  473. candemote = false,
  474. category = "ARU"
  475. })
  476. TEAM_CivilProtection = DarkRP.createJob("ARU Sergeant Major", {
  477. color = Color(0, 0, 0, 255),
  478. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  479. description = [[ARU]],
  480. weapons = {"fas2_g36c", "fas2_glock20","weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  481. command = "arusgtmaj",
  482. max = 0,
  483. salary = 750,
  484. admin = 0,
  485. vote = false,
  486. hasLicense = false,
  487. candemote = false,
  488. category = "ARU"
  489. })
  490. TEAM_CivilProtection = DarkRP.createJob("ARU Deputy Chief", {
  491. color = Color(0, 0, 0, 255),
  492. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  493. description = [[ARU]],
  494. weapons = {"fas2_g36c", "fas2_glock20","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  495. command = "arudepchief",
  496. max = 0,
  497. salary = 750,
  498. admin = 0,
  499. vote = false,
  500. hasLicense = false,
  501. candemote = false,
  502. category = "ARU"
  503. })
  504. TEAM_CivilProtection = DarkRP.createJob("ARU Chief", {
  505. color = Color(0, 0, 0, 255),
  506. model = {"models/player/winningrook/gtav/sc&o19.mdl"},
  507. description = [[ARU]],
  508. weapons = {"fas2_g36c", "fas2_glock20", "weapon_stungun","arrest_stick","door_ram","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","breachingcharge","cw_ar15"},
  509. command = "aruchief",
  510. max = 0,
  511. salary = 750,
  512. admin = 0,
  513. vote = false,
  514. hasLicense = false,
  515. candemote = false,
  516. category = "ARU"
  517. })
  518. --[[
  519. Generated using: DarkRP | Job Generator
  520. https://csite.io/tools/gmod-darkrp-job
  521. --]]
  522. TEAM_CivilProtection = DarkRP.createJob("MI6 Private", {
  523. color = Color(8, 59, 71, 255),
  524. model = {"models/player/suits/male_07_closed_coat_tie.mdl"},
  525. description = [[MI6]],
  526. weapons = {"weapon_stungun","m9k_usps", "arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd"},
  527. command = "MI6private",
  528. max = 0,
  529. salary = 250,
  530. admin = 0,
  531. vote = false,
  532. hasLicense = false,
  533. candemote = false,
  534. category = "MI6"
  535. })
  536. --[[
  537. Generated using: DarkRP | Job Generator
  538. https://csite.io/tools/gmod-darkrp-job
  539. --]]
  540. TEAM_CivilProtection = DarkRP.createJob("MI6 Lance Corporal", {
  541. color = Color(8, 59, 71, 255),
  542. model = {"models/player/suits/male_05_open_tie.mdl"},
  543. description = [[MI6]],
  544. weapons = {"weapon_stungun","m9k_usps", "arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd"},
  545. command = "mi6lcpl",
  546. max = 0,
  547. salary = 500,
  548. admin = 0,
  549. vote = false,
  550. hasLicense = false,
  551. candemote = false,
  552. category = "MI6"
  553. })
  554. --[[
  555. Generated using: DarkRP | Job Generator
  556. https://csite.io/tools/gmod-darkrp-job
  557. --]]
  558. TEAM_CivilProtection = DarkRP.createJob("MI6 Corporal", {
  559. color = Color(8, 59, 71, 255),
  560. model = {"models/player/suits/male_05_open_tie.mdl"},
  561. description = [[MI6]],
  562. weapons = {"weapon_stungun","m9k_usps", "arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd"},
  563. command = "mi6corporal",
  564. max = 0,
  565. salary = 750,
  566. admin = 0,
  567. vote = false,
  568. hasLicense = false,
  569. candemote = false,
  570. category = "MI6"
  571. })
  572. TEAM_CivilProtection = DarkRP.createJob("MI6 Sergeant", {
  573. color = Color(8, 59, 71, 255),
  574. model = {"models/player/suits/male_05_open_tie.mdl"},
  575. description = [[MI6]],
  576. weapons = {"weapon_stungun","m9k_usps", "arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd"},
  577. command = "mi6sergeant",
  578. max = 0,
  579. salary = 750,
  580. admin = 0,
  581. vote = false,
  582. hasLicense = false,
  583. candemote = false,
  584. category = "MI6"
  585. })
  586. TEAM_CivilProtection = DarkRP.createJob("MI6 Sergeant Major", {
  587. color = Color(8, 59, 71, 255),
  588. model = {"models/player/suits/male_05_open_tie.mdl"},
  589. description = [[MI6]],
  590. weapons = {"weapon_stungun", "m9k_usps", "arrest_stick","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd"},
  591. command = "mi6sergeantmajor",
  592. max = 0,
  593. salary = 750,
  594. admin = 0,
  595. vote = false,
  596. hasLicense = false,
  597. candemote = false,
  598. category = "MI6"
  599. })
  600. TEAM_CivilProtection = DarkRP.createJob("MI6 Deputy Chief", {
  601. color = Color(8, 59, 71, 255),
  602. model = {"models/player/suits/male_05_open_tie.mdl"},
  603. description = [[MI6]],
  604. weapons = {"weapon_stungun", "m9k_usps", "arrest_stick","m9k_mossberg590","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd","m9k_winchester73"},
  605. command = "mi6deputychief",
  606. max = 0,
  607. salary = 750,
  608. admin = 0,
  609. vote = false,
  610. hasLicense = false,
  611. candemote = false,
  612. category = "MI6"
  613. })
  614. TEAM_CivilProtection = DarkRP.createJob("MI6 Chief", {
  615. color = Color(8, 59, 71, 255),
  616. model = {"models/player/suits/male_05_open_tie.mdl"},
  617. description = [[MI6]],
  618. weapons = {"weapon_stungun", "m9k_usps", "arrest_stick","m9k_mossberg590","realrbn_tazer","weapon_r_handcuffs","pass_detectiv","m9k_mp5sd","m9k_winchester73"},
  619. command = "mi6chief",
  620. max = 0,
  621. salary = 750,
  622. admin = 0,
  623. vote = false,
  624. hasLicense = false,
  625. candemote = false,
  626. category = "MI6"
  627. })
  628. --[[
  629. Generated using: DarkRP | Job Generator
  630. https://csite.io/tools/gmod-darkrp-job
  631. --]]
  632. TEAM_PARAMEDIC = DarkRP.createJob("Paramedic", {
  633. color = Color(58, 83, 156, 255),
  634. model = {
  635. "models/redninja/pmedic02.mdl",
  636. "models/redninja/pmedic01f.mdl"
  637. },
  638. description = [[Paramedic]],
  639. weapons = {"fas2_ifak"},
  640. command = "paramedic",
  641. max = 0,
  642. salary = 500,
  643. admin = 0,
  644. vote = false,
  645. hasLicense = false,
  646. candemote = false,
  647. category = "Paramedic"
  648. })
  649. --[[
  650. Generated using: DarkRP | Job Generator
  651. https://csite.io/tools/gmod-darkrp-job
  652. --]]
  653. TEAM_FIREFIGHTER = DarkRP.createJob("Firefighter", {
  654. color = Color(255, 0, 0, 255),
  655. model = {"models/player/portal/male_05_fireman.mdl"},
  656. description = [[Firefighter]],
  657. weapons = {"fas2_ifak","weapon_extinguisher"},
  658. command = "firefighter",
  659. max = 0,
  660. salary = 500,
  661. admin = 0,
  662. vote = false,
  663. hasLicense = false,
  664. candemote = false,
  665. category = "Firefighter"
  666. })
  667. --[[
  668. Generated using: DarkRP | Job Generator
  669. https://csite.io/tools/gmod-darkrp-job
  670. --]]
  671. TEAM_FIREFIGHTERCHIEF = DarkRP.createJob("Firefighter Chief", {
  672. color = Color(255, 0, 0, 255),
  673. model = {"models/player/portal/male_02_fireman.mdl"},
  674. description = [[Firefighter]],
  675. weapons = {"fas2_ifak","weapon_extinguisher"},
  676. command = "firefighterchief",
  677. max = 0,
  678. salary = 750,
  679. admin = 0,
  680. vote = false,
  681. hasLicense = false,
  682. candemote = false,
  683. category = "Firefighter"
  684. })
  685. --[[
  686. Generated using: DarkRP | Job Generator
  687. https://csite.io/tools/gmod-darkrp-job
  688. --]]
  689. TEAM_GUNDEALER = DarkRP.createJob("Gun Dealer", {
  690. color = Color(66, 0, 255, 255),
  691. model = {"models/player/monk.mdl"},
  692. description = [[Gun Dealer]],
  693. weapons = {"weapon_physgun","pass_england"},
  694. command = "gundealer",
  695. max = 0,
  696. salary = 50,
  697. admin = 0,
  698. vote = false,
  699. hasLicense = false,
  700. candemote = false,
  701. category = "Civilian",
  702. NeedToChangeFrom = TEAM_CIVILIAN
  703. })
  704. --[[
  705. Generated using: DarkRP | Job Generator
  706. https://csite.io/tools/gmod-darkrp-job
  707. --]]
  708. TEAM_COOK = DarkRP.createJob("Cook", {
  709. color = Color(0, 255, 224, 255),
  710. model = {"models/player/hostage/hostage_01.mdl"},
  711. description = [[Cook at taco bell]],
  712. weapons = {"pass_england"},
  713. command = "cook",
  714. max = 0,
  715. salary = 150,
  716. admin = 0,
  717. vote = false,
  718. hasLicense = false,
  719. candemote = false,
  720. category = "Civilian",
  721. NeedToChangeFrom = TEAM_CIVILIAN
  722. })
  723. --[[
  724. Generated using: DarkRP | Job Generator
  725. https://csite.io/tools/gmod-darkrp-job
  726. --]]
  727. TEAM_THIEF = DarkRP.createJob("Thief", {
  728. color = Color(29, 71, 28, 255),
  729. model = {"models/player/Group03/female_03.mdl"},
  730. description = [[Thief]],
  731. weapons = {"lockpick","pass_england"},
  732. command = "thief",
  733. max = 0,
  734. salary = 150,
  735. admin = 0,
  736. vote = false,
  737. hasLicense = false,
  738. candemote = false,
  739. category = "Civilian",
  740. NeedToChangeFrom = TEAM_CIVILIAN
  741. })
  742. --[[
  743. Generated using: DarkRP | Job Generator
  744. https://csite.io/tools/gmod-darkrp-job
  745. --]]
  746. TEAM_DRUGDEALER = DarkRP.createJob("Drug Dealer", {
  747. color = Color(22, 117, 81, 255),
  748. model = {"models/player/Group03/male_01.mdl"},
  749. description = [[Drug Dealer]],
  750. weapons = {"weapon_physgun","pass_england"},
  751. command = "drugdealer",
  752. max = 2,
  753. salary = 50,
  754. admin = 0,
  755. vote = false,
  756. hasLicense = false,
  757. candemote = false,
  758. category = "Civilian",
  759. NeedToChangeFrom = TEAM_CIVILIAN
  760. })
  761. --[[
  762. Generated using: DarkRP | Job Generator
  763. https://csite.io/tools/gmod-darkrp-job
  764. --]]
  765. TEAM_CivilProtection = DarkRP.createJob("Deputy Commissioner", {
  766. color = Color(128, 0, 255, 255),
  767. model = {"models/player/scifi_plr2.mdl"},
  768. description = [[Commisioner]],
  769. weapons = {"weapon_cuff_elastic", "arrest_stick", "weapon_stungun", "fas2_glock20","realrbn_tazer","weapon_handcuffs","pass_marshel"},
  770. command = "dciommissioner",
  771. max = 1,
  772. salary = 1500,
  773. admin = 0,
  774. vote = false,
  775. hasLicense = false,
  776. candemote = false,
  777. category = "Commissioners"
  778. })
  779. --[[
  780. Generated using: DarkRP | Job Generator
  781. https://csite.io/tools/gmod-darkrp-job
  782. --]]
  783. TEAM_CivilProtection = DarkRP.createJob("Commissioner", {
  784. color = Color(128, 0, 255, 255),
  785. model = {"models/player/scifi_bill.mdl"},
  786. description = [[Commisioner]],
  787. weapons = {"weapon_cuff_elastic", "arrest_stick", "weapon_stungun", "m9k_glock","realrbn_tazer","weapon_handcuffs","pass_marshel","pass_fbi"},
  788. command = "commissioner",
  789. max = 1,
  790. salary = 2500,
  791. admin = 0,
  792. vote = false,
  793. hasLicense = false,
  794. candemote = false,
  795. category = "Commissioners"
  796. })
  797. --[[
  798. Generated using: DarkRP | Job Generator
  799. https://csite.io/tools/gmod-darkrp-job
  800. --]]
  801. TEAM_SOD = DarkRP.createJob("Staff On Duty", {
  802. color = Color(141, 89, 255, 255),
  803. model = {"models/player/combine_super_soldier.mdl"},
  804. description = [[Staff on duty]],
  805. weapons = {"weapon_physgun"},
  806. command = "sod",
  807. max = 0,
  808. salary = 0,
  809. admin = 0,
  810. vote = false,
  811. hasLicense = false,
  812. candemote = false,
  813. category = "Civilian"
  814. })
  815. --[[
  816. Generated using: DarkRP | Job Generator
  817. https://csite.io/tools/gmod-darkrp-job
  818. --]]
  819. TEAM_BOUNTYHUNTER = DarkRP.createJob("Bounty Hunter", {
  820. color = Color(14, 76, 102, 255),
  821. model = {"models/brinks/security/guard_brinks_5.mdl"},
  822. description = [[You work for the Government and you catch fugitives which have been on the run for ages.]],
  823. weapons = {"fas2_glock20","pass_marshel","realrbn_tazer","weapon_handcuffs"},
  824. command = "bhunter",
  825. max = 0,
  826. salary = 650,
  827. admin = 0,
  828. vote = false,
  829. hasLicense = true,
  830. candemote = false,
  831. category = "VIP",
  832. ammo = {
  833. ["pistol"] = 100,
  834. ["tazer"] = 100
  835. },
  836. PlayerSpawn = function(ply)
  837. ply:SetMaxHealth(100)
  838. ply:SetHealth(100)
  839. ply:SetArmor(50)
  840. end,
  841. customCheck = function(ply) return CLIENT or
  842. table.HasValue({"superadmin", "VIP", "Mega VIP", "Owner", "Co-Owner"}, ply:GetNWString("usergroup"))
  843. end,
  844. CustomCheckFailMsg = "This job is Donator only!",
  845. })
  846. --[[
  847. Generated using: DarkRP | Job Generator
  848. https://csite.io/tools/gmod-darkrp-job
  849. --]]
  850. TEAM_BANKROBBER = DarkRP.createJob("Bank Robber", {
  851. color = Color(255, 0, 46, 255),
  852. model = {"models/code_gs/robber/robberplayer.mdl"},
  853. description = [[The Bank Robber, robs banks and is automatically wanted whenever seen in a bank as his disguise has been blown.]],
  854. weapons = {"fas2_glock20","m9k_1887winchester"},
  855. command = "brobber",
  856. max = 0,
  857. salary = 820,
  858. admin = 0,
  859. vote = false,
  860. hasLicense = false,
  861. candemote = false,
  862. category = "VIP",
  863. ammo = {
  864. ["pistol"] = 120,
  865. ["buckshot"] = 120
  866. },
  867. PlayerSpawn = function(ply)
  868. ply:SetMaxHealth(120)
  869. ply:SetHealth(120)
  870. ply:SetArmor(34)
  871. end,
  872. customCheck = function(ply) return CLIENT or
  873. table.HasValue({"VIP", "Mega VIP", "superadmin", "Owner", "Co-Owner" ", ply:GetNWString("usergroup"))
  874. end,
  875. CustomCheckFailMsg = "This is for Donators Only!",
  876. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement