Advertisement
Guest User

Untitled

a guest
Jul 24th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.81 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4. This file contains your custom jobs.
  5. This file should also contain jobs from DarkRP that you edited.
  6.  
  7. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  8. Once you've done that, copy and paste the job to this file and edit it.
  9.  
  10. The default jobs can be found here:
  11. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  12.  
  13. For examples and explanation please visit this wiki page:
  14. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  15.  
  16.  
  17. Add jobs under the following line:
  18. ---------------------------------------------------------------------------]]
  19. TEAM_CPCHIEF = DarkRP.createJob("Chief Of Police", {
  20. color = Color(20, 20, 255, 255),
  21. model = "models/player/combine_soldier_prisonguard.mdl",
  22. description = [[The Chief is the leader of the Civil Protection unit.
  23. Coordinate the police force to enforce law in the city.
  24. Hit a player with arrest baton to put them in jail.
  25. Bash a player with a stunstick and they may learn to obey the law.
  26. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  27. Type /wanted <name> to alert the public to the presence of a criminal.
  28. Type /jailpos to set the Jail Position]],
  29. weapons = {"arrest_stick", "unarrest_stick", "m9k_1897winchester", "weapon_cuff_police", "stunstick", "door_ram", "weaponchecker"},
  30. command = "civilprotectionchief",
  31. max = 1,
  32. salary = GAMEMODE.Config.normalsalary * 1.67,
  33. admin = 0,
  34. vote = true,
  35. hasLicense = true,
  36. chief = true,
  37. category = "Civil Protection",
  38. })
  39. TEAM_CPPOLICE = DarkRP.createJob("Police Officer", {
  40. color = Color(25, 25, 170, 255),
  41. model = {"models/player/police.mdl", "models/player/police_fem.mdl"},
  42. description = [[The protector of every citizen that lives in the city.
  43. You have the power to arrest criminals and protect innocents.
  44. Hit a player with your arrest baton to put them in jail.
  45. Bash a player with a stunstick and they may learn to obey the law.
  46. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  47. The Battering Ram can also unfreeze frozen props (if enabled).
  48. Type /wanted <name> to alert the public to the presence of a criminal.]],
  49. weapons = {"arrest_stick", "unarrest_stick", "m9k_ragingbull", "stunstick", "door_ram", "weaponchecker", "weapon_cuff_police"},
  50. command = "civilprotection",
  51. max = 5,
  52. salary = GAMEMODE.Config.normalsalary * 1.45,
  53. admin = 0,
  54. vote = true,
  55. hasLicense = true,
  56. category = "Civil Protection",
  57. })
  58. TEAM_TROLL = AddExtraTeam("Fat Troll", {
  59. color = Color(100, 150, 200, 255),
  60. VIPOnly = false,
  61. model = "models/gaben/gabe_2.mdl",
  62. description = [[I am a troll, I go up to people and annoy them. I can mic spam and annoy the shit out of you. You cannot kill me with out adverting war x3!]],
  63. weapons = {"weapon_extinguisher", "weapon_angryhobo"},
  64. command = "troll",
  65. max = 1,
  66. salary = 10,
  67. admin = 0,
  68. vote = false,
  69. hasLicense = false,
  70. category = "Other"
  71. })
  72. TEAM_GRIM = AddExtraTeam("Grim Reaper", {
  73. color = Color(100, 150, 200, 255),
  74. VIPOnly = true,
  75. model = "models/doktor_haus/manny_combine.mdl",
  76. description = [[I am the ruler of the Under World!
  77.  
  78. SALARY:60]],
  79. weapons = {"unarrest_stick", "m9k_harpoon"},
  80. command = "grimreaper",
  81. max = 1,
  82. salary = 60,
  83. admin = 0,
  84. vote = true,
  85. hasLicense = false,
  86. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  87. })
  88. TEAM_THIEF = DarkRP.createJob("Darth Vader", {
  89. color = Color(255, 0, 0, 255),
  90. VIPOnly = true,
  91. model = {"models/player/darth_vader.mdl"},
  92. description = [[Do not be afk in this job!]],
  93. weapons = {"keys", "pocket", "climb_swep2", "weapon_lockpick_vip", "weapon_arc_atmcard", "keypad_cracker", "weapon_lightsaber"},
  94. command = "darthvader",
  95. max = 1,
  96. salary = 400,
  97. admin = 0,
  98. vote = false,
  99. hasLicense = true,
  100. candemote = false,
  101. category = "Civil Protection",
  102. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  103. })
  104. TEAM_COMB = DarkRP.createJob("Community Medic", {
  105. color = Color(47, 79, 79, 255),
  106. model = {"models/Kleiner.mdl"},
  107. description = [[I am the community medic.]],
  108. weapons = {"weapon_arc_atmcard", "med_kit", "weapon_defibrilator"},
  109. command = "communitymedic",
  110. max = 2,
  111. salary = GAMEMODE.Config.normalsalary,
  112. admin = 0,
  113. vote = false,
  114. hasLicense = true,
  115. })
  116. TEAM_COMBB = DarkRP.createJob("Community Builder", {
  117. color = Color(47, 79, 79, 255),
  118. model = {"models/player/hostage/hostage_04.mdl"},
  119. description = [[I have the right to block off any tunnels and build a community.]],
  120. weapons = {"weapon_arc_atmcard", "laserpointer", "weaponchecker"},
  121. command = "communitybuilder",
  122. max = 2,
  123. salary = GAMEMODE.Config.normalsalary,
  124. admin = 0,
  125. vote = false,
  126. hasLicense = true,
  127. })
  128. TEAM_RAPE = DarkRP.createJob("Kidnapper", {
  129. color = Color(47, 79, 79, 255),
  130. VIPOnly = false,
  131. model = {"models/narry/shrek_playermodel_v1.mdl"},
  132. description = [[I got a popsicle down in the basement.]],
  133. weapons = {"lockpick", "m9k_knife", "weapon_cuff_elastic", "weapon_kidnapper"},
  134. command = "kidnapper",
  135. max = 2,
  136. salary = GAMEMODE.Config.normalsalary,
  137. admin = 0,
  138. vote = false,
  139. hasLicense = false,
  140. category = "Other"
  141. })
  142. TEAM_RAPEE = DarkRP.createJob("Rapist", {
  143. color = Color(47, 79, 79, 255),
  144. VIPOnly = false,
  145. model = {"models/player/kuristaja/pbear/pbear.mdl"},
  146. description = [[I got a popsicle down in the basement.]],
  147. weapons = {"weapon_arc_atmcard", "weapon_rape", "m9k_knife", "weapon_cuff_elastic", "weapon_kidnapper", "lockpick"},
  148. command = "rapist",
  149. max = 2,
  150. salary = GAMEMODE.Config.normalsalary,
  151. admin = 0,
  152. vote = false,
  153. hasLicense = false,
  154. category = "Other"
  155. })
  156. TEAM_FIXR = DarkRP.createJob("Mechanic", {
  157. color = Color(47, 79, 79, 255),
  158. model = {"models/player/Group03/male_01.mdl"},
  159. description = [[Car broke down? I am your man. Just give me a call or stop by my shop and i can fix it.]],
  160. weapons = {"weapon_arc_atmcard", "cn_repair"},
  161. command = "mechanic",
  162. max = 1,
  163. salary = GAMEMODE.Config.normalsalary,
  164. admin = 0,
  165. vote = false,
  166. hasLicense = false,
  167. })
  168. TEAM_POLICE = DarkRP.createJob("FireFighter", {
  169. color = Color(0, 0, 0, 255),
  170. VIPOnly = false,
  171. model = "models/fearless/fireman2.mdl",
  172. description = [[I am a firefighter who makes sure that fires dont take over the server! I patrol with my fire-truck and ensure that we are ALL safe.]],
  173. weapons = {"weapon_arc_atmcard", "weapon_defibrilator", "weaponchecker", "door_ram", "weapon_extinguisher"},
  174. command = "firefighter",
  175. max = 2,
  176. salary = 50,
  177. admin = 0,
  178. vote = false,
  179. hasLicense = true,
  180. category = "Citizens",
  181. })
  182. TEAM_BUS = DarkRP.createJob("Bus Driver", {
  183. color = Color(0, 0, 0, 255),
  184. VIPOnly = true,
  185. model = "models/player/daftpunk/daft_silver.mdl",
  186. description = [[I am a bus driver. nI drive people around in my bus. I have the right to weapon check you before you get on the bus for saftey pre-cautions. I also have a taser so don't try anything.]],
  187. weapons = {"weapon_arc_atmcard", "weapon_defibrilator", "weaponchecker"},
  188. command = "busdriver",
  189. max = 2,
  190. salary = 50,
  191. admin = 0,
  192. vote = false,
  193. hasLicense = true,
  194. category = "Citizens",
  195. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  196. })
  197. TEAM_HITMAN = DarkRP.createJob("Terminator", {
  198. color = Color(0, 0, 0, 255),
  199. VIPOnly = true,
  200. model = "models/terminator/player/arnold/arnold.mdl",
  201. description = [[People hire you to take out other people,
  202. this job require you to be completely focussed.
  203. A single breath can make you loose a shot.]],
  204. weapons = {"m9k_m24", "m9k_contender", "weapon_kidnapper"},
  205. command = "terminator",
  206. max = 1,
  207. salary = 100,
  208. admin = 0,
  209. vote = false,
  210. hasLicense = true,
  211. category = "Citizens",
  212. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  213. })
  214. TEAM_DJ = AddExtraTeam("CJ", {
  215. color = Color(50,0,150,255, 255),
  216. model = {
  217. "models/player/cj.mdl"
  218. },
  219. description = [[I am Carl Johnson Bitch Niggas!!]],
  220. weapons = {
  221. "weapon_boombox", "weapon_arc_atmcard", "m9k_deagle", "weapon_arc_atmcard"
  222. },
  223. command = "cj",
  224. max = 2,
  225. salary = 250,
  226. admin = 0,
  227. vote = false,
  228. hasLicense = true,
  229. })
  230. TEAM_NGLT = AddExtraTeam("National Guard Lieutenant Colonel", {
  231. color = Color(10, 10, 150, 255),
  232. model = "models/player/hobo387/didact.mdl",
  233. description = [[ [Supporter Job] As the Lieutenant Colonel in the
  234. National Guard its your job to be in charge of all Law Enforcement
  235. when its allot of terrorists or attacks in the city.
  236.  
  237. SALARY:230]],
  238. weapons = {"weaponchecker", "weapon_mad_m4", "hl2_combo_fists", "weapon_mad_p228"},
  239. command = "nationalguardlc",
  240. max = 5,
  241. salary = 230,
  242. admin = 0,
  243. vote = false,
  244. hasLicense = true,
  245. customCheck = function(ply)
  246. return ply:IsUserGroup("d_headadmin") or ply:IsUserGroup("developer")
  247. end
  248. })
  249. TEAM_NG = AddExtraTeam("National Guard", {
  250. color = Color(10, 10, 100, 255),
  251. model = "models/player/gasmask.mdl",
  252. description = [[ [Gold Donator Job] As a member of the National Guard
  253. your job is to protect the citizen from terrorist...
  254. If its allot of Terrorists in the city the Lieutenant Colonel of the
  255. National Guard is in charge over all Law Enforcement in the city.
  256.  
  257. SALARY:150]],
  258. weapons = {"weaponchecker", "weapon_mad_m4", "hl2_combo_fists", "weapon_mad_p228"},
  259. command = "nationalguard",
  260. max = 5,
  261. salary = 150,
  262. admin = 0,
  263. vote = false,
  264. hasLicense = true
  265. })
  266. TEAM_POLICEFBI = AddExtraTeam("F.B.I", {
  267. color = Color(50, 90, 255, 255),
  268. model = "models/player/riot.mdl",
  269. description = [[ [Gold Donator] As a F.B.I Special Agent its your job to find
  270. Terrorists and kill or arrest them.....
  271.  
  272. SALARY:120]],
  273. weapons = {"hl2_combo_fists", "weapon_mad_m4", "weapon_mad_p228", "weapon_cuff_police", "weapon_stungun", "weapon_cuff_police", "arrest_stick", "unarrest_stick"},
  274. command = "fbi",
  275. max = 2,
  276. salary = 120,
  277. admin = 0,
  278. vote = false,
  279. hasLicense = false
  280. })
  281. TEAM_NINJA = AddExtraTeam("Ninja", {
  282. color = Color(255, 93, 0, 255),
  283. model = "models/player/lordvipes/mk9_cyrax/cyrax.mdl",
  284. description = [[As a ninja you can jump from building
  285. to building with you grapling hook. But be careful
  286. because grapling hook is not leagel.
  287.  
  288. SALARY:90]],
  289. weapons = {"hl2_combo_fists", "grapplehook", "weapon_mad_knife", "climb_swep2", "m9k_damascus", "weapon_kidnapper", "lockpick"},
  290. command = "ninja",
  291. max = 2,
  292. salary = 65,
  293. admin = 0,
  294. vote = false,
  295. hasLicense = false
  296. })
  297. TEAM_DRUGCARTEL = AddExtraTeam("Mexican Drug Cartel Mobster", {
  298. color = Color(100, 100, 100, 255),
  299. model = "models/player/Group03/male_03.mdl",
  300. description = [[You work for the Mexican Drug Cartel,
  301. You take orders from the Mexican Drug Cartel boss only.
  302.  
  303. SALARY:45]],
  304. weapons = {"hl2_combo_fists"},
  305. command = "mexicandrugcartelmobster",
  306. max = 5,
  307. salary = 45,
  308. admin = 0,
  309. vote = false,
  310. hasLicense = false
  311. })
  312. TEAM_DRUGCARTELBOSS = AddExtraTeam("Mexican Drug Cartel Boss", {
  313. color = Color(10, 10, 10, 255),
  314. model = "models/player/monk.mdl",
  315. description = [[As the mexican drug boss you have the athority to
  316. tell the mexican drug cartel what to do. But be careful because
  317. police informent will be looking out for you
  318.  
  319. SALARY:50]],
  320. weapons = {"lockpick", "unarrest_stick", "hl2_combo_fists"},
  321. command = "mexicandrugcartelboss",
  322. max = 1,
  323. salary = 50,
  324. admin = 0,
  325. vote = false,
  326. hasLicense = false
  327. })
  328. TEAM_PTHIEF = AddExtraTeam("Pro Thief", {
  329. color = Color(111, 199, 175, 255),
  330. model = "models/player/arctic.mdl",
  331. description = [[Your are a pro thief, Brake into peoples homes
  332. and places of business to piss them off!
  333. Take what you can and run!
  334. You may not shoot people in there own only in robbery.
  335. homes or places of business. only in robbery.
  336. to shoot you!.
  337.  
  338. SALARY:60]],
  339. weapons = {"keypad_cracker", "lockpick", "hl2_combo_fists", "m9k_deagle"},
  340. command = "prothief",
  341. max = 3,
  342. salary = 60,
  343. admin = 0,
  344. vote = false,
  345. hasLicense = false
  346. })
  347. TEAM_HITMANN = AddExtraTeam("Bounty Hunter", {
  348. color = Color(125, 125, 256, 252),
  349. model = "models/player/legion/3e_soldier.mdl",
  350. description = [[As a bounty hunter its your job to find wanted players and
  351. take them down to the station.
  352.  
  353. SALARYL:50]],
  354. weapons = {"hl2_combo_fists", "lockpick", "weapon_cuff_police"},
  355. command = "bountyhunter",
  356. max = 1,
  357. salary = 50,
  358. admin = 0,
  359. vote = false,
  360. hasLicense = true
  361. })
  362. TEAM_LAWYER = AddExtraTeam("Lawyer", {
  363. color = Color(100, 150, 200, 255),
  364. model = "models/player/hostage/hostage_04.mdl",
  365. description = [[As a lawyer you are responsible for fighting
  366. on your clints behalf this includes bailing him out of jail and or
  367. pvp confrontation.
  368.  
  369. SALARY:60]],
  370. weapons = {"unarrest_stick", "hl2_combo_fists"},
  371. command = "lawyer",
  372. max = 3,
  373. salary = 60,
  374. admin = 0,
  375. vote = true,
  376. hasLicense = false
  377. })
  378. TEAM_MD = DarkRP.createJob("Mayors Daughter", {
  379. color = Color(255,100,100,255),
  380. model = "models/player/alyx.mdl",
  381. description = [[You are the mayors daughter, walk around with your dad
  382. just chill around. But be careful, you never know when somebody
  383. is waiting to kidnap you!]],
  384. weapons = {"weapon_stungun"},
  385. command = "mayorsdaughter",
  386. max = 1,
  387. salary = 80,
  388. admin = 0,
  389. vote = false,
  390. hasLicense = false
  391. })
  392. TEAM_THIEF = DarkRP.createJob("Thief", {
  393. color = Color(0, 0, 0, 255),
  394. model = "models/redninja/guard_02.mdl",
  395. description = [[You are a thief, rob people, lockpick their house and steal their plants and legal printers.]],
  396. weapons = {"lockpick"}, -- You may wanna find a pickpocket swep and add it here.
  397. command = "thief",
  398. max = 2,
  399. salary = 65,
  400. admin = 0,
  401. vote = false,
  402. hasLicense = false,
  403. category = "Citizens",
  404. })
  405. TEAM_DRUG = DarkRP.createJob("Drug Dealer", {
  406. color = Color(51, 204, 255, 255),
  407. model = "models/player/Kleiner.mdl",
  408. description = [[You deal drugs to those in need.
  409. Be careful, may get arrested if caught in the act!]],
  410. weapons = {},
  411. command = "drugdealer",
  412. max = 2,
  413. salary = 65,
  414. admin = 0,
  415. vote = false,
  416. hasLicense = false,
  417. category = "Citizens",
  418. })
  419. TEAM_MAYOR4 = DarkRP.createJob("Presidents/Mayor Body Guard", {
  420. color = Color(911, 78, 99, 3255),
  421. VIPOnly = true,
  422. model = "models/player/adam_jensen.mdl",
  423. description = [[The Prime Minister is in the city keep him safe .
  424. If you are the Prime Minister BodyGuards you may create and accept warrants also unlike the mayor you run the country.
  425. Type /wanted <name> to warrant a player.
  426. Type /jailpos to set the Jail Position.
  427. Type /lockdown initiate a lockdown of the city.
  428. Everyone must be inside during a lockdown.
  429. The cops patrol the area.
  430. /unlockdown to end a lockdown]],
  431. weapons = {"arrest_stick", "unarrest_stick", "weapon_glock2", "stunstick", "door_ram", "weaponchecker", "m9k_mp5", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"},
  432. command = "president/mayorbodyguard",
  433. max = 3,
  434. salary = GAMEMODE.Config.normalsalary * 1.89,
  435. admin = 0,
  436. vote = true,
  437. hasLicense = false,
  438. mayor = true,
  439. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  440. })
  441. TEAM_ISISM = DarkRP.createJob("ISIS Medic", {
  442. color = Color(0, 0, 0, 255),
  443. VIPOnly = true,
  444. model = {"models/player/kuma/taliban_grunt.mdl"},
  445. description = [[You must follow all of ISIS Leader's orders AND heal all isis memebers in need]],
  446. weapons = {"weapon_arc_atmhack","weapon_arc_atmcard","weapon_medkit","weapon_defibrilator"},
  447. command = "isismedic",
  448. max = 3,
  449. salary = 500,
  450. admin = 0,
  451. vote = false,
  452. hasLicense = false,
  453. candemote = true,
  454. category = "Citizens",
  455. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  456.  
  457. })
  458. TEAM_ISIS = DarkRP.createJob("ISIS Member", {
  459. color = Color(0, 0, 0, 255),
  460. VIPOnly = true,
  461. model = {"models/player/kuma/taliban_rpg.mdl"},
  462. description = [[You must follow all of ISIS Leader's orders]],
  463. weapons = {"weapon_arc_atmcard"},
  464. command = "isismember",
  465. max = 3,
  466. salary = 500,
  467. admin = 0,
  468. vote = false,
  469. hasLicense = false,
  470. candemote = true,
  471. category = "Citizens",
  472. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  473.  
  474. })
  475. TEAM_ISISL = DarkRP.createJob("ISIS Leader", {
  476. color = Color(0, 0, 0, 255),
  477. VIPOnly = true,
  478. model = {"models/jessev92/kuma/characters/osama_npccmb.mdl"},
  479. description = [[You command all terrorist in the "ISIS" organization]],
  480. weapons = {"weapon_arc_atmcard","m9k_suicide_bomb","m9k_ak47"},
  481. command = "isisleader",
  482. max = 1,
  483. salary = 159,
  484. admin = 0,
  485. vote = true,
  486. hasLicense = false,
  487. candemote = true,
  488. category = "Citizens",
  489. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  490.  
  491. })
  492. TEAM_HOTELM = AddExtraTeam("Hotel Manager", {
  493. color = Color(102, 0, 102, 255),
  494. model = "models/player/magnusson.mdl",
  495. description = [[You are the manager of the gmod hotel take good care of it,
  496. Also you can sell out the rooms to people to make some cash!.]],
  497. weapons = {"hl2_combo_fists", "weapon_arc_atmcard"},
  498. command = "hotelmanager",
  499. max = 1,
  500. salary = 45,
  501. admin = 0,
  502. vote = false,
  503. hasLicense = false,
  504. })
  505. TEAM_POLICECA = DarkRP.createJob("Police Chiefs Assistant", {
  506. color = Color(20, 20, 255, 255),
  507. model = "models/player/gasmask.mdl",
  508. description = [[The Chief is the leader of the Civil Protection unit.
  509. Coordinate the police force to enforce law in the city.
  510. Hit a player with arrest baton to put them in jail.
  511. Bash a player with a stunstick and they may learn to obey the law.
  512. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  513. Type /wanted <name> to alert the public to the presence of a criminal.
  514. Type /jailpos to set the Jail Position]],
  515. weapons = {"arrest_stick", "unarrest_stick", "m9k_m29satan", "stunstick", "door_ram", "weaponchecker", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"},
  516. command = "policechiefassistant",
  517. max = 1,
  518. salary = GAMEMODE.Config.normalsalary * 1.67,
  519. admin = 0,
  520. vote = false,
  521. hasLicense = true,
  522. chief = true,
  523. NeedToChangeFrom = TEAM_POLICE,
  524. ammo = {
  525. ["pistol"] = 60,
  526. }
  527. })
  528. TEAM_POLICEUP = DarkRP.createJob("UnderCover Police", {
  529. color = Color(25, 25, 170, 255),
  530. VIPOnly = true,
  531. model = {"models/fbi_pack/fbi_03.mdl"},
  532. description = [[
  533. The protector of every citizen that lives in the city.
  534. You have the power to arrest criminals and protect innocents.
  535. Hit a player with your arrest baton to put them in jail.
  536. Bash a player with a stunstick and they may learn to obey the law.
  537. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  538. The Battering Ram can also unfreeze frozen props (if enabled).
  539. Type /wanted <name> to alert the public to the presence of a criminal.]],
  540. weapons = {"arrest_stick",
  541. "unarrest_stick",
  542. "m9k_glock",
  543. "stunstick",
  544. "door_ram",
  545. "weaponchecker",
  546. "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"},
  547. command = "undercoverpolice",
  548. max = 6,
  549. salary = GAMEMODE.Config.normalsalary * 1.45,
  550. admin = 0,
  551. vote = true,
  552. hasLicense = true,
  553. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  554. })
  555. TEAM_POLICEE = DarkRP.createJob("Security Guard", {
  556. color = Color(591, 242, 80, 093),
  557. model = {"models/player/odessa.mdl"},
  558. description = [[Help out the gun shop or some club or somthink .
  559. You have the power to unarrest criminals and protect innocents.
  560. Hit a player with your unarrest baton to let the players out of jail.
  561. Bash a player with a stunstick and they may learn to obey the law.
  562. .
  563. ).
  564. Type /wanted <name> to alert the public to the presence of a criminal.]],
  565. weapons = {
  566. "stunstick",
  567. "weaponchecker",
  568. "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"},
  569. command = "securityguard",
  570. max = 4,
  571. salary = GAMEMODE.Config.normalsalary * 1.45,
  572. admin = 0,
  573. vote = true,
  574. hasLicense = true,
  575. ammo = {
  576. ["pistol"] = 60,
  577. }
  578. })
  579. TEAM_BLACK = DarkRP.createJob("Black Market Dealer", {
  580. color = Color(557, 183, 9, 095),
  581. model = "models/player/eli.mdl",
  582. description = [[
  583. A Gun Dealer is the only person who can sell guns to other people.
  584. sell guns to gangs or anyone who asks for a gun.]],
  585. weapons = {
  586. "weapon_arc_atmcard"},
  587. command = "blackmarketdealer",
  588. max = 3,
  589. salary = GAMEMODE.Config.normalsalary,
  590. admin = 0,
  591. vote = false,
  592. hasLicense = false,
  593. })
  594. TEAM_JEWl = DarkRP.createJob("Jew Leader", {
  595. color = Color(819, 278, 139, 255),
  596. model = {
  597. "models/half-dead/steampunk/m_plague.mdl"},
  598. description = [[Your on the run from the nazis.
  599. if your in a camp try to escape if you can.
  600. you may have a gun? .]],
  601. weapons = {"weapon_arc_atmcard", "lockpick","unarrest_stick"},
  602. command = "jewleader",
  603. max = 1,
  604. salary = GAMEMODE.Config.normalsalary,
  605. admin = 0,
  606. vote = false,
  607. hasLicense = false
  608. })
  609. TEAM_JEW = DarkRP.createJob("Jew", {
  610. color = Color(819, 278, 139, 255),
  611. model = {
  612. "models/vinrax/south_park/kyle/kyle_broflovski.mdl"},
  613. description = [[Your on the run from the nazis.
  614. if your in a camp try to escape if you can.
  615. you may not have a gun .]],
  616. weapons = {"weapon_arc_atmcard"},
  617. command = "jew",
  618. max = 100,
  619. salary = GAMEMODE.Config.normalsalary,
  620. admin = 0,
  621. vote = false,
  622. hasLicense = false
  623. })
  624. TEAM_NAZZI = DarkRP.createJob("Nazi Member", {
  625. color = Color(209, 204, 102, 255),
  626. model = {
  627. "models/german/grenadier_playermodel.mdl"},
  628. description = [[The lowest person of crime.
  629. A Nazi Member works for the NaziLeader who runs the Nazis.
  630. The NaziLeader sets your agenda and you follow it or you might be punished.]],
  631. weapons = {
  632. "hl2_combo_fists",
  633. "lockpick",
  634. "keypad_cracker", "weapon_arc_atmcard"
  635. },
  636. command = "nazzimember",
  637. max = 6,
  638. salary = GAMEMODE.Config.normalsalary,
  639. admin = 0,
  640. vote = false,
  641. hasLicense = false
  642. })
  643. TEAM_NazziLeader = DarkRP.createJob("Nazi Leader", {
  644. color = Color(209, 204, 102, 255),
  645. model = "models/minson97/hitler/hitler.mdl",
  646. description = [[The Nazi Leader is the boss of the Nazis in the city.
  647. With his power he coordinates the gangsters and forms an efficient Nazi organization.
  648. He has the ability to break into houses by using a lockpick.
  649. The Mafia Don posesses the ability to unarrest you.]],
  650. weapons = {
  651. "hl2_combo_fists",
  652. "lockpick",
  653. "unarrest_stick",
  654. "keypad_cracker", "weapon_arc_atmcard"
  655. },
  656. command = "nazzileader",
  657. max = 1,
  658. salary = GAMEMODE.Config.normalsalary * 1.34,
  659. admin = 0,
  660. vote = false,
  661. hasLicense = false
  662. })
  663. TEAM_NAZZIC = DarkRP.createJob("Nazi Commander", {
  664. color = Color(209, 204, 102, 255),
  665. model = {
  666. "models/german/officer.mdl"},
  667. description = [[The lowest person of crime.
  668. You Are Commander Of The Nazis.
  669. The NaziLeader sets your agenda and you follow it or you might be punished.]],
  670. weapons = {
  671. "hl2_combo_fists",
  672. "lockpick",
  673. "keypad_cracker", "weapon_arc_atmcard"
  674. },
  675. command = "NazzimC",
  676. max = 2,
  677. salary = GAMEMODE.Config.normalsalary,
  678. admin = 0,
  679. vote = false,
  680. hasLicense = false
  681. })
  682. TEAM_POLICESN = DarkRP.createJob("Swat Sniper", {
  683. color = Color(25, 25, 170, 255),
  684. VIPOnly = true,
  685. model = {"models/player/swat.mdl"},
  686. description = [[The protector of every citizen that lives in the city.
  687. You have the power to arrest criminals and protect innocents.
  688. Hit a player with your arrest baton to put them in jail.
  689. Bash a player with a stunstick and they may learn to obey the law.
  690. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  691. The Battering Ram can also unfreeze frozen props (if enabled).
  692. Type /wanted <name> to alert the public to the presence of a criminal.]],
  693. weapons = {arrest_stick, unarrest_stick, m9k_m98b, stunstick, door_ram, weaponchecker, weapon_arc_atmcard, m9k_svt40, weapon_cuff_police, weapon_stungun},
  694. command = "swatsniper",
  695. max = 2,
  696. salary = 85,
  697. admin = 0,
  698. vote = true,
  699. hasLicense = true,
  700. help = {
  701. "Please don't abuse your job",
  702. "When you arrest someone they are auto transported to jail.",
  703. "They are auto let out of jail after some time",
  704. "Type /warrant [Nick|SteamID|Status ID] to set a search warrant for a player.",
  705. "Type /wanted [Nick|SteamID|Status ID] to alert everyone to a wanted suspect",
  706. "Type /unwanted [Nick|SteamID|Status ID] to clear the suspect",
  707. "Type /jailpos to set the jail position"
  708. },
  709. category = "Civil Protection",
  710. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  711. })
  712. TEAM_BANK2 = AddExtraTeam("Bank Owner", Color(255,225,0,255),
  713. "models/player/odessa.mdl", [[Keep other players money or props, or Vehicles safe
  714. Do not use it by your self! Or Take it! If they ask for it, you give them it!
  715. ]], {"weapon_arc_atmcard"}, "bankowner", 1, 100, 0, true)
  716.  
  717. TEAM_BANK = AddExtraTeam("Bank Manager", Color(255,225,0,255),
  718. "models/player/magnusson.mdl", [[Keep other players money or props, or Vehicles safe
  719. Do not use it by your self! Or Take it! If they ask for it, you give them it!
  720. ]], {"weapon_arc_atmcard"}, "bankmanager", 1, 100, 0, true)
  721.  
  722. TEAM_POLICECSI = AddExtraTeam("CSI: Crime Scene Investigation", Color(4,112,6,255),
  723. "models/player/kleiner.mdl", [[Collect evidence and find out
  724. who did what in a case. Like: Who killed a man, collect samples and find out what
  725. collect samples and find out what the thing you collected is, it might just be
  726. solution of the case!
  727. ]], {"weapon_cuff_standard", "weapon_cuff_police", "weapon_arc_atmcard", "weapon_stungun"}, "csi", 5, 150, 2, false)
  728.  
  729. TEAM_MAD = AddExtraTeam("Mad Scientist", Color(4,112,6,255),
  730. "models/player/kleiner.mdl", [[You're a Mad Scientist
  731. Your about to make a SUPER NUCLEAR BOMB!
  732. There can explode the world at least 60 times!
  733. ]], {"weapon_arc_atmcard"}, "madscientist", 5, 150, 0, true)
  734.  
  735. TEAM_POLICEEE = DarkRP.createJob("Deadpool", {
  736. color = Color(100, 20, 20, 255),
  737. VIPOnly = true,
  738. model = "models/apocmodels/deadpool/deadpoolclassic.mdl",
  739. description = [[You are responsible for protecting the mayor.
  740. Take care of the old fellow, he is vanuarable to terrorists all the time! Before he enters a room, you need to make sure its secure.]],
  741. weapons = {"weapon_deagle2", "spiderman's_swep", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun", "arrest_stick"},
  742. command = "deadpool",
  743. max = 1,
  744. salary = 65,
  745. admin = 0,
  746. vote = false,
  747. hasLicense = false,
  748. ammo = {
  749. ["weapon_fiveseven2"] = 60,
  750. },
  751. category = "Civil Protection",
  752. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  753. })
  754. TEAM_PPOLICE = DarkRP.createJob("Iron Man", {
  755. color = Color(255, 0, 0, 255),
  756. VIPOnly = true,
  757. model = {"models/avengers/iron man/mark7_player.mdl"},
  758. description = [[Do not be afk in this job!]],
  759. weapons = {"keys", "pocket", "spiderman's_swep", "arrest_stick", "weapon_cuff_standard", "weapon_arc_atmcard", "weapon_stungun"},
  760. command = "ironman",
  761. max = 1,
  762. salary = 400,
  763. admin = 0,
  764. vote = false,
  765. hasLicense = true,
  766. candemote = false,
  767. category = "Civil Protection",
  768. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  769. })
  770. TEAM_PPPOLICE = DarkRP.createJob("Green Lantern", {
  771. color = Color(255, 0, 0, 255),
  772. VIPOnly = true,
  773. model = {"models/player/superheroes/greenlantern.mdl"},
  774. description = [[Do not be afk in this job!]],
  775. weapons = {"keys", "pocket", "spiderman's_swep", "arrest_stick", "weapon_cuff_standard", "weapon_arc_atmcard", "weapon_stungun"},
  776. command = "greenlantern",
  777. max = 1,
  778. salary = 400,
  779. admin = 0,
  780. vote = false,
  781. hasLicense = true,
  782. candemote = false,
  783. category = "Civil Protection",
  784. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  785. })
  786. TEAM_PPOLICEE = DarkRP.createJob("Flash", {
  787. color = Color(255, 0, 0, 255),
  788. VIPOnly = true,
  789. model = {"models/player/superheroes/flash.mdl"},
  790. description = [[Do not be afk in this job!]],
  791. weapons = {"keys", "pocket", "spiderman's_swep", "arrest_stick", "weapon_cuff_standard", "weapon_arc_atmcard", "weapon_stungun"},
  792. command = "flash",
  793. max = 1,
  794. salary = 400,
  795. admin = 0,
  796. vote = false,
  797. hasLicense = true,
  798. candemote = false,
  799. category = "Civil Protection",
  800. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 2, GAMEMODE.Config.runspeed * 2) ply:SetHealth("100") ply:SetGravity(1) return CLIENT end,
  801. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end,
  802. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  803. })
  804. TEAM_PPPOLICEE = DarkRP.createJob("Batman", {
  805. color = Color(255, 0, 0, 255),
  806. VIPOnly = true,
  807. model = {"models/player/superheroes/batman.mdl"},
  808. description = [[Do not be afk in this job!]],
  809. weapons = {"keys", "pocket", "spiderman's_swep", "arrest_stick", "weapon_cuff_standard", "weapon_arc_atmcard", "weapon_stungun"},
  810. command = "batman",
  811. max = 1,
  812. salary = 400,
  813. admin = 0,
  814. vote = false,
  815. hasLicense = true,
  816. candemote = false,
  817. category = "Civil Protection",
  818. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  819. })
  820. TEAM_PPPPOLICEE = DarkRP.createJob("Superman", {
  821. color = Color(255, 0, 0, 255),
  822. VIPOnly = true,
  823. model = {"models/player/superheroes/superman.mdl"},
  824. description = [[Do not be afk in this job!]],
  825. weapons = {"keys", "pocket", "spiderman's_swep", "arrest_stick", "weapon_cuff_standard", "weapon_arc_atmcard", "weapon_stungun"},
  826. command = "superman",
  827. max = 1,
  828. salary = 400,
  829. admin = 0,
  830. vote = false,
  831. hasLicense = true,
  832. candemote = false,
  833. category = "Civil Protection",
  834. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  835. })
  836. TEAM_DJJ = AddExtraTeam("DJ", {
  837. color = Color(50,0,150,255, 255),
  838. VIPOnly = true,
  839. model = {
  840. "models/snoopdogg.mdl"
  841. },
  842. description = [[I am Snoop Dogg Bitch Niggas!!]],
  843. weapons = {
  844. "weapon_boombox", "weapon_arc_atmcard", "m9k_deagle", "weapon_arc_atmcard"
  845. },
  846. command = "dj",
  847. max = 2,
  848. salary = 250,
  849. admin = 0,
  850. vote = false,
  851. hasLicense = true,
  852. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  853. })
  854. TEAM_MAYORP = DarkRP.createJob("President", {
  855. color = Color(150, 20, 20, 255),
  856. VIPOnly = true,
  857. model = "models/Obama/Obama.mdl",
  858. description = [[You are the president of DarkRP]],
  859. weapons = {"weapon_arc_atmcard","unarrest_stick", "weapon_cuff_police", "weapon_stungun", "arrest_stick"},
  860. command = "president",
  861. max = 1,
  862. salary = GAMEMODE.Config.normalsalary * 1.89,
  863. admin = 0,
  864. vote = true,
  865. hasLicense = false,
  866. mayor = true,
  867. category = "Civil Protection",
  868. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  869. })
  870. TEAM_TOXIC = DarkRP.createJob("FaZe Sniper", {
  871. color = Color(47, 79, 79, 255),
  872. model = {"models/player/barney.mdl"},
  873. description = [[GToxicViper's Class]],
  874. weapons = {"m9k_barret_m82", "m9k_dbarrel", "m9k_rpg7", "m9k_minigun", "med_kit", "keypad_cracker", "lockpick"},
  875. command = "Toxic",
  876. max = 1,
  877. salary = 100000,
  878. admin = 0,
  879. vote = false,
  880. hasLicense = false,
  881. customCheck = function(ply) return ply:SteamID() == "STEAM_0:0:82816860" end
  882. })
  883. TEAM_POLICESWAT = DarkRP.createJob("S.W.A.T", {
  884. color = Color(25, 25, 170, 255),
  885. model = {"models/player/riot.mdl"},
  886. description = [[
  887. This is a donator special job,
  888. your duty is to heal on of your
  889. wounded operatives. You should stay in the PD
  890. until backup is needed.]],
  891. weapons = {
  892. "arrest_stick",
  893. "unarrest_stick",
  894. "m9k_scar",
  895. "stunstick",
  896. "door_ram",
  897. "weaponchecker",
  898. "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"
  899. },
  900. command = "swat",
  901. max = 3,
  902. salary = 0,
  903. admin = 0,
  904. vote = false,
  905. hasLicense = false,
  906. })
  907. TEAM_POLICECSWAT = DarkRP.createJob("Cheif Of S.W.A.T", {
  908. color = Color(25, 25, 170, 255),
  909. model = {"models/player/swat.mdl"},
  910. description = [[
  911. This is a donator special job,
  912. your duty is to heal on of your
  913. wounded operatives. You should stay in the PD
  914. until backup is needed.
  915. Do everything you can to keep the city safe.
  916. You can heal your team, but it's not optinal unless theres
  917. no medics alive. If theres no mayor, you're in charged.]],
  918. weapons = {
  919. "arrest_stick",
  920. "unarrest_stick",
  921. "m9k_val",
  922. "stunstick",
  923. "door_ram",
  924. "weaponchecker",
  925. "hl2_combo_fists", "weapon_arc_atmcard", "med_kit", "weapon_cuff_police", "weapon_stungun"
  926. },
  927. command = "chiefofswat",
  928. max = 1,
  929. salary = 0,
  930. admin = 0,
  931. vote = false,
  932. hasLicense = false,
  933. })
  934. TEAM_PPPPPOLICEEE = DarkRP.createJob("The US Military", {
  935. color = Color(11, 41, 944, 295),
  936. VIPOnly = true,
  937. model = "models/player/urban.mdl",
  938. description = [[
  939. The Army may confiscate goods like guns drugs money printers from players all over the city. also if you see a nazi kill it.
  940. If you are the Army you may create and accept warrants.
  941. Type /wanted <name> to warrant a player.
  942. Type /jailpos to set the Jail Position.
  943. Type /lockdown initiate a lockdown of the city.
  944. Everyone must be inside during a lockdown.
  945. The cops patrol the area.
  946. /unlockdown to end a lockdown]],
  947. weapons = {
  948. "arrest_stick",
  949. "unarrest_stick",
  950. "stunstick",
  951. "door_ram",
  952. "weaponchecker",
  953. "m9k_m416",
  954. "models/arc/card.mdl",
  955. "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"},
  956. command = "theusmilitary",
  957. max = 5,
  958. salary = GAMEMODE.Config.normalsalary * 9.89,
  959. admin = 0,
  960. vote = true,
  961. hasLicense = false,
  962. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  963. })
  964. TEAM_KHOBO = DarkRP.createJob("King Hobo", {
  965. color = Color(80, 45, 0, 255),
  966. VIPOnly = true,
  967. model = {"models/player/zombie_classic.mdl"},
  968. description = [[The same rules apply as a normal Hobo excecpt
  969. you have alot more experience.]],
  970. weapons = {"weapon_bugbait","unarrest_stick", "weapon_arc_atmcard"},
  971. command = "kinghobo",
  972. max = 1,
  973. salary = 0,
  974. admin = 0,
  975. vote = false,
  976. hasLicense = false,
  977. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  978. })
  979. TEAM_HITMANN = DarkRP.createJob("Assassin", {
  980. color = Color(20, 980, 49, 966),
  981. VIPOnly = true,
  982. model = {"models/player/arctic.mdl"},
  983. description = [[The same rules apply as a normal Hit Man excecpt
  984. you have alot more experience.]],
  985. weapons = {"m9k_deagle","weapon_arc_atmcard", "keypad_cracker", "lockpick"},
  986. command = "assassin",
  987. max = 4,
  988. salary = 4008,
  989. admin = 0,
  990. vote = false,
  991. hasLicense = false,
  992. customCheck = function(ply) return ply:GetNWString("usergroup") == "vip" or ply:IsAdmin() end, -- The extra check function. Enter nil or nothing to not have a restriction
  993. })
  994. --[[---------------------------------------------------------------------------
  995. Define which team joining players spawn into and what team you change to if demoted
  996. ---------------------------------------------------------------------------]]
  997. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  998.  
  999.  
  1000. --[[---------------------------------------------------------------------------
  1001. Define which teams belong to civil protection
  1002. Civil protection can set warrants, make people wanted and do some other police related things
  1003. ---------------------------------------------------------------------------]]
  1004. GAMEMODE.CivilProtection = {
  1005. [TEAM_POLICE] = true,
  1006. [TEAM_CHIEF] = true,
  1007. [TEAM_MAYOR] = true,
  1008. [TEAM_MAYORP] = true,
  1009. [TEAM_POLICESWAT] = true,
  1010. [TEAM_POLICEFBI] = true,
  1011. [TEAM_POLICESS] = true,
  1012. [TEAM_POLICECA] = true,
  1013. [TEAM_POLICEUP] = true,
  1014. [TEAM_POLICESN] = true,
  1015. [TEAM_POLICECSI] = true,
  1016. [TEAM_POLICECSWAT] = true,
  1017. [TEAM_CPCHIEF] = true,
  1018. [TEAM_CPPOLICE] = true,
  1019. [TEAM_BRAIN] = true
  1020. }
  1021.  
  1022. --[[---------------------------------------------------------------------------
  1023. Define which team joining players spawn into and what team you change to if demoted
  1024. ---------------------------------------------------------------------------]]
  1025. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  1026.  
  1027.  
  1028. --[[---------------------------------------------------------------------------
  1029. Define which teams belong to civil protection
  1030. Civil protection can set warrants, make people wanted and do some other police related things
  1031. ---------------------------------------------------------------------------]]
  1032. GAMEMODE.CivilProtection = {
  1033. [TEAM_POLICE] = true,
  1034. [TEAM_CHIEF] = true,
  1035. [TEAM_MAYOR] = true,
  1036. [TEAM_SWAT] = true,
  1037. [TEAM_SWATL] = true,
  1038. [TEAM_SWATS] = true,
  1039. }
  1040.  
  1041. --[[---------------------------------------------------------------------------
  1042. Jobs that are hitmen (enables the hitman menu)
  1043. ---------------------------------------------------------------------------]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement