Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.56 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom jobs.
  6. This file should also contain jobs from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the job to this file and edit it.
  10.  
  11. The default jobs can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  16.  
  17.  
  18. Add jobs under the following line:
  19. ---------------------------------------------------------------------------]]
  20.  
  21. TEAM_CIVILIAN = DarkRP.createJob("Civilian", {
  22. color = Color(20, 150, 20, 255),
  23. model = {"models/player/Group01/Female_01.mdl", "models/player/Group01/Female_02.mdl", "models/player/Group01/Female_03.mdl", "models/player/Group01/Female_04.mdl", "models/player/Group01/Female_06.mdl", "models/player/group01/male_01.mdl", "models/player/Group01/Male_02.mdl", "models/player/Group01/male_03.mdl", "models/player/Group01/Male_04.mdl", "models/player/Group01/Male_05.mdl", "models/player/Group01/Male_06.mdl", "models/player/Group01/Male_07.mdl", "models/player/Group01/Male_08.mdl", "models/player/Group01/Male_09.mdl"},
  24. description = [[As a Citizen you are a sensible member of society and you cannot commit any crimes.
  25. Raid: No Print: No Base: No]],
  26. weapons = {},
  27. command = "civilian",
  28. max = 0,
  29. salary = 0,
  30. admin = 0,
  31. vote = false,
  32. hasLicense = false,
  33. candemote = false,
  34. category = "Civilians"
  35. })
  36.  
  37.  
  38. TEAM_MAYORSDAUGHTER = DarkRP.createJob("Mayor's Daughter", {
  39. color = Color(150, 20, 20, 255),
  40. model = "models/player/alyx.mdl",
  41. description = [[As the Mayors Daughter, you are an important and iconic member of society, your job consists of staying by your fathers side and giving out orders when he is not around.
  42. Raid: No Print: No Base: Yes, in government buildings for protection]],
  43. weapons = {"fas2_p226"},
  44. command = "mayorsdaughter",
  45. category = "Government",
  46. max = 1,
  47. salary = 45,
  48. admin = 0,
  49. vote = false,
  50. hasRadio = true,
  51. hasLicense = true
  52. })
  53.  
  54. TEAM_HOBO = DarkRP.createJob("Hobo", {
  55. color = Color(80, 45, 0, 255),
  56. model = "models/player/corpse1.mdl",
  57. description = [[As a Hobo you have next to no purpose in society, you just roam the streets looking for a dollar to feed your many addictions.
  58. Raid: No Print: No Base: Yes, little shacks outside]],
  59. weapons = {"weapon_bugbait", "weapon_gpee"},
  60. command = "bum",
  61. max = 10,
  62. salary = 0,
  63. admin = 0,
  64. vote = false,
  65. hasLicense = false,
  66. candemote = false,
  67. hobo = true,
  68. category = "Civilians"
  69. })
  70.  
  71. TEAM_BANKER = DarkRP.createJob("Banker", {
  72. color = Color(255, 208, 100, 255),
  73. model = {"models/player/hostage/hostage_03.mdl"},
  74. description = [[As a Banker your role is to protect and manage the bank you can store printers and other good for other players.
  75. Raid: No Print: Yes Base: Bank]],
  76. weapons = {},
  77. command = "banker",
  78. max = 2,
  79. salary = 60,
  80. admin = 0,
  81. vote = false,
  82. hasLicense = false,
  83. category = "Civilians"
  84. })
  85.  
  86. TEAM_FREERUNNER = DarkRP.createJob("Free Runner", {
  87. color = Color(84, 175, 169, 255),
  88. model = {"models/player/hostage/hostage_02.mdl"},
  89. description = [[As a Free Runner you have the ability to parkour buildings, scout for intel and show off your skills.
  90. Raid: No Print: No Base: No]],
  91. weapons = {"climb_swep2"},
  92. command = "freerunner",
  93. max = 5,
  94. salary = 60,
  95. admin = 0,
  96. vote = false,
  97. hasLicense = false,
  98. category = "Civilians"
  99. })
  100.  
  101. TEAM_HOTELMANAGER = DarkRP.createJob("Hotel Manager", {
  102. color = Color(218, 165, 32, 255),
  103. model = "models/player/hostage/hostage_02.mdl",
  104. description = [[As a Hotel Manager your role is to sell properties within your establishment for up to $15,000.
  105. Raid: No Print: Yes, in the bank Base: Hotel]],
  106. weapons = {},
  107. command = "hotelmanager",
  108. category = "Civilians",
  109. max = 2,
  110. salary = 75,
  111. admin = 0,
  112. vote = false,
  113. hasLicense = false
  114. })
  115.  
  116. TEAM_SS = DarkRP.createJob("Secret Service", {
  117. color = Color(100, 20, 20, 255),
  118. model = "models/player/barney.mdl",
  119. description = [[As a Secret Service officer of the law your job is to protect the mayor at all costs. You must stick with the Mayor as your life depends on it!
  120. Raid: No Print: No Base: Yes, with the Mayor]],
  121. weapons = {"arrest_stick", "unarrest_stick", "fas2_glock20", "stunstick", "weaponchecker", "fas2_g36c", "weapon_stungun"},
  122. command = "ss",
  123. category = "Donator Jobs",
  124. max = 5,
  125. salary = 120,
  126. admin = 0,
  127. vote = false,
  128. hasLicense = true,
  129. customCheck = function(ply) return PlychangeAllowed(ply,"Secret Service") end,
  130. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  131. })
  132.  
  133. TEAM_POLICE = DarkRP.createJob("Police Officer", {
  134. color = Color(25, 25, 170, 255),
  135. model = {"models/player/elispolice/police.mdl"},
  136. description = [[As an Officer of the Law your job is to whip criminals into shape with your hammer of justice, under the orders of your chief. Enforce the law and keep the streets safe!
  137. Raid: Yes, with a warrant Print: No Base: No]],
  138. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "weaponchecker", "fas2_glock20", "weapon_stungun", "fas2_mp5sd6"},
  139. command = "police",
  140. category = "Government",
  141. max = 10,
  142. salary = 65,
  143. admin = 0,
  144. vote = false,
  145. hasLicense = true,
  146. hasRadio = true,
  147.  
  148. })
  149.  
  150. TEAM_POLICECHIEF = DarkRP.createJob("Police Chief", {
  151. color = Color(20, 20, 255, 255),
  152. model = {"models/player/elispolice/police.mdl"},
  153. description = [[As a Police Chief your job is to command your fellow officers to help defeat crime on the streets. Use your resources to protect the city and its Mayor.
  154. Raid: Yes, with a warrant Print: No Base: No]],
  155. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "weaponchecker", "fas2_m1911", "weapon_stungun", "fas2_famas"},
  156. command = "policechief",
  157. category = "Government",
  158. max = 1,
  159. salary = 75,
  160. admin = 0,
  161. vote = false,
  162. hasLicense = true,
  163. hasRadio = true,
  164.  
  165. })
  166.  
  167. TEAM_ARUSERGEANT = DarkRP.createJob("ARU Sergeant", {
  168. color = Color(20, 20, 255, 255),
  169. model = {"models/codmw2/codmw2.mdl", "models/codmw2/codmw2h.mdl", "models/codmw2/codmw2he.mdl"},
  170. description = [[As a ARU Sergeant you command your squad of ARU's to raid bases suspected of criminal activity. Use your powers to apprehend threats to the state and the Mayor.
  171. Raid: Yes, with a warrant Print: No Base: No]],
  172. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "door_ram", "weaponchecker", "fas2_g36c", "fas2_p226"},
  173. command = "arusergeant",
  174. category = "Donator Jobs",
  175. max = 1,
  176. salary = 70,
  177. admin = 0,
  178. vote = false,
  179. hasRadio = true,
  180. hasLicense = true,
  181. customCheck = function(ply) return PlychangeAllowed(ply,"ARU Sergeant") end,
  182. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  183. })
  184.  
  185. TEAM_ARUOFFICER = DarkRP.createJob("ARU Officer", {
  186. color = Color(25, 25, 170, 255),
  187. model = {"models/codmw2/t_codm.mdl", "models/codmw2/t_codmw2.mdl", "models/codmw2/t_codmw2h.mdl"},
  188. description = [[As an ARU Officer you must follow your Sergeants orders to enforce the law with a more hands on approach, by participating in raids on suspected criminal bases.
  189. Raid: Yes, with a warrant Print: No Base: No]],
  190. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "door_ram", "weaponchecker", "fas2_mp5a5", "fas2_p226"},
  191. command = "aruofficer",
  192. category = "Donator Jobs",
  193. max = 10,
  194. salary = 55,
  195. admin = 0,
  196. vote = false,
  197. hasRadio = true,
  198. hasLicense = true,
  199. customCheck = function(ply) return PlychangeAllowed(ply,"ARU Officer") end,
  200. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  201. })
  202.  
  203. TEAM_SWAT = DarkRP.createJob("SWAT", {
  204. color = Color(66, 101, 244, 255),
  205. model = {"models/player/swat.mdl"},
  206. description = [[As a SWAT member, your an advanced police officer. You have better weapons and your main role is to participate in raiding criminal bases.
  207. Raid: Yes, with a warrant Print: No Base: Bank]],
  208. weapons = {"fas2_uzi", "fas2_p226", "door_ram", "weaponchecker", "arrest_stick", "unarrest_stick", "stunstick"},
  209. command = "swat",
  210. max = 10,
  211. salary = 100,
  212. admin = 0,
  213. vote = false,
  214. hasRadio = true,
  215. hasLicense = true,
  216. category = "Government",
  217.  
  218. })
  219.  
  220. TEAM_SWATLEADER = DarkRP.createJob("SWAT Leader", {
  221. color = Color(66, 101, 244, 255),
  222. model = {"models/player/gasmask.mdl"},
  223. description = [[As a SWAT Leader, your incharge of the SWAT team. You have better weapons and your main role is to participate in raiding criminal bases, you also work along side the mayor to plan raids.
  224. Raid: Yes, with a warrant Print: No Base: Bank]],
  225. weapons = {"fas2_g3", "fas2_p226", "door_ram", "weaponchecker", "arrest_stick", "unarrest_stick", "stunstick"},
  226. command = "swatleader",
  227. max = 1,
  228. salary = 150,
  229. admin = 0,
  230. vote = false,
  231. hasRadio = true,
  232. hasLicense = true,
  233. category = "Government",
  234.  
  235. })
  236.  
  237. TEAM_DRUGDEALER = DarkRP.createJob("Drug Dealer", {
  238. color = Color(137, 107, 89, 255),
  239. model = {"models/player/Group03/male_03.mdl"},
  240. description = [[You're a shady drug dealer, you've failed at school and your only choice to make money is by selling shady, probably lethal, drugs on the streets.
  241. Raid: No Print: No Base: Yes]],
  242. weapons = {""},
  243. command = "drugdealer",
  244. max = 5,
  245. salary = 60,
  246. admin = 0,
  247. vote = false,
  248. hasLicense = false,
  249. category = "Criminals"
  250. })
  251.  
  252. TEAM_FIELDMEDIC = DarkRP.createJob("Field Medic", {
  253. color = Color(255, 104, 170, 255),
  254. model = {"models/player/group03m/male_06.mdl", "models/player/group03m/male_07.mdl"},
  255. description = [[As a Field Medic you can partner up with raid groups to assist them with your healing abilities, you can do it for free or for a price. You may NOT raid or base alone.
  256. Raid: Yes Print: Yes Base: Yes, in a group]],
  257. weapons = {"med_kit", "fas2_ots33"},
  258. command = "fieldmedic",
  259. category = "Civilians",
  260. max = 10,
  261. salary = 45,
  262. admin = 0,
  263. vote = false,
  264. hasLicense = true,
  265. medic = true
  266. })
  267.  
  268. TEAM_PRIEST = DarkRP.createJob("Priest", {
  269. color = Color(231, 239, 0, 255),
  270. model = "models/player/monk.mdl",
  271. description = [[As a Priest you can set up an altar to heal and release players of their sins. You can either charge or give out free healings.
  272. Raid: No Print: No Base: Yes, with a church theme]],
  273. weapons = {"med_kit"},
  274. command = "priest",
  275. category = "Civilians",
  276. max = 5,
  277. salary = 45,
  278. admin = 0,
  279. vote = false,
  280. hasLicense = false,
  281. medic = true
  282. })
  283.  
  284. TEAM_SARM = DarkRP.createJob("Small Arms Dealer", {
  285. color = Color(255, 140, 0, 255),
  286. model = {"models/player/eli.mdl"},
  287. description = [[As a Small Arms Dealer it is your job to sell light weaponry to all jobs. The guns prices are at your disposal.
  288. Raid: No Print: Yes in Bank Base: Yes]],
  289. weapons = {""},
  290. command = "smallarmsdealer",
  291. category = "Civilians",
  292. max = 10,
  293. salary = 55,
  294. admin = 0,
  295. vote = false,
  296. hasLicense = true
  297. })
  298.  
  299. TEAM_HARM = DarkRP.createJob("Heavy Arms Dealer", {
  300. color = Color(166, 97, 68, 255),
  301. model = {"models/player/odessa.mdl"},
  302. description = [[As a Heavy Arms Dealer it is your job to sell more dangerous weaponry to all jobs. The guns prices are at your disposal.
  303. Raid: No Print: Yes in Bank Base: Yes]],
  304. weapons = {""},
  305. command = "heavyarmsdealer",
  306. category = "Civilians",
  307. max = 10,
  308. salary = 40,
  309. admin = 0,
  310. vote = false,
  311. hasLicense = true
  312. })
  313.  
  314. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  315. color = Color(75, 0, 0, 255),
  316. model = {"models/player/agent_47.mdl"},
  317. description = [[As a Hitman you are an assassin for hire, receive hits requests from other players but not law enforcement. Your price, your method, their target.
  318. Raid: No Print: No Base: No]],
  319. weapons = {"fas2_sr25", "fas2_glock20"},
  320. command = "hitman",
  321. category = "Criminals",
  322. max = 5,
  323. salary = 40,
  324. admin = 0,
  325. vote = false,
  326. hasLicense = true
  327. })
  328.  
  329. TEAM_MERCENARY = DarkRP.createJob("Mercenary", {
  330. color = Color(119, 136, 153, 255),
  331. model = {"models/player/arctic.mdl"},
  332. description = [[As a Mercenary you are an agent for hire, receive hits requests from other players including law enforcement. Your price, your method, their target.
  333. Raid: Yes, for hits. Print: No Base: No]],
  334. weapons = {"climb_swep2", "fas2_m82", "fas2_glock20", "lockpick"},
  335. command = "mercenary",
  336. category = "Donator Jobs",
  337. max = 5,
  338. salary = 45,
  339. admin = 0,
  340. vote = false,
  341. hasLicense = true,
  342. customCheck = function(ply) return PlychangeAllowed(ply,"Mercenary") end,
  343. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  344. })
  345.  
  346. TEAM_BODYGUARD = DarkRP.createJob("Body Guard", {
  347. color = Color(0, 68, 89, 255),
  348. model = {"models/player/odessa.mdl"},
  349. description = [[As a Body Guard you are essentially muscle for hire, you can be bought by business' to protect their resources.
  350. Raid: No Print: No Base: Yes, with a client]],
  351. weapons = {"fas2_p226", "weapon_stunstick"},
  352. command = "bodyguard",
  353. category = "Civilians",
  354. max = 10,
  355. salary = 60,
  356. admin = 0,
  357. vote = false,
  358. hasLicense = true
  359. })
  360.  
  361. TEAM_THIEF = DarkRP.createJob("Thief", {
  362. color = Color(64, 64, 64, 255),
  363. model = {"models/player/group01/cookies114.mdl"},
  364. description = [[As a Thief your job is to make a name for yourself by robbing and raiding others for their belongings, but try not to get caught!
  365. Raid: Yes Print: Yes Base: Yes]],
  366. weapons = {"fas2_p226", "keypad_cracker", "lockpick"},
  367. command = "thief",
  368. category = "Criminals",
  369. max = 10,
  370. salary = 40,
  371. admin = 0,
  372. vote = false,
  373. hasLicense = false
  374. })
  375.  
  376. TEAM_METHCOOK = DarkRP.createJob("Meth Cook", {
  377. color = Color(224, 0, 88, 255),
  378. model = {"models/bloocobalt/splinter cell/chemsuit_cod.mdl"},
  379. description = [[As a Meth Cook you make a living by cooking and selling Meth, this process is illegal so set up camp and try not to get caught or you could be raided by thieves or even the police.
  380. Raid: No Print: No Base: Yes]],
  381. weapons = {"fas2_p226"},
  382. command = "methcook",
  383. category = "Criminals",
  384. max = 10,
  385. salary = 40,
  386. admin = 0,
  387. vote = false,
  388. hasLicense = false
  389. })
  390.  
  391. TEAM_LUMBERJACK = DarkRP.createJob("Lumberjack", {
  392. color = Color(255, 150, 0, 255),
  393. model = {"models/player/Group03/Female_01.mdl"},
  394. description = [[As a Lumberjack you make a living by chopping trees and creating amazing produce from doing so. Best way to make money without having to worry about others.
  395. Raid: No Print: No Base: No]],
  396. weapons = {"swm_chopping_axe"},
  397. command = "lumberjack",
  398. category = "Civilians",
  399. max = 3,
  400. salary = 45,
  401. admin = 0,
  402. vote = false,
  403. hasLicense = false,
  404. OnPlayerChangedTeam = function(ply, oldTeam, newTeam)
  405. for k, v in pairs(ents.FindByClass("swm_cart")) do
  406. if IsValid(v) and v:Getowning_ent() == ply then
  407. v:Remove()
  408. end
  409. end
  410. end,
  411. })
  412.  
  413. TEAM_MASTERMETHCOOK = DarkRP.createJob("Master Meth Cook", {
  414. color = Color(170, 0, 80, 255),
  415. model = {"models/walter_white/walter_white.mdl"},
  416. description = [[As a Master Meth Cook you make a living by cooking and selling Meth, this process is illegal so set up camp and try not to get caught or you could be raided by thieves or even the police.
  417. Raid: No Print: No Base: Yes]],
  418. weapons = {"fas2_mp5a5", "fas2_p226"},
  419. command = "mastermethcook",
  420. category = "Donator Jobs",
  421. max = 5,
  422. salary = 60,
  423. admin = 0,
  424. vote = false,
  425. hasLicense = false,
  426. customCheck = function(ply) return PlychangeAllowed(ply,"Master Meth Cook") end,
  427. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  428. })
  429.  
  430. TEAM_MASTERTHIEF = DarkRP.createJob("Master Thief", {
  431. color = Color(64, 64, 64, 255),
  432. model = {"models/player/suits/robber_tuckedtie.mdl"},
  433. description = [[As a Master Thief you are a leader of other thieves, guide your comrade thieves to your end goal of wealth in the shadows.
  434. Raid: Yes Print: Yes Base: Yes]],
  435. weapons = {"pro_lockpick_update", "prokeypadcracker", "fas2_ots33", "fas2_mac11"},
  436. command = "masterthief",
  437. category = "Donator Jobs",
  438. max = 5,
  439. salary = 50,
  440. admin = 0,
  441. vote = false,
  442. hasLicense = false,
  443. customCheck = function(ply) return PlychangeAllowed(ply,"Master Thief") end,
  444. CustomCheckFailMsg = "You do not have access to this job! Type !donate to instantly get access.",
  445. })
  446.  
  447. TEAM_MAFIABOSS = DarkRP.createJob("Italian Mafia Boss", {
  448. color = Color(0, 150, 0, 255),
  449. model = {"models/player/gman_high.mdl"},
  450. description = [[As the Italian Mafia Boss you have authority over the Italian Mafia members. Guide your gang to glory however you see fit, even if it means breaking a few laws. Remember, the Chinese Triad are your foes.
  451. Raid: Yes Print: Yes Base: Yes]],
  452. weapons = {"fas2_galil", "fas2_m1911", "keypad_cracker", "unarrest_stick", "lockpick"},
  453. command = "mafiaboss",
  454. category = "Criminals",
  455. max = 1,
  456. salary = 55,
  457. admin = 0,
  458. vote = false,
  459. hasLicense = false
  460. })
  461.  
  462. TEAM_MAFIA = DarkRP.createJob("Italian Mafia Member", {
  463. color = Color(0, 100, 0, 255),
  464. model = {"models/player/Group03/male_07.mdl"},
  465. description = [[As a member of the Italian Mafia your job is to follow your boss' orders to dominate the Chinese Triad and grow your base.
  466. Raid: Yes Print: Yes Base: Yes]],
  467. weapons = {"fas2_m1911", "lockpick"},
  468. command = "mafia",
  469. category = "Criminals",
  470. max = 10,
  471. salary = 45,
  472. admin = 0,
  473. vote = false,
  474. hasLicense = false
  475. })
  476.  
  477. TEAM_TRIADBOSS = DarkRP.createJob("Chinese Triad Boss", {
  478. color = Color(150, 0, 0, 255),
  479. model = {"models/player/hostage/hostage_01.mdl"},
  480. description = [[As the Chinese Triad Boss you have authority over the Chinese Triad members. Guide your gang to glory however you see fit, even if it means breaking a few laws. Remember, the Italian Mafia are your foes.
  481. Raid: Yes Print: Yes Base: Yes]],
  482. weapons = {"fas2_mp5k", "fas2_p226", "keypad_cracker", "unarrest_stick", "lockpick"},
  483. command = "triadboss",
  484. category = "Criminals",
  485. max = 1,
  486. salary = 55,
  487. admin = 0,
  488. vote = false,
  489. hasLicense = false
  490. })
  491.  
  492. TEAM_TRIAD = DarkRP.createJob("Chinese Triad Member", {
  493. color = Color(100, 0, 0, 255),
  494. model = {"models/player/Group03/male_05.mdl"},
  495. description = [[As a member of the Chinese Triad your job is to follow your boss' orders to dominate the Italian Mafia and grow your base.
  496. Raid: Yes Print: Yes Base: Yes]],
  497. weapons = {"fas2_p226", "lockpick"},
  498. command = "triad",
  499. category = "Criminals",
  500. max = 10,
  501. salary = 55,
  502. admin = 0,
  503. vote = false,
  504. hasLicense = false
  505. })
  506.  
  507. TEAM_RUSSIANMAFIA = DarkRP.createJob("Russian Mafia Member", {
  508. color = Color(178, 8, 17, 255),
  509. model = {"models/ninja/mw2_ruskie_airborne.mdl"},
  510. description = [[As the Russian Mafia, your part of an illicit criminal group. But be careful as your main foes, the Chinese triad, are hunting you down.
  511. Raid: Yes Print: Yes Base: Yes]],
  512. weapons = {"fas2_glock20", "lockpick"},
  513. command = "russianmafiamember",
  514. max = 10,
  515. salary = 55,
  516. admin = 0,
  517. vote = false,
  518. hasLicense = false,
  519. category = "Criminals"
  520. })
  521.  
  522. TEAM_RUSSIANMAFIABOSS = DarkRP.createJob("Russian Mafia Boss", {
  523. color = Color(178, 8, 17, 255),
  524. model = {"models/ninja/mw2_ruskie_arctic.mdl"},
  525. description = [[You've ranked your way up to become the boss, now you must command your mafia and earn as much money along the way
  526. Raid: Yes Print: Yes Base: Yes]],
  527. weapons = {"fas2_ak74", "fas2_glock20", "lockpick", "fas2_ragingbull", "keypad_cracker", "unarrest_stick"},
  528. command = "russianmafiaboss",
  529. max = 1,
  530. salary = 55,
  531. admin = 0,
  532. vote = false,
  533. hasLicense = false,
  534. category = "Criminals"
  535. })
  536.  
  537. TEAM_CINEMAOWNER = DarkRP.createJob("Cinema Owner", {
  538. color = Color(238, 99, 99, 255),
  539. model = "models/player/mossman.mdl",
  540. description = [[You are to provide "legal" movies for any citizen that wishes to spend time with family and friends.
  541. Raid: No Print: No Base: Yes]],
  542. weapons = {},
  543. command = "cinema",
  544. category = "Civilians",
  545. max = 1,
  546. salary = 45,
  547. admin = 0,
  548. vote = false,
  549. hasLicense = false
  550. })
  551.  
  552. TEAM_DJ = DarkRP.createJob("DJ", {
  553. color = Color(142, 216, 23, 255),
  554. model = "models/player/soldier_stripped.mdl",
  555. model = "models/player/soldier_stripped.mdl",
  556. description = [[You are the one that provides the entertainment around the town, release your bangin' tunes.
  557. Raid: No Print: No Base: Yes, only for a club.]],
  558. weapons = {},
  559. command = "dj",
  560. category = "Civilians",
  561. max = 1,
  562. salary = 45,
  563. admin = 0,
  564. vote = false,
  565. hasLicense = false
  566. })
  567.  
  568. TEAM_STAFFONDUTY = DarkRP.createJob("Staff on Duty", {
  569. color = Color(0, 188, 255, 255),
  570. model = {"models/player/combine_super_soldier.mdl"},
  571. description = [[Staff members are moderators of the server and cannot take part in any role playing activities. They are here to enforce rules, not laws.]],
  572. weapons = {"fas2_ragingbull", "weapon_keypadchecker"},
  573. command = "SOD",
  574. max = 0,
  575. salary = 0,
  576. admin = 0,
  577. vote = false,
  578. candemote = false,
  579. category = "Staff Jobs",
  580. customCheck = function(ply) return ply:IsAdmin() end,
  581. CustomCheckFailMsg = "You are clearly not a member of Staff."
  582. })
  583.  
  584. --[[---------------------------------------------------------------------------
  585. Define which team joining players spawn into and what team you change to if demoted
  586. ---------------------------------------------------------------------------]]
  587. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  588.  
  589. --[[---------------------------------------------------------------------------
  590. Define which teams belong to civil protection
  591. Civil protection can set warrants, make people wanted and do some other police related things
  592. ---------------------------------------------------------------------------]]
  593. GAMEMODE.CivilProtection = {
  594. [TEAM_POLICE] = true,
  595. [TEAM_POLICECHIEF] = true,
  596. [TEAM_ARUSERGEANT] = true,
  597. [TEAM_ARUOFFICER] = true,
  598. [TEAM_SWAT] = true,
  599. [TEAM_SWATLEADER] = true,
  600. [TEAM_MAYOR] = true,
  601. [TEAM_SS] = true
  602. }
  603.  
  604. --[[---------------------------------------------------------------------------
  605. Jobs that are hitmen (enables the hitman menu)
  606. ---------------------------------------------------------------------------]]
  607. DarkRP.addHitmanTeam(TEAM_HITMAN)
  608. DarkRP.addHitmanTeam(TEAM_MERCENARY)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement