Advertisement
Guest User

Untitled

a guest
Mar 22nd, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 95.05 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. --[[---------------------------------------------------------------------------
  22. DarkRP custom jobs
  23. ---------------------------------------------------------------------------
  24.  
  25. This file contains your custom jobs.
  26. This file should also contain jobs from DarkRP that you edited.
  27.  
  28. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  29. Once you've done that, copy and paste the job to this file and edit it.
  30.  
  31. The default jobs can be found here:
  32. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  33.  
  34. For examples and explanation please visit this wiki page:
  35. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  36.  
  37.  
  38. Add jobs under the following line:
  39. ---------------------------------------------------------------------------]]
  40.  
  41. ---------Citizens---------
  42. TEAM_LIGHTDEALER = DarkRP.createJob("Light Gun Dealer", {
  43. color = Color(255, 136, 0, 255),
  44. model = {"models/player/monk.mdl"},
  45. description = [[You sell guns legally.]],
  46. weapons = {"surrender"},
  47. command = "lgd",
  48. max = 3,
  49. salary = 50,
  50. admin = 0,
  51. vote = false,
  52. hasLicense = false,
  53. category = "Citizens",
  54. })
  55.  
  56. TEAM_Mechanic = DarkRP.createJob("Car Mechanic", {
  57. color = Color(255, 136, 0, 255),
  58. model = {"models/player/hostage/hostage_03.mdl"},
  59. description = [[You Fix peoples cars.]],
  60. weapons = {"surrender", "vc_wrench", "vc_jerrycan"},
  61. command = "MECH",
  62. max = 3,
  63. salary = 50,
  64. admin = 0,
  65. vote = false,
  66. hasLicense = false,
  67. category = "Citizens",
  68. })
  69.  
  70. TEAM_Bus = DarkRP.createJob("Bus Driver", {
  71. color = Color(255, 136, 0, 255),
  72. model = {"models/player/hostage/hostage_03.mdl"},
  73. description = [[You drive people places.]],
  74. weapons = {"surrender"},
  75. command = "busdriver",
  76. max = 2,
  77. salary = 120,
  78. admin = 0,
  79. vote = false,
  80. hasLicense = false,
  81. category = "Citizens",
  82. })
  83.  
  84. TEAM_HEAVYDEALER = DarkRP.createJob("Heavy Gun Dealer", {
  85. color = Color(255, 136, 0, 255),
  86. model = {"models/player/monk.mdl"},
  87. description = [[You sell guns legally.]],
  88. weapons = {"surrender"},
  89. command = "hgd",
  90. max = 1,
  91. salary = 50,
  92. admin = 0,
  93. vote = true,
  94. hasLicense = false,
  95. category = "Citizens",
  96. })
  97.  
  98. TEAM_CMANAGER = DarkRP.createJob("Club Manager", {
  99. color = Color(0, 213, 255),
  100. model = {"models/player/hostage/hostage_02.mdl",
  101. "models/player/hostage/hostage_03.mdl"},
  102. description = [[You are the club manager for Club Catalyst]],
  103. weapons = {"dab", "surrender"},
  104. command = "cmanager",
  105. max = 1,
  106. salary = 75,
  107. admin = 0,
  108. vote = false,
  109. hasLicense = false,
  110. category = "Citizens",
  111. })
  112.  
  113. ---------Criminals---------
  114. TEAM_PROST = DarkRP.createJob("Prostitute", {
  115. color = Color(252, 0, 199, 255),
  116. model = {"models/player/doa5_kasumi.mdl"},
  117. description = [[You are a prostitute, you provide pleasure to the people of Rockford.]],
  118. weapons = {"keys", "weapon_rape"},
  119. command = "prost",
  120. max = 3,
  121. salary = 250,
  122. admin = 0,
  123. vote = false,
  124. hasLicense = true,
  125. candemote = false,
  126. category = "Criminals",
  127. customCheck = function(ply) return CLIENT or
  128. table.HasValue({"vip", "vip+", "owner", "admin", "superadmin", "trialmoderator", "moderator", "also"}, ply:GetNWString("usergroup"))
  129. end,
  130. CustomCheckFailMsg = "donator only!",
  131. })
  132.  
  133. TEAM_THIEF = DarkRP.createJob("Thief", {
  134. color = Color(0, 0, 0),
  135. model = {"models/player/arctic.mdl"},
  136. description = [[You steal peoples stuff]],
  137. weapons = {"lockpick", "keypad_cracker", "surrender"},
  138. command = "thief",
  139. max = 3,
  140. salary = 75,
  141. admin = 0,
  142. vote = false,
  143. hasLicense = false,
  144. category = "Criminals",
  145. })
  146.  
  147. TEAM_BTHIEF = DarkRP.createJob("Bank Thief", {
  148. color = Color(0, 0, 0),
  149. model = {"models/player/group01/cookies114.mdl"},
  150. description = [[You steal all the money from the bank!]],
  151. weapons = {"lockpick", "keypad_cracker", "surrender"},
  152. command = "bthief",
  153. max = 4,
  154. salary = 75,
  155. admin = 0,
  156. vote = false,
  157. hasLicense = false,
  158. category = "Criminals",
  159. })
  160.  
  161. TEAM_LBLOODS = DarkRP.createJob("Blood Leader", {
  162. color = Color(255, 0, 0),
  163. model = {"models/player/bloodz/slow_1.mdl"},
  164. description = [[You lead the bloods to own the city of rockford]],
  165. weapons = {"tfa_csgo_mac10", "lockpick", "surrender"},
  166. command = "bloodsleader",
  167. max = 1,
  168. salary = 75,
  169. admin = 0,
  170. vote = true,
  171. hasLicense = false,
  172. category = "Criminals",
  173. })
  174.  
  175. TEAM_BLOODS = DarkRP.createJob("Blood Member", {
  176. color = Color(255, 0, 0),
  177. model = {"models/player/bloodz/slow_2.mdl"},
  178. description = [[You lead the bloods to own the city of rockford]],
  179. weapons = {"lockpick", "surrender"},
  180. command = "bloodsmember",
  181. max = 10,
  182. salary = 75,
  183. admin = 0,
  184. vote = false,
  185. hasLicense = false,
  186. category = "Criminals",
  187. })
  188.  
  189. TEAM_CRIPS = DarkRP.createJob("Crips Leader", {
  190. color = Color(0, 0, 255),
  191. model = {"models/player/cripz/slow_2.mdl"},
  192. description = [[You lead the crips to own the city of rockford]],
  193. weapons = {"tfa_csgo_mac10", "lockpick", "surrender"},
  194. command = "cripsleader",
  195. max = 1,
  196. salary = 75,
  197. admin = 0,
  198. vote = true,
  199. hasLicense = false,
  200. category = "Criminals",
  201. })
  202.  
  203. TEAM_CRIPS = DarkRP.createJob("Crips Member", {
  204. color = Color(0, 0, 255),
  205. model = {"models/player/cripz/slow_3.mdl"},
  206. description = [[You help the leader take over the city of rockford]],
  207. weapons = {"lockpick", "surrender"},
  208. command = "cripsmember",
  209. max = 10,
  210. salary = 75,
  211. admin = 0,
  212. vote = false,
  213. hasLicense = false,
  214. category = "Criminals",
  215. })
  216.  
  217. TEAM_KIDNAPPER = DarkRP.createJob("Kidnapper", {
  218. color = Color(105, 110, 117, 255),
  219. model = {"models/player/Group01/male_01.mdl",
  220. "models/player/Group01/male_02.mdl",
  221. "models/player/Group01/male_03.mdl",
  222. "models/player/Group01/male_04.mdl",
  223. "models/player/Group01/male_05.mdl",
  224. "models/player/Group01/male_06.mdl",
  225. "models/player/Group01/male_07.mdl",
  226. "models/player/Group01/male_08.mdl",
  227. "models/player/Group01/male_09.mdl"},
  228. description = [[Take people hostage and sell them for randsom]],
  229. weapons = {"weapon_cuff_elastic", "surrender"},
  230. command = "kidnapper",
  231. max = 2,
  232. salary = 75,
  233. admin = 0,
  234. vote = true,
  235. hasLicense = false,
  236. category = "Criminals",
  237. })
  238.  
  239. TEAM_MURDERER = DarkRP.createJob("Murderer", {
  240. color = Color(163, 25, 1),
  241. model = {"models/splinks/jeff_the_killer/jeff.mdl"},
  242. description = [[You kill people. 1 kill per 5 minutes]],
  243. weapons = {"tfa_nmrih_kknife", "tfa_csgo_nova", "surrender"},
  244. command = "murderer",
  245. max = 2,
  246. salary = 75,
  247. admin = 0,
  248. vote = false,
  249. hasLicense = false,
  250. category = "Criminals",
  251.  
  252. })
  253.  
  254. TEAM_HACKER = DarkRP.createJob("Hacker", {
  255. color = Color(105, 110, 117, 255),
  256. model = {"models/player/hostage/hostage_01.mdl",
  257. "models/player/hostage/hostage_04.mdl"},
  258. description = [[You are a hacker and can get hired to hack keypads.]],
  259. weapons = {"keypad_cracker", "surrender"},
  260. command = "hacker",
  261. max = 3,
  262. salary = 75,
  263. admin = 0,
  264. vote = false,
  265. hasLicense = false,
  266. category = "Criminals",
  267. })
  268.  
  269. TEAM_HIT = DarkRP.createJob("Hitman", {
  270. color = Color(0, 0, 5, 230),
  271. model = {"models/player/gman_high.mdl",},
  272. description = [[You are a criminal, you only work with criminals. People pay you to kill someone.]],
  273. weapons = {"tfa_csgo_ssg08", "surrender"},
  274. command = "hitman",
  275. max = 2,
  276. salary = 45,
  277. admin = 0,
  278. vote = false,
  279. category = "Criminals",
  280. })
  281.  
  282. TEAM_METH = DarkRP.createJob("Meth Cook", {
  283. color = Color(105, 110, 117),
  284. model = {"models/agent_47.mdl"},
  285. description = [[You cook meth and sell it to a buyer.]],
  286. weapons = {"surrender"},
  287. command = "meth",
  288. max = 2,
  289. salary = 75,
  290. admin = 0,
  291. vote = false,
  292. hasLicense = false,
  293. category = "Criminals",
  294. })
  295.  
  296. TEAM_TERRORIST = DarkRP.createJob("Terrorist Member", {
  297. color = Color(0, 0, 0),
  298. model = {"models/player/kuma/taliban_bomber.mdl"},
  299. description = [[Obey the boss of the terrorist group]],
  300. weapons = {"lockpick","tfa_csgo_ak47", "surrender"},
  301. command = "terroristmember",
  302. max = 3,
  303. salary = 75,
  304. admin = 0,
  305. vote = false,
  306. hasLicense = false,
  307. category = "Criminals",
  308. customCheck = function(ply) return CLIENT or
  309. table.HasValue({"vip", "vip+", "admin", "senioradmin", "headadmin", "superadmin", "communitymanager", "staffmanager", "developer", "owner", "moderator"}, ply:GetNWString("usergroup"))
  310. end,
  311. CustomCheckFailMsg = "This job is donator only! Do !donate to purchase this job!",
  312. })
  313.  
  314. TEAM_LTERRORIST = DarkRP.createJob("Terrorist Leader", {
  315. color = Color(0, 0, 0),
  316. model = {"models/player/kuma/taliban_rpg.mdl"},
  317. description = [[You are the boss of the terrorist group]],
  318. weapons = {"lockpick","tfa_csgo_ak47", "surrender"},
  319. command = "terroristleader",
  320. max = 1,
  321. salary = 75,
  322. admin = 0,
  323. vote = false,
  324. hasLicense = false,
  325. category = "Criminals",
  326. customCheck = function(ply) return CLIENT or
  327. table.HasValue({"vip", "vip+", "admin", "senioradmin", "headadmin", "superadmin", "communitymanager", "staffmanager", "developer", "owner", "moderator"}, ply:GetNWString("usergroup"))
  328. end,
  329. CustomCheckFailMsg = "This job is donator only! Do !donate to purchase this job!",
  330. })
  331.  
  332. TEAM_VIPT = DarkRP.createJob("VIP Thief", {
  333. color = Color(189, 0, 255, 255),
  334. model = {"models/player/pd2_dallas_p.mdl"},
  335. description = [[This is a donator job!]],
  336. weapons = {"tfa_csgo_usp", "keys", "inventory", "pro_lockpick_update", "weapon_juicy_vape", "tfa_csgo_nova"},
  337. command = "vippt",
  338. max = 4,
  339. salary = 300,
  340. admin = 0,
  341. vote = false,
  342. hasLicense = false,
  343. category = "Criminals",
  344. candemote = false,
  345. PlayerSpawn = function(ply)
  346. ply:SetMaxHealth(100)
  347. ply:SetHealth(100)
  348. ply:SetArmor(100)
  349. end,
  350. customCheck = function(ply) return CLIENT or
  351. table.HasValue({"vip", "vip+", "admin", "senioradmin", "headadmin", "superadmin", "communitymanager", "staffmanager", "developer", "owner", "trialmoderator", "moderator"}, ply:GetNWString("usergroup"))
  352. end,
  353. CustomCheckFailMsg = "This job is donator only! Do !donate to purchase this job!",
  354. })
  355.  
  356. TEAM_VIPTT = DarkRP.createJob("VIP+ Thief", {
  357. color = Color(189, 0, 255, 255),
  358. model = {"models/player/pd2_dallas_p.mdl"},
  359. description = [[This is a donator job!]],
  360. weapons = {"tfa_csgo_usp", "keys", "inventory", "pro_lockpick_update", "weapon_juicy_vape", "tfa_csgo_m4a1"},
  361. command = "vippttt",
  362. max = 4,
  363. salary = 300,
  364. admin = 0,
  365. vote = false,
  366. hasLicense = false,
  367. category = "Criminals",
  368. candemote = false,
  369. PlayerSpawn = function(ply)
  370. ply:SetMaxHealth(100)
  371. ply:SetHealth(100)
  372. ply:SetArmor(100)
  373. end,
  374. customCheck = function(ply) return CLIENT or
  375. table.HasValue({"vip", "vip+", "admin", "senioradmin", "headadmin", "superadmin", "communitymanager", "staffmanager", "developer", "owner", "trialmoderator", "moderator"}, ply:GetNWString("usergroup"))
  376. end,
  377. CustomCheckFailMsg = "This job is donator only! Do !donate to purchase this job!",
  378. })
  379.  
  380.  
  381. TEAM_HOMEIN = DarkRP.createJob("Home Invader", {
  382. color = Color(0, 0, 255),
  383. model = {"models/bigsmoke/smoke.mdl"},
  384. description = [[You invade homes]],
  385. weapons = {"lockpick", "surrender"},
  386. command = "homeinvader",
  387. max = 2,
  388. salary = 75,
  389. admin = 0,
  390. vote = false,
  391. hasLicense = false,
  392. category = "Criminals",
  393. })
  394.  
  395.  
  396. TEAM_PROST = DarkRP.createJob("Prostitute", {
  397. color = Color(252, 0, 199, 255),
  398. model = {"models/player/doa5_kasumi.mdl"},
  399. description = [[You are a prostitute, you provide pleasure to the people of Rockford.]],
  400. weapons = {"keys", "weapon_rape"},
  401. command = "prost",
  402. max = 3,
  403. salary = 250,
  404. admin = 0,
  405. vote = false,
  406. hasLicense = true,
  407. candemote = false,
  408. category = "Criminals",
  409. customCheck = function(ply) return CLIENT or
  410. table.HasValue({"vip", "vip+", "owner", "admin", "superadmin", "trialmoderator", "moderator", "also"}, ply:GetNWString("usergroup"))
  411. end,
  412. CustomCheckFailMsg = "donator only!",
  413. })
  414.  
  415. ---------Government---------
  416. TEAM_PRESIDENT = DarkRP.createJob("President", {
  417. color = Color(220, 20, 60, 255),
  418. model = "models/player/donald_trump.mdl",
  419. description = [[The President of the city creates laws to serve the greater good
  420. of the people.
  421. If you are the mayor you may create and accept warrants.
  422. Type /wanted <name> to warrant a player
  423. Type /jailpos to set the Jail Position
  424. Type /lockdown initiate a lockdown of the city.
  425. Everyone must be inside during a lockdown.
  426. The cops patrol the area
  427. /unlockdown to end a lockdown]],
  428. weapons = {"surrender", "garde_a_vousv1.2"},
  429. command = "mayor",
  430. max = 1,
  431. salary = GAMEMODE.Config.normalsalary * 1.89,
  432. admin = 0,
  433. vote = true,
  434. hasLicense = false,
  435. category = "Government",
  436. mayor = true,
  437. PlayerDeath = function(ply, weapon, killer)
  438. ply:teamBan()
  439. ply:changeTeam(GAMEMODE.DefaultTeam, true)
  440. if killer:IsPlayer() then
  441. DarkRP.notifyAll(0, 4, "The President has been killed and is therefore demoted.")
  442. else
  443. DarkRP.notifyAll(0, 4, "The President has died and is therefore demoted.")
  444. end,
  445. end,
  446. })
  447.  
  448. TEAM_CADET = DarkRP.createJob("Police Cadet", {
  449. color = Color(0, 51, 255, 255),
  450. model = {"models/player/clannypolice/male_04.mdl" },
  451. description = [[Go to the PD and wait to be trained.]],
  452. weapons = {"surrender", "garde_a_vousv1.2"},
  453. command = "cadet",
  454. max = 0,
  455. salary = 75,
  456. admin = 0,
  457. vote = false,
  458. hasLicense = true,
  459. category = "Government",
  460. })
  461.  
  462. TEAM_OFFICER = DarkRP.createJob("Police Officer", {
  463. color = Color(0, 51, 255, 255),
  464. model = {"models/player/clannypolice/male_09.mdl"},
  465. description = [[You just got of training and are learning the ropes. Be careful and listen to your higher ups.]],
  466. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  467. command = "officer",
  468. max = 10,
  469. salary = 100,
  470. admin = 0,
  471. vote = false,
  472. hasLicense = true,
  473. category = "Government",
  474. PlayerSpawn = function(ply)
  475. ply:SetArmor(25)
  476. end,
  477. })
  478.  
  479. TEAM_SOFFICER = DarkRP.createJob("Police Senior Officer", {
  480. color = Color(0, 51, 255, 255),
  481. model = {"models/player/clannypolice/male_07.mdl"},
  482. description = [[You have been on the force for a while and should help new officers/recruits.]],
  483. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_ump45", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  484. command = "sofficer",
  485. max = 4,
  486. salary = 125,
  487. admin = 0,
  488. vote = false,
  489. hasLicense = true,
  490. category = "Government",
  491. PlayerSpawn = function(ply)
  492. ply:SetArmor(50)
  493. end,
  494. })
  495.  
  496. TEAM_LCPL = DarkRP.createJob("Police Lance Corporal", {
  497. color = Color(0, 26, 255, 255),
  498. model = {"models/player/clannypolice/male_08.mdl"},
  499. description = [[You are a Lance Corporal in the Police Force.]],
  500. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_ump45", "weapon_policeshield"},
  501. command = "lcpl",
  502. max = 2,
  503. salary = 250,
  504. admin = 0,
  505. vote = false,
  506. hasLicense = true,
  507. candemote = false,
  508. category = "Government",
  509. PlayerSpawn = function(ply)
  510. ply:SetMaxHealth(100)
  511. ply:SetHealth(100)
  512. end,
  513. })
  514.  
  515. TEAM_CPL = DarkRP.createJob("Police Corporal", {
  516. color = Color(0, 26, 255, 255),
  517. model = {"models/gta5/player/citycoppm.mdl"},
  518. description = [[You are a Corporal in the Police Force.]],
  519. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_ump45", "weapon_policeshield"},
  520. command = "cpl",
  521. max = 2,
  522. salary = 250,
  523. admin = 0,
  524. vote = false,
  525. hasLicense = true,
  526. candemote = false,
  527. category = "Government",
  528. PlayerSpawn = function(ply)
  529. ply:SetMaxHealth(100)
  530. ply:SetHealth(100)
  531. end,
  532. })
  533.  
  534. TEAM_SERGEANT = DarkRP.createJob("Police Sergeant", {
  535. color = Color(0, 51, 255, 255),
  536. model = {"models/gta5/player/armoredcitycoppm.mdl"},
  537. description = [[You are a sergeant.]],
  538. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_ump45", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  539. command = "sergeant",
  540. max = 4,
  541. salary = 150,
  542. admin = 0,
  543. vote = false,
  544. hasLicense = true,
  545. category = "Government",
  546. PlayerSpawn = function(ply)
  547. ply:SetArmor(75)
  548. end,
  549. })
  550.  
  551. TEAM_MSERGEANT = DarkRP.createJob("Police Master Sergeant", {
  552. color = Color(0, 51, 255, 255),
  553. model = {"models/humans/nypd1940/male_01.mdl"},
  554. description = [[Police Master Sergeant.]],
  555. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_ump45", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  556. command = "msergeant",
  557. max = 3,
  558. salary = 175,
  559. admin = 0,
  560. vote = false,
  561. hasLicense = true,
  562. category = "Government",
  563. PlayerSpawn = function(ply)
  564. ply:SetArmor(100)
  565. end,
  566. })
  567.  
  568. TEAM_SGTM = DarkRP.createJob("Police Sergeant Major", {
  569. color = Color(0, 26, 255, 255),
  570. model = {"models/humans/nypd1940/male_02.mdl"},
  571. description = [[You are a Sergeant Major in the Police Force.]],
  572. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_m4a1", "weapon_policeshield"},
  573. command = "sgm",
  574. max = 2,
  575. salary = 400,
  576. admin = 0,
  577. vote = false,
  578. hasLicense = true,
  579. candemote = false,
  580. category = "Government",
  581. PlayerSpawn = function(ply)
  582. ply:SetMaxHealth(100)
  583. ply:SetHealth(100)
  584. end,
  585. })
  586.  
  587. TEAM_LIEUTENANT = DarkRP.createJob("Police Lieutenant", {
  588. color = Color(0, 51, 255, 255),
  589. model = {"models/humans/nypd1940/male_03.mdl"},
  590. description = [[Police Lieutenant.]],
  591. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  592. command = "lieutenant",
  593. max = 2,
  594. salary = 200,
  595. admin = 0,
  596. category = "Government",
  597. vote = false,
  598. PlayerSpawn = function(ply)
  599. hasLicense = true,
  600. ply:SetArmor(125)
  601. end,
  602. })
  603.  
  604. TEAM_HPU = DarkRP.createJob("Heavy Police Unit [VIP+]", {
  605. color = Color(0, 56, 255, 255),
  606. model = {"models/juggernaut_player.mdl"},
  607. description = [[You are apart of the Heavy Police Unit, this branch is tasked with assisting the SWAT team, and the Police Department with heavy duty tasks.]],
  608. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_m4a4", "tfa_csgo_scar20"},
  609. command = "hpu",
  610. max = 4,
  611. salary = 250,
  612. admin = 0,
  613. vote = false,
  614. hasLicense = true,
  615. candemote = false,
  616. category = "Government",
  617. PlayerSpawn = function(ply)
  618. ply:SetMaxHealth(100)
  619. ply:SetHealth(100)
  620. ply:SetArmor(300)
  621. end,
  622. customCheck = function(ply) return CLIENT or
  623. table.HasValue({"superadmin", "admin", "trialmoderator", "moderator", "owner", "staffmanager", "vip+"}, ply:GetNWString("usergroup"))
  624. end,
  625. CustomCheckFailMsg = "This Job Is VIP+ only!",
  626. })
  627.  
  628. TEAM_CAPTAIN = DarkRP.createJob("Police Captain", {
  629. color = Color(0, 51, 255, 255),
  630. model = {"models/humans/nypd1940/male_04.mdl"},
  631. description = [[Police Captain.]],
  632. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  633. command = "captain",
  634. max = 1,
  635. salary = 175,
  636. admin = 0,
  637. vote = false,
  638. category = "Government",
  639. PlayerSpawn = function(ply)
  640. hasLicense = true,
  641. ply:SetArmor(175)
  642. end,
  643. })
  644.  
  645. TEAM_SUPERINTENDENT = DarkRP.createJob("Police Superintendent", {
  646. color = Color(0, 51, 255, 255),
  647. model = {"models/humans/nypd1940/male_05.mdl"},
  648. description = [[Police Superintendent.]],
  649. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield"},
  650. command = "superintendent",
  651. max = 1,
  652. salary = 150,
  653. admin = 0,
  654. vote = false,
  655. category = "Government",
  656. PlayerSpawn = function(ply)
  657. hasLicense = true,
  658. ply:SetArmor(150)
  659. end,
  660. })
  661.  
  662. TEAM_POLICEMAJ = DarkRP.createJob("Police Major", {
  663. color = Color(22, 0, 255, 255),
  664. model = {"models/humans/nypd1940/male_05.mdl"},
  665. description = [[Police Major]],
  666. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  667. command = "policemaj",
  668. max = 1,
  669. salary = 250,
  670. admin = 0,
  671. vote = false,
  672. hasLicense = true,
  673. candemote = false,
  674. category = "Government"
  675. })
  676.  
  677. TEAM_POLICELTC = DarkRP.createJob("Police Lieutenant Colonel", {
  678. color = Color(22, 0, 255, 255),
  679. model = {"models/humans/nypd1940/male_06.mdl"},
  680. description = [[Police lieutenant Colonel]],
  681. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  682. command = "policeltc",
  683. max = 1,
  684. salary = 250,
  685. admin = 0,
  686. vote = false,
  687. hasLicense = true,
  688. candemote = false,
  689. category = "Government"
  690. })
  691.  
  692. TEAM_POLICECOL = DarkRP.createJob("Police Colonel", {
  693. color = Color(22, 0, 255, 255),
  694. model = {"models/humans/nypd1940/male_05.mdl"},
  695. description = [[Police Colonel]],
  696. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  697. command = "policecol",
  698. max = 1,
  699. salary = 250,
  700. admin = 0,
  701. vote = false,
  702. hasLicense = true,
  703. candemote = false,
  704. category = "Government"
  705. })
  706.  
  707. TEAM_CHIEF = DarkRP.createJob("Police Chief", {
  708. color = Color(0, 51, 255, 255),
  709. model = {"models/humans/nypd1940/male_08.mdl"},
  710. description = [[Police Chief.]],
  711. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  712. command = "chief",
  713. max = 1,
  714. salary = 200,
  715. admin = 0,
  716. vote = false,
  717. category = "Government",
  718. PlayerSpawn = function(ply)
  719. hasLicense = true,
  720. ply:SetArmor(200)
  721. end,
  722. })
  723.  
  724. TEAM_DCOMMISSIONER = DarkRP.createJob("Police Deputy Commissioner", {
  725. color = Color(0, 51, 255, 255),
  726. model = {"models/portal2/patrol_02.mdl"},
  727. description = [[Police Deputy Commissioner.]],
  728. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_sg556", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  729. command = "dcommissioner",
  730. max = 1,
  731. salary = 225,
  732. admin = 0,
  733. vote = false,
  734. category = "Government",
  735. PlayerSpawn = function(ply)
  736. hasLicense = true,
  737. ply:SetArmor(200)
  738. end,
  739. })
  740.  
  741. TEAM_COMMISSIONER = DarkRP.createJob("Police Commissioner", {
  742. color = Color(0, 51, 255, 255),
  743. model = {"models/portal2/patrol_09.mdl"},
  744. description = [[Police Commissioner.]],
  745. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_xm1014", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield"},
  746. command = "commissioner",
  747. max = 1,
  748. salary = 250,
  749. admin = 0,
  750. vote = false,
  751. category = "Government",
  752. PlayerSpawn = function(ply)
  753. hasLicense = true,
  754. ply:SetArmor(200)
  755. end,
  756. })
  757.  
  758. TEAM_BGUARD = DarkRP.createJob("Bank Guard", {
  759. color = Color(0, 51, 255, 255),
  760. model = {
  761. "models/ecpd/male_01.mdl",
  762. "models/ecpd/male_02.mdl",
  763. "models/ecpd/male_04.mdl",
  764. "models/ecpd/male_05.mdl",
  765. "models/ecpd/male_06.mdl",
  766. "models/ecpd/male_07.mdl",
  767. "models/ecpd/male_08.mdl",
  768. "models/ecpd/male_09.mdl" },
  769. description = [[You stay and guard the bank with your life.]],
  770. weapons = {"surrender", "weapon_r_handcuffs", "tfa_csgo_usp", "stungun", "weapon_policeshield"},
  771. command = "bankguard",
  772. max = 4,
  773. salary = 75,
  774. admin = 0,
  775. vote = false,
  776. hasLicense = true,
  777. category = "Government",
  778. })
  779.  
  780. TEAM_PARAMEDIC = DarkRP.createJob("Paramedic", {
  781. color = Color(0, 157, 255),
  782. model = {"models/redninja/pmedic01.mdl"},
  783. description = [[You are the paramedic for the city of rockford]],
  784. weapons = {"med_kit", "surrender"},
  785. command = "Paramedic",
  786. max = 4,
  787. salary = 75,
  788. admin = 0,
  789. vote = false,
  790. hasLicense = false,
  791. category = "Government",
  792. })
  793.  
  794. ---------STATETROOPERS--------------
  795. TEAM_STATET = DarkRP.createJob("State Trooper", {
  796. color = Color(143, 153, 14, 255),
  797. model = {"models/gta5/player/deputypm.mdl"},
  798. description = [[You are apart of the State Troopers]],
  799. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  800. command = "statet",
  801. max = 0,
  802. salary = 249,
  803. admin = 0,
  804. vote = false,
  805. hasLicense = true,
  806. candemote = false,
  807. category = "State Troopers",
  808. })
  809.  
  810. TEAM_STATETFC = DarkRP.createJob("State Trooper First Class", {
  811. color = Color(143, 153, 14, 255),
  812. model = {"models/gta5/player/deputypm.mdl"},
  813. description = [[You are apart of the State Troopers]],
  814. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  815. command = "statetfc",
  816. max = 0,
  817. salary = 250,
  818. admin = 0,
  819. vote = false,
  820. hasLicense = true,
  821. candemote = false,
  822. category = "State Troopers",
  823. })
  824.  
  825. TEAM_STATETS = DarkRP.createJob("Senior State Trooper", {
  826. color = Color(143, 153, 14, 255),
  827. model = {"models/gta5/player/deputypm.mdl"},
  828. description = [[You are apart of the State Troopers]],
  829. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  830. command = "sstatet",
  831. max = 0,
  832. salary = 250,
  833. admin = 0,
  834. vote = false,
  835. hasLicense = true,
  836. candemote = false,
  837. category = "State Troopers",
  838. })
  839.  
  840. TEAM_MSTATET = DarkRP.createJob("Master State Trooper", {
  841. color = Color(143, 153, 14, 255),
  842. model = {"models/gta5/player/deputypm.mdl"},
  843. description = [[You are apart of the State Troopers]],
  844. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  845. command = "mstatet",
  846. max = 0,
  847. salary = 250,
  848. admin = 0,
  849. vote = false,
  850. hasLicense = true,
  851. candemote = false,
  852. category = "State Troopers",
  853. })
  854.  
  855. TEAM_CPLT = DarkRP.createJob("State Trooper Corporal", {
  856. color = Color(165, 204, 22, 255),
  857. model = {"models/gta5/player/deputypm.mdl"},
  858. description = [[You are a Corporal for the state troopers]],
  859. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  860. command = "cplt",
  861. max = 0,
  862. salary = 250,
  863. admin = 0,
  864. vote = false,
  865. hasLicense = true,
  866. candemote = false,
  867. category = "State Troopers",
  868. PlayerSpawn = function(ply)
  869. ply:SetMaxHealth(100)
  870. ply:SetHealth(100)
  871. end,
  872. })
  873.  
  874. TEAM_SGTT = DarkRP.createJob("State Trooper Sergeant", {
  875. color = Color(165, 204, 22, 255),
  876. model = {"models/gta5/player/deputypm.mdl"},
  877. description = [[You are a Sergeant for the state troopers]],
  878. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  879. command = "sgtt",
  880. max = 0,
  881. salary = 250,
  882. admin = 0,
  883. vote = false,
  884. hasLicense = true,
  885. candemote = false,
  886. category = "State Troopers",
  887. PlayerSpawn = function(ply)
  888. ply:SetMaxHealth(100)
  889. ply:SetHealth(100)
  890. end,
  891. })
  892.  
  893. TEAM_DETT = DarkRP.createJob("State Trooper Detective Sergeant", {
  894. color = Color(165, 204, 22, 255),
  895. model = {"models/gta5/player/deputypm.mdl"},
  896. description = [[You are a Detective Sergeant for the state troopers]],
  897. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  898. command = "dett",
  899. max = 1,
  900. salary = 250,
  901. admin = 0,
  902. vote = false,
  903. hasLicense = true,
  904. candemote = false,
  905. category = "State Troopers",
  906. PlayerSpawn = function(ply)
  907. ply:SetMaxHealth(100)
  908. ply:SetHealth(100)
  909. end,
  910. })
  911.  
  912. TEAM_FSGTT = DarkRP.createJob("State Trooper First Sergeant", {
  913. color = Color(165, 204, 22, 255),
  914. model = {"models/gta5/player/deputypm.mdl"},
  915. description = [[You are a First Sergeant for the state troopers]],
  916. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  917. command = "fsgtt",
  918. max = 3,
  919. salary = 250,
  920. admin = 0,
  921. vote = false,
  922. hasLicense = true,
  923. candemote = false,
  924. category = "State Troopers",
  925. PlayerSpawn = function(ply)
  926. ply:SetMaxHealth(100)
  927. ply:SetHealth(100)
  928. end,
  929. })
  930.  
  931. TEAM_LTT = DarkRP.createJob("State Trooper Lieutenant", {
  932. color = Color(165, 204, 22, 255),
  933. model = {"models/gta5/player/deputypm.mdl"},
  934. description = [[You are a Lieutenant for the state troopers]],
  935. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  936. command = "ltt",
  937. max = 1,
  938. salary = 250,
  939. admin = 0,
  940. vote = false,
  941. hasLicense = true,
  942. candemote = false,
  943. category = "State Troopers",
  944. PlayerSpawn = function(ply)
  945. ply:SetMaxHealth(100)
  946. ply:SetHealth(100)
  947. end,
  948. })
  949.  
  950. TEAM_CPTST = DarkRP.createJob("State Trooper Captain", {
  951. color = Color(165, 204, 22, 255),
  952. model = {"models/gta5/player/deputypm.mdl"},
  953. description = [[You are a Captain for the state troopers]],
  954. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  955. command = "cptst",
  956. max = 1,
  957. salary = 250,
  958. admin = 0,
  959. vote = false,
  960. hasLicense = true,
  961. candemote = false,
  962. category = "State Troopers",
  963. PlayerSpawn = function(ply)
  964. ply:SetMaxHealth(100)
  965. ply:SetHealth(100)
  966. end,
  967. })
  968.  
  969. TEAM_MAJST = DarkRP.createJob("State Trooper Major", {
  970. color = Color(165, 204, 22, 255),
  971. model = {"models/gta5/player/deputypm.mdl"},
  972. description = [[You are a Major for the state troopers]],
  973. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  974. command = "majst",
  975. max = 1,
  976. salary = 250,
  977. admin = 0,
  978. vote = false,
  979. hasLicense = true,
  980. candemote = false,
  981. category = "State Troopers",
  982. PlayerSpawn = function(ply)
  983. ply:SetMaxHealth(100)
  984. ply:SetHealth(100)
  985. end,
  986. })
  987.  
  988. TEAM_LTC = DarkRP.createJob("State Trooper Lieutenant Colonel", {
  989. color = Color(165, 204, 22, 255),
  990. model = {"models/gta5/player/deputypm.mdl"},
  991. description = [[You are a Lieutenant Colonel for the state troopers]],
  992. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  993. command = "ltc",
  994. max = 1,
  995. salary = 250,
  996. admin = 0,
  997. vote = false,
  998. hasLicense = true,
  999. candemote = false,
  1000. category = "State Troopers",
  1001. PlayerSpawn = function(ply)
  1002. ply:SetMaxHealth(100)
  1003. ply:SetHealth(100)
  1004. end,
  1005. })
  1006.  
  1007. TEAM_SUPERINTENDENTST = DarkRP.createJob("Superintendent Of The State Troopers", {
  1008. color = Color(143, 153, 14, 255),
  1009. model = {"models/gta5/player/deputypm.mdl"},
  1010. description = [[You are apart of the State Troopers]],
  1011. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.2", "weapon_policeshield", "tfa_csgo_nova"},
  1012. command = "superstatet",
  1013. max = 1,
  1014. salary = 250,
  1015. admin = 0,
  1016. vote = false,
  1017. hasLicense = true,
  1018. candemote = false,
  1019. category = "State Troopers",
  1020.  
  1021. end,
  1022. })
  1023.  
  1024. -------------SWAT----------
  1025. TEAM_SWATPC = DarkRP.createJob("SWAT Probationary Cadet", {
  1026. color = Color(0, 10, 255, 255),
  1027. model = {"models/codmw2/t_codm.mdl",
  1028. "models/codmw2/t_codmw2.mdl",
  1029. "models/codmw2/t_codmw2h.mdl"},
  1030. description = [[You are the Commander of the elite SWAT team]],
  1031. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1032. command = "swatpc",
  1033. max = 4,
  1034. salary = 250,
  1035. admin = 0,
  1036. vote = false,
  1037. hasLicense = true,
  1038. candemote = false,
  1039. category = "SWAT",
  1040. PlayerSpawn = function(ply)
  1041. ply:SetMaxHealth(100)
  1042. ply:SetHealth(100)
  1043. ply:SetArmor(150)
  1044. ply:SetWalkSpeed(150)
  1045. ply:SetRunSpeed(385)
  1046. end,
  1047. })
  1048.  
  1049. TEAM_SWATPVT = DarkRP.createJob("SWAT Private", {
  1050. color = Color(0, 10, 255, 255),
  1051. model = {"models/codmw2/t_codm.mdl",
  1052. "models/codmw2/t_codmw2.mdl",
  1053. "models/codmw2/t_codmw2h.mdl"},
  1054. description = [[You are the Commander of the elite SWAT team]],
  1055. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1056. command = "swatpvt",
  1057. max = 4,
  1058. salary = 250,
  1059. admin = 0,
  1060. vote = false,
  1061. hasLicense = true,
  1062. candemote = false,
  1063. category = "SWAT",
  1064. PlayerSpawn = function(ply)
  1065. ply:SetMaxHealth(100)
  1066. ply:SetHealth(100)
  1067. ply:SetArmor(150)
  1068. ply:SetWalkSpeed(150)
  1069. ply:SetRunSpeed(385)
  1070. end,
  1071. })
  1072.  
  1073. TEAM_SWATPFC = DarkRP.createJob("SWAT Private First Class", {
  1074. color = Color(0, 10, 255, 255),
  1075. model = {"models/codmw2/t_codm.mdl",
  1076. "models/codmw2/t_codmw2.mdl",
  1077. "models/codmw2/t_codmw2h.mdl"},
  1078. description = [[You are the Commander of the elite SWAT team]],
  1079. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1080. command = "swatpfc",
  1081. max = 4,
  1082. salary = 250,
  1083. admin = 0,
  1084. vote = false,
  1085. hasLicense = true,
  1086. candemote = false,
  1087. category = "SWAT",
  1088. PlayerSpawn = function(ply)
  1089. ply:SetMaxHealth(100)
  1090. ply:SetHealth(100)
  1091. ply:SetArmor(150)
  1092. ply:SetWalkSpeed(150)
  1093. ply:SetRunSpeed(385)
  1094. end,
  1095. })
  1096.  
  1097. TEAM_SWATLCPL = DarkRP.createJob("SWAT Lance Corporal", {
  1098. color = Color(0, 10, 255, 255),
  1099. model = {"models/codmw2/t_codm.mdl",
  1100. "models/codmw2/t_codmw2.mdl",
  1101. "models/codmw2/t_codmw2h.mdl"},
  1102. description = [[You are the Commander of the elite SWAT team]],
  1103. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1104. command = "swatlcpl",
  1105. max = 4,
  1106. salary = 250,
  1107. admin = 0,
  1108. vote = false,
  1109. hasLicense = true,
  1110. candemote = false,
  1111. category = "SWAT",
  1112. PlayerSpawn = function(ply)
  1113. ply:SetMaxHealth(100)
  1114. ply:SetHealth(100)
  1115. ply:SetArmor(150)
  1116. ply:SetWalkSpeed(150)
  1117. ply:SetRunSpeed(385)
  1118. end,
  1119. })
  1120.  
  1121. TEAM_SWATCPL = DarkRP.createJob("SWAT Corporal", {
  1122. color = Color(0, 10, 255, 255),
  1123. model = {"models/codmw2/t_codm.mdl",
  1124. "models/codmw2/t_codmw2.mdl",
  1125. "models/codmw2/t_codmw2h.mdl"},
  1126. description = [[You are the Commander of the elite SWAT team]],
  1127. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1128. command = "swatcpl",
  1129. max = 4,
  1130. salary = 250,
  1131. admin = 0,
  1132. vote = false,
  1133. hasLicense = true,
  1134. candemote = false,
  1135. category = "SWAT",
  1136. PlayerSpawn = function(ply)
  1137. ply:SetMaxHealth(100)
  1138. ply:SetHealth(100)
  1139. ply:SetArmor(150)
  1140. ply:SetWalkSpeed(150)
  1141. ply:SetRunSpeed(385)
  1142. end,
  1143. })
  1144.  
  1145. TEAM_SWATSGT = DarkRP.createJob("SWAT Sergeant", {
  1146. color = Color(0, 10, 255, 255),
  1147. model = {"models/codmw2/t_codm.mdl",
  1148. "models/codmw2/t_codmw2.mdl",
  1149. "models/codmw2/t_codmw2h.mdl"},
  1150. description = [[You are the Commander of the elite SWAT team]],
  1151. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1152. command = "swatsgt",
  1153. max = 4,
  1154. salary = 250,
  1155. admin = 0,
  1156. vote = false,
  1157. hasLicense = true,
  1158. candemote = false,
  1159. category = "SWAT",
  1160. PlayerSpawn = function(ply)
  1161. ply:SetMaxHealth(100)
  1162. ply:SetHealth(100)
  1163. ply:SetArmor(150)
  1164. ply:SetWalkSpeed(150)
  1165. ply:SetRunSpeed(385)
  1166. end,
  1167. })
  1168.  
  1169. TEAM_SWATSSGT = DarkRP.createJob("SWAT Staff Sergeant", {
  1170. color = Color(0, 10, 255, 255),
  1171. model = {"models/codmw2/t_codm.mdl",
  1172. "models/codmw2/t_codmw2.mdl",
  1173. "models/codmw2/t_codmw2h.mdl"},
  1174. description = [[You are the Commander of the elite SWAT team]],
  1175. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1176. command = "swatssgt",
  1177. max = 4,
  1178. salary = 250,
  1179. admin = 0,
  1180. vote = false,
  1181. hasLicense = true,
  1182. candemote = false,
  1183. category = "SWAT",
  1184. PlayerSpawn = function(ply)
  1185. ply:SetMaxHealth(100)
  1186. ply:SetHealth(100)
  1187. ply:SetArmor(150)
  1188. ply:SetWalkSpeed(150)
  1189. ply:SetRunSpeed(385)
  1190. end,
  1191. })
  1192.  
  1193. TEAM_SWATMSGT = DarkRP.createJob("SWAT Master Sergeant", {
  1194. color = Color(0, 10, 255, 255),
  1195. model = {"models/codmw2/t_codm.mdl",
  1196. "models/codmw2/t_codmw2.mdl",
  1197. "models/codmw2/t_codmw2h.mdl"},
  1198. description = [[You are the Commander of the elite SWAT team]],
  1199. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1200. command = "swatmsgt",
  1201. max = 4,
  1202. salary = 250,
  1203. admin = 0,
  1204. vote = false,
  1205. hasLicense = true,
  1206. candemote = false,
  1207. category = "SWAT",
  1208. PlayerSpawn = function(ply)
  1209. ply:SetMaxHealth(100)
  1210. ply:SetHealth(100)
  1211. ply:SetArmor(150)
  1212. ply:SetWalkSpeed(150)
  1213. ply:SetRunSpeed(385)
  1214. end,
  1215. })
  1216.  
  1217.  
  1218. TEAM_SWATSGTM = DarkRP.createJob("SWAT Sergeant Major", {
  1219. color = Color(0, 10, 255, 255),
  1220. model = {"models/codmw2/t_codm.mdl",
  1221. "models/codmw2/t_codmw2.mdl",
  1222. "models/codmw2/t_codmw2h.mdl"},
  1223. description = [[You are the Commander of the elite SWAT team]],
  1224. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1225. command = "swatsgtm",
  1226. max = 4,
  1227. salary = 250,
  1228. admin = 0,
  1229. vote = false,
  1230. hasLicense = true,
  1231. candemote = false,
  1232. category = "SWAT",
  1233. PlayerSpawn = function(ply)
  1234. ply:SetMaxHealth(100)
  1235. ply:SetHealth(100)
  1236. ply:SetArmor(150)
  1237. ply:SetWalkSpeed(150)
  1238. ply:SetRunSpeed(385)
  1239. end,
  1240. })
  1241.  
  1242. TEAM_SWATLT = DarkRP.createJob("SWAT Lieutenant", {
  1243. color = Color(0, 10, 255, 255),
  1244. model = {"models/codmw2/t_codm.mdl",
  1245. "models/codmw2/t_codmw2.mdl",
  1246. "models/codmw2/t_codmw2h.mdl"},
  1247. description = [[You are the Commander of the elite SWAT team]],
  1248. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1249. command = "swatlt",
  1250. max = 4,
  1251. salary = 250,
  1252. admin = 0,
  1253. vote = false,
  1254. hasLicense = true,
  1255. candemote = false,
  1256. category = "SWAT",
  1257. PlayerSpawn = function(ply)
  1258. ply:SetMaxHealth(100)
  1259. ply:SetHealth(100)
  1260. ply:SetArmor(200)
  1261. ply:SetWalkSpeed(150)
  1262. ply:SetRunSpeed(385)
  1263. end,
  1264. })
  1265.  
  1266. TEAM_SWATCPT = DarkRP.createJob("SWAT Captain", {
  1267. color = Color(0, 10, 255, 255),
  1268. model = {"models/codmw2/t_codm.mdl",
  1269. "models/codmw2/t_codmw2.mdl",
  1270. "models/codmw2/t_codmw2h.mdl"},
  1271. description = [[You are the Commander of the elite SWAT team]],
  1272. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1273. command = "swatcpt",
  1274. max = 4,
  1275. salary = 250,
  1276. admin = 0,
  1277. vote = false,
  1278. hasLicense = true,
  1279. candemote = false,
  1280. category = "SWAT",
  1281. PlayerSpawn = function(ply)
  1282. ply:SetMaxHealth(100)
  1283. ply:SetHealth(100)
  1284. ply:SetArmor(200)
  1285. ply:SetWalkSpeed(150)
  1286. ply:SetRunSpeed(385)
  1287. end,
  1288. })
  1289.  
  1290. TEAM_SWATMAJ = DarkRP.createJob("SWAT Major", {
  1291. color = Color(0, 10, 255, 255),
  1292. model = {"models/codmw2/t_codm.mdl",
  1293. "models/codmw2/t_codmw2.mdl",
  1294. "models/codmw2/t_codmw2h.mdl"},
  1295. description = [[You are the Commander of the elite SWAT team]],
  1296. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1297. command = "swatmaj",
  1298. max = 4,
  1299. salary = 250,
  1300. admin = 0,
  1301. vote = false,
  1302. hasLicense = true,
  1303. candemote = false,
  1304. category = "SWAT",
  1305. PlayerSpawn = function(ply)
  1306. ply:SetMaxHealth(100)
  1307. ply:SetHealth(100)
  1308. ply:SetArmor(200)
  1309. ply:SetWalkSpeed(150)
  1310. ply:SetRunSpeed(385)
  1311. end,
  1312. })
  1313.  
  1314. TEAM_SWATCOL = DarkRP.createJob("SWAT Colonel", {
  1315. color = Color(0, 10, 255, 255),
  1316. model = {"models/codmw2/t_codm.mdl",
  1317. "models/codmw2/t_codmw2.mdl",
  1318. "models/codmw2/t_codmw2h.mdl"},
  1319. description = [[You are the Commander of the elite SWAT team]],
  1320. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1321. command = "swatcol",
  1322. max = 4,
  1323. salary = 250,
  1324. admin = 0,
  1325. vote = false,
  1326. hasLicense = true,
  1327. candemote = false,
  1328. category = "SWAT",
  1329. PlayerSpawn = function(ply)
  1330. ply:SetMaxHealth(100)
  1331. ply:SetHealth(100)
  1332. ply:SetArmor(200)
  1333. ply:SetWalkSpeed(150)
  1334. ply:SetRunSpeed(385)
  1335. end,
  1336. })
  1337.  
  1338. TEAM_SWATADCMDR = DarkRP.createJob("SWAT Assisstant Deputy Commander", {
  1339. color = Color(0, 10, 255, 255),
  1340. model = {"models/codmw2/codmw2hexe.mdl"},
  1341. description = [[You are the Commander of the elite SWAT team]],
  1342. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1343. command = "swatadcdmr",
  1344. max = 1,
  1345. salary = 250,
  1346. admin = 0,
  1347. vote = false,
  1348. hasLicense = true,
  1349. candemote = false,
  1350. category = "SWAT",
  1351. PlayerSpawn = function(ply)
  1352. ply:SetMaxHealth(100)
  1353. ply:SetHealth(100)
  1354. ply:SetArmor(300)
  1355. ply:SetWalkSpeed(150)
  1356. ply:SetRunSpeed(385)
  1357. end,
  1358. })
  1359.  
  1360. TEAM_SWATDCMDR = DarkRP.createJob("SWAT Deputy Commander", {
  1361. color = Color(0, 10, 255, 255),
  1362. model = {"models/mw2guy/bz/bzsoap.mdl"},
  1363. description = [[You are the Commander of the elite SWAT team]],
  1364. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "realistic_hook", "tfa_nmrih_fubar"},
  1365. command = "swatdcdmr",
  1366. max = 1,
  1367. salary = 250,
  1368. admin = 0,
  1369. vote = false,
  1370. hasLicense = true,
  1371. candemote = false,
  1372. category = "SWAT",
  1373. PlayerSpawn = function(ply)
  1374. ply:SetMaxHealth(100)
  1375. ply:SetHealth(100)
  1376. ply:SetArmor(300)
  1377. ply:SetWalkSpeed(150)
  1378. ply:SetRunSpeed(385)
  1379. end,
  1380. })
  1381.  
  1382. TEAM_SWATCMDR = DarkRP.createJob("SWAT Commander", {
  1383. color = Color(0, 10, 255, 255),
  1384. model = {"models/codmw2/codmw2m.mdl"},
  1385. description = [[You are the Commander of the elite SWAT team]],
  1386. weapons = {"weapon_bf4_grach", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a4", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_csgo_xm1014", "weapon_bf4_qbz", "realistic_hook", "tfa_nmrih_sledge"},
  1387. command = "swatcdmr",
  1388. max = 1,
  1389. salary = 250,
  1390. admin = 0,
  1391. vote = false,
  1392. hasLicense = true,
  1393. candemote = false,
  1394. category = "SWAT",
  1395. PlayerSpawn = function(ply)
  1396. ply:SetMaxHealth(100)
  1397. ply:SetHealth(100)
  1398. ply:SetArmor(300)
  1399. ply:SetWalkSpeed(150)
  1400. ply:SetRunSpeed(385)
  1401. end,
  1402. })
  1403.  
  1404. ---------FBI-----------
  1405. TEAM_FBIPA = DarkRP.createJob("FBI Probationary Agent", {
  1406. color = Color(105, 110, 117, 255),
  1407. model = {"models/player/fbi/fbi_01.mdl",
  1408. "models/player/fbi/fbi_02.mdl",
  1409. "models/player/fbi/fbi_03.mdl",
  1410. "models/player/fbi/fbi_04.mdl"},
  1411. description = [[You are a FBI Probationary Agent.]],
  1412. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1", "tfa_csgo_mp5"},
  1413. command = "fbipa",
  1414. max = 0,
  1415. salary = 100,
  1416. admin = 0,
  1417. vote = false,
  1418. category = "FBI",
  1419. PlayerSpawn = function(ply)
  1420. hasLicense = true,
  1421. ply:SetArmor(50)
  1422. end,
  1423. })
  1424.  
  1425. TEAM_FBISA = DarkRP.createJob("FBI Special Agent", {
  1426. color = Color(105, 110, 117, 255),
  1427. model = {"models/player/fbi/fbi_01.mdl",
  1428. "models/player/fbi/fbi_02.mdl",
  1429. "models/player/fbi/fbi_03.mdl",
  1430. "models/player/fbi/fbi_04.mdl"},
  1431. description = [[You are a FBI Special Agent.]],
  1432. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1", "tfa_csgo_mp5"},
  1433. command = "fbisa",
  1434. max = 0,
  1435. salary = 100,
  1436. admin = 0,
  1437. vote = false,
  1438. category = "FBI",
  1439. PlayerSpawn = function(ply)
  1440. hasLicense = true,
  1441. ply:SetArmor(50)
  1442. end,
  1443. })
  1444. TEAM_FBISENSA = DarkRP.createJob("FBI Senior Special Agent", {
  1445. color = Color(143, 136, 136, 255),
  1446. model = {"models/player/fbi/fbi_03.mdl"},
  1447. description = [[FBI Senior Special Agent]],
  1448. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1449. command = "seniorsa",
  1450. max = 4,
  1451. salary = 500,
  1452. admin = 0,
  1453. vote = false,
  1454. hasLicense = true,
  1455. candemote = false,
  1456. category = "FBI",
  1457. PlayerSpawn = function(ply)
  1458. ply:SetMaxHealth(100)
  1459. ply:SetHealth(100)
  1460. ply:SetArmor(100)
  1461. end,
  1462. })
  1463.  
  1464. TEAM_FBIASAIC = DarkRP.createJob("FBI Assistant Special Agent In-Charge", {
  1465. color = Color(143, 136, 136, 255),
  1466. model = {"models/player/fbi/fbi_03.mdl"},
  1467. description = [[FBI ASAIC]],
  1468. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1469. command = "asaic",
  1470. max = 2,
  1471. salary = 500,
  1472. admin = 0,
  1473. vote = false,
  1474. hasLicense = true,
  1475. candemote = false,
  1476. category = "FBI",
  1477. PlayerSpawn = function(ply)
  1478. ply:SetMaxHealth(100)
  1479. ply:SetHealth(100)
  1480. ply:SetArmor(100)
  1481. end,
  1482. })
  1483.  
  1484. TEAM_FBISAIC = DarkRP.createJob("FBI Special Agent In-Charge", {
  1485. color = Color(143, 136, 136, 255),
  1486. model = {"models/player/fbi/fbi_03.mdl"},
  1487. description = [[FBI SAIC]],
  1488. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1489. command = "saic",
  1490. max = 1,
  1491. salary = 500,
  1492. admin = 0,
  1493. vote = false,
  1494. hasLicense = true,
  1495. candemote = false,
  1496. category = "FBI",
  1497. PlayerSpawn = function(ply)
  1498. ply:SetMaxHealth(100)
  1499. ply:SetHealth(100)
  1500. ply:SetArmor(100)
  1501. end,
  1502. })
  1503.  
  1504. TEAM_FBISSA = DarkRP.createJob("FBI Supervisory Special Agent", {
  1505. color = Color(105, 110, 117, 255),
  1506. model = {"models/player/fbi/fbi_01.mdl",
  1507. "models/player/fbi/fbi_02.mdl",
  1508. "models/player/fbi/fbi_03.mdl",
  1509. "models/player/fbi/fbi_04.mdl"},
  1510. description = [[You are a FBI Supervisory Special Agent.]],
  1511. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1512. command = "fbissa",
  1513. max = 0,
  1514. salary = 100,
  1515. admin = 0,
  1516. vote = false,
  1517. category = "FBI",
  1518. PlayerSpawn = function(ply)
  1519. hasLicense = true,
  1520. ply:SetArmor(50)
  1521. end,
  1522. })
  1523.  
  1524. TEAM_FBIDAD = DarkRP.createJob("FBI Deputy Assistant Director", {
  1525. color = Color(143, 136, 136, 255),
  1526. model = {"models/player/fbi/fbi_03.mdl"},
  1527. description = [[FBI DAD]],
  1528. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1529. command = "fbidad",
  1530. max = 1,
  1531. salary = 500,
  1532. admin = 0,
  1533. vote = false,
  1534. hasLicense = true,
  1535. candemote = false,
  1536. category = "FBI",
  1537. PlayerSpawn = function(ply)
  1538. ply:SetMaxHealth(100)
  1539. ply:SetHealth(100)
  1540. ply:SetArmor(100)
  1541. end,
  1542. })
  1543.  
  1544. TEAM_FBIAEAD = DarkRP.createJob("FBI Associate Executive Assistant Director", {
  1545. color = Color(143, 136, 136, 255),
  1546. model = {"models/player/fbi/fbi_03.mdl"},
  1547. description = [[FBI AEAD]],
  1548. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1549. command = "fbiaead",
  1550. max = 1,
  1551. salary = 500,
  1552. admin = 0,
  1553. vote = false,
  1554. hasLicense = true,
  1555. candemote = false,
  1556. category = "FBI",
  1557. PlayerSpawn = function(ply)
  1558. ply:SetMaxHealth(100)
  1559. ply:SetHealth(100)
  1560. ply:SetArmor(100)
  1561. end,
  1562. })
  1563.  
  1564. TEAM_FBIEAD = DarkRP.createJob("FBI Executive Assistant Director", {
  1565. color = Color(143, 136, 136, 255),
  1566. model = {"models/player/fbi/fbi_03.mdl"},
  1567. description = [[FBI EAD]],
  1568. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1569. command = "fbiead",
  1570. max = 1,
  1571. salary = 500,
  1572. admin = 0,
  1573. vote = false,
  1574. hasLicense = true,
  1575. candemote = false,
  1576. category = "FBI",
  1577. PlayerSpawn = function(ply)
  1578. ply:SetMaxHealth(100)
  1579. ply:SetHealth(100)
  1580. ply:SetArmor(100)
  1581. end,
  1582. })
  1583.  
  1584. TEAM_FBIADD = DarkRP.createJob("FBI Associate Deputy Director", {
  1585. color = Color(143, 136, 136, 255),
  1586. model = {"models/player/fbi/fbi_03.mdl"},
  1587. description = [[FBI ADD]],
  1588. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1589. command = "fbiadd",
  1590. max = 1,
  1591. salary = 500,
  1592. admin = 0,
  1593. vote = false,
  1594. hasLicense = true,
  1595. candemote = false,
  1596. category = "FBI",
  1597. PlayerSpawn = function(ply)
  1598. ply:SetMaxHealth(100)
  1599. ply:SetHealth(100)
  1600. ply:SetArmor(100)
  1601. end,
  1602. })
  1603.  
  1604. TEAM_FBIDCOS = DarkRP.createJob("FBI Chief of Staff", {
  1605. color = Color(143, 136, 136, 255),
  1606. model = {"models/player/fbi/fbi_03.mdl"},
  1607. description = [[FBI DCOS]],
  1608. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1609. command = "dcos",
  1610. max = 1,
  1611. salary = 500,
  1612. admin = 0,
  1613. vote = false,
  1614. hasLicense = true,
  1615. candemote = false,
  1616. category = "FBI",
  1617. PlayerSpawn = function(ply)
  1618. ply:SetMaxHealth(100)
  1619. ply:SetHealth(100)
  1620. ply:SetArmor(100)
  1621. end,
  1622. })
  1623.  
  1624. TEAM_FBIAD = DarkRP.createJob("FBI Assistant Director", {
  1625. color = Color(105, 110, 117, 255),
  1626. model = {"models/player/fbi/fbi_01.mdl",
  1627. "models/player/fbi/fbi_02.mdl",
  1628. "models/player/fbi/fbi_03.mdl",
  1629. "models/player/fbi/fbi_04.mdl"},
  1630. description = [[You are the FBI Assistant Director]],
  1631. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1632. command = "fbiad",
  1633. max = 1,
  1634. salary = 100,
  1635. admin = 0,
  1636. vote = false,
  1637. category = "FBI",
  1638. PlayerSpawn = function(ply)
  1639. hasLicense = true,
  1640. ply:SetArmor(50)
  1641. end,
  1642. })
  1643.  
  1644. TEAM_FBID = DarkRP.createJob("FBI Director", {
  1645. color = Color(105, 110, 117, 255),
  1646. model = {"models/player/fbi/fbi_01.mdl",
  1647. "models/player/fbi/fbi_02.mdl",
  1648. "models/player/fbi/fbi_03.mdl",
  1649. "models/player/fbi/fbi_04.mdl"},
  1650. description = [[You are the FBI Director]],
  1651. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_mp5", "wep_jack_job_drpstungun", "stungun", "weapon_r_handcuffs", "surrender", "pass_fbi", "garde_a_vousv1.1"},
  1652. command = "fbid",
  1653. max = 1,
  1654. salary = 175,
  1655. admin = 0,
  1656. vote = false,
  1657. category = "FBI",
  1658. PlayerSpawn = function(ply)
  1659. hasLicense = true,
  1660. ply:SetArmor(50)
  1661. end,
  1662. })
  1663.  
  1664. TEAM_FBIA = DarkRP.createJob("FBI Assault Team Private", {
  1665. color = Color(36, 0, 255, 255),
  1666. model = {"models/csgofbi1pm.mdl"},
  1667. description = [[You are apart of the Elite Swat Unit of the FBI! You do not act as the first responders to a raid, or any high-profile situations! You will be called on by the Director or your commander to come assist the Police.]],
  1668. weapons = {"tfa_csgo_mp5", "tfa_csgo_glock18", "weapon_r_handcuffs", "stungun", "keys", "tfa_csgo_smoke"},
  1669. command = "fbiap",
  1670. max = 7,
  1671. salary = 300,
  1672. admin = 0,
  1673. vote = false,
  1674. hasLicense = true,
  1675. candemote = true,
  1676. category = "FBI",
  1677. PlayerSpawn = function(ply)
  1678. ply:SetMaxHealth(100)
  1679. ply:SetHealth(100)
  1680. ply:SetArmor(250)
  1681. end,
  1682. })
  1683.  
  1684. TEAM_FBIAC = DarkRP.createJob("FBI Assault Team Corporal", {
  1685. color = Color(20, 0, 255, 255),
  1686. model = {"models/csgofbi2pm.mdl"},
  1687. description = [[You are apart of the Elite Swat Unit of the FBI! You do not act as the first responders to a raid, or any high-profile situations! You will be called on by the Director or your commander to come assist the Police.]],
  1688. weapons = {"tfa_csgo_mp5", "tfa_csgo_glock18", "weapon_r_handcuffs", "stungun", "keys", "garde_a_vousv1.1", "tfa_csgo_smoke"},
  1689. command = "fbiac",
  1690. max = 2,
  1691. salary = 450,
  1692. admin = 0,
  1693. vote = false,
  1694. hasLicense = true,
  1695. candemote = true,
  1696. category = "FBI",
  1697. PlayerSpawn = function(ply)
  1698. ply:SetMaxHealth(100)
  1699. ply:SetHealth(100)
  1700. ply:SetArmor(252)
  1701. end,
  1702. })
  1703.  
  1704. TEAM_FBIAS = DarkRP.createJob("FBI Assault Team Sergeant", {
  1705. color = Color(5, 0, 255, 255),
  1706. model = {"models/csgofbi3pm.mdl"},
  1707. description = [[You are apart of the Elite Swat Unit of the FBI! You do not act as the first responders to a raid, or any high-profile situations! You will be called on by the Director or your commander to come assist the Police.]],
  1708. weapons = {"tfa_csgo_mp5", "tfa_csgo_glock18", "weapon_r_handcuffs", "stungun", "keys", "garde_a_vousv1.1", "tfa_csgo_smoke"},
  1709. command = "fbias",
  1710. max = 2,
  1711. salary = 600,
  1712. admin = 0,
  1713. vote = false,
  1714. hasLicense = true,
  1715. candemote = false,
  1716. category = "FBI",
  1717. PlayerSpawn = function(ply)
  1718. ply:SetMaxHealth(100)
  1719. ply:SetHealth(100)
  1720. ply:SetArmor(250)
  1721. end,
  1722. })
  1723.  
  1724. TEAM_FBIAAC = DarkRP.createJob("FBI Assault Team Commander", {
  1725. color = Color(0, 41, 255, 255),
  1726. model = {"models/csgofbi4pm.mdl"},
  1727. description = [[You are the the Commander-In-Charge of the FBI Assault Team!]],
  1728. weapons = {"tfa_csgo_mp5", "tfa_csgo_glock18", "weapon_r_handcuffs", "stungun", "keys", "garde_a_vousv1.1", "tfa_csgo_smoke"},
  1729. command = "fbiaco",
  1730. max = 1,
  1731. salary = 1000,
  1732. admin = 0,
  1733. vote = false,
  1734. hasLicense = true,
  1735. candemote = false,
  1736. category = "FBI",
  1737. PlayerSpawn = function(ply)
  1738. ply:SetMaxHealth(100)
  1739. ply:SetHealth(100)
  1740. ply:SetArmor(250)
  1741. end,
  1742. })
  1743.  
  1744. ---------DEA-----------
  1745. TEAM_DEAO = DarkRP.createJob("DEA Probationary Agent", {
  1746. color = Color(0, 124, 68, 255),
  1747. model = {"models/fbi_pack/fbi_01.mdl",
  1748. "models/fbi_pack/fbi_02.mdl",
  1749. "models/fbi_pack/fbi_03.mdl",
  1750. "models/fbi_pack/fbi_04.mdl",
  1751. "models/fbi_pack/fbi_05.mdl",
  1752. "models/fbi_pack/fbi_06.mdl",
  1753. "models/fbi_pack/fbi_07.mdl",
  1754. "models/fbi_pack/fbi_08.mdl",
  1755. "models/fbi_pack/fbi_09.mdl"},
  1756. description = [[You are a DEA Officer.]],
  1757. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "m9k_magpulpdr", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  1758. command = "deao",
  1759. max = 0,
  1760. salary = 100,
  1761. admin = 0,
  1762. vote = false,
  1763. category = "DEA",
  1764. PlayerSpawn = function(ply)
  1765. hasLicense = true,
  1766. ply:SetArmor(100)
  1767. end,
  1768. })
  1769.  
  1770. TEAM_DEASO = DarkRP.createJob("DEA Special Agent", {
  1771. color = Color(0, 124, 68, 255),
  1772. model = {"models/fbi_pack/fbi_01.mdl",
  1773. "models/fbi_pack/fbi_02.mdl",
  1774. "models/fbi_pack/fbi_03.mdl",
  1775. "models/fbi_pack/fbi_04.mdl",
  1776. "models/fbi_pack/fbi_05.mdl",
  1777. "models/fbi_pack/fbi_06.mdl",
  1778. "models/fbi_pack/fbi_07.mdl",
  1779. "models/fbi_pack/fbi_08.mdl",
  1780. "models/fbi_pack/fbi_09.mdl"},
  1781. description = [[You are a DEA Supervising Officer.]],
  1782. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_honeybadger", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  1783. command = "deaso",
  1784. max = 0,
  1785. salary = 100,
  1786. admin = 0,
  1787. vote = false,
  1788. category = "DEA",
  1789. PlayerSpawn = function(ply)
  1790. hasLicense = true,
  1791. ply:SetArmor(100)
  1792. end,
  1793. })
  1794.  
  1795. TEAM_DEAM = DarkRP.createJob("DEA Supervisory Agent", {
  1796. color = Color(0, 124, 68, 255),
  1797. model = {"models/fbi_pack/fbi_01.mdl",
  1798. "models/fbi_pack/fbi_02.mdl",
  1799. "models/fbi_pack/fbi_03.mdl",
  1800. "models/fbi_pack/fbi_04.mdl",
  1801. "models/fbi_pack/fbi_05.mdl",
  1802. "models/fbi_pack/fbi_06.mdl",
  1803. "models/fbi_pack/fbi_07.mdl",
  1804. "models/fbi_pack/fbi_08.mdl",
  1805. "models/fbi_pack/fbi_09.mdl"},
  1806. description = [[You are a DEA Medic.]],
  1807. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "med_kit", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  1808. command = "deam",
  1809. max = 0,
  1810. salary = 100,
  1811. admin = 0,
  1812. vote = false,
  1813. category = "DEA",
  1814. PlayerSpawn = function(ply)
  1815. hasLicense = true,
  1816. ply:SetArmor(100)
  1817. end,
  1818. })
  1819.  
  1820. TEAM_DEAD = DarkRP.createJob("DEA Director", {
  1821. color = Color(0, 124, 68, 255),
  1822. model = {"models/fbi_pack/fbi_01.mdl",
  1823. "models/fbi_pack/fbi_02.mdl",
  1824. "models/fbi_pack/fbi_03.mdl",
  1825. "models/fbi_pack/fbi_04.mdl",
  1826. "models/fbi_pack/fbi_05.mdl",
  1827. "models/fbi_pack/fbi_06.mdl",
  1828. "models/fbi_pack/fbi_07.mdl",
  1829. "models/fbi_pack/fbi_08.mdl",
  1830. "models/fbi_pack/fbi_09.mdl"},
  1831. description = [[You are the DEA Director.]],
  1832. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_honeybadger", "wep_jack_job_drpstungun", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  1833. command = "dead",
  1834. max = 1,
  1835. salary = 200,
  1836. admin = 0,
  1837. vote = false,
  1838. category = "DEA",
  1839. PlayerSpawn = function(ply)
  1840. hasLicense = true,
  1841. ply:SetArmor(150)
  1842. end,
  1843. })
  1844.  
  1845. TEAM_SOD = DarkRP.createJob("DEA Special Operations Division Operative", {
  1846. color = Color(0, 39, 242, 255),
  1847. model = {"models/player/archer.mdl"},
  1848. description = [[You are apart of the DEA SOD.]],
  1849. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1"},
  1850. command = "sod",
  1851. max = 4,
  1852. salary = 250,
  1853. admin = 0,
  1854. vote = false,
  1855. hasLicense = true,
  1856. candemote = false,
  1857. category = "DEA",
  1858. PlayerSpawn = function(ply)
  1859. ply:SetMaxHealth(100)
  1860. ply:SetHealth(100)
  1861. ply:SetArmor(250)
  1862. end,
  1863. })
  1864.  
  1865. TEAM_SODC = DarkRP.createJob("DEA Special Operations Division Commander", {
  1866. color = Color(0, 69, 245, 255),
  1867. model = {"models/player/kestrel.mdl"},
  1868. description = [[You are the Commander of the DEA SOD.]],
  1869. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "tfa_csgo_m4a1", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1"},
  1870. command = "sodc",
  1871. max = 1,
  1872. salary = 250,
  1873. admin = 0,
  1874. vote = false,
  1875. hasLicense = true,
  1876. candemote = false,
  1877. category = "DEA",
  1878. PlayerSpawn = function(ply)
  1879. ply:SetMaxHealth(100)
  1880. ply:SetHealth(100)
  1881. ply:SetArmor(250)
  1882. end,
  1883. })
  1884.  
  1885. ---------USMARSHALLS-------------
  1886. TEAM_USM = DarkRP.createJob("US Marshall Officer", {
  1887. color = Color(201, 187, 62, 255),
  1888. model = {"models/kerry/merriweather5.mdl"},
  1889. description = [[You are a US Marshall]],
  1890. weapons = {"tfa_m92beretta", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_flash"},
  1891. command = "usm",
  1892. max = 4,
  1893. salary = 250,
  1894. admin = 0,
  1895. vote = false,
  1896. hasLicense = true,
  1897. candemote = false,
  1898. category = "US Marshall Service"
  1899. })
  1900.  
  1901. TEAM_USMS = DarkRP.createJob("US Marshall Senior", {
  1902. color = Color(201, 187, 62, 255),
  1903. model = {"models/kerry/merriweather5.mdl"},
  1904. description = [[You are a US Marshall]],
  1905. weapons = {"tfa_honeybadger", "tfa_m92beretta", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_flash"},
  1906. command = "usms",
  1907. max = 4,
  1908. salary = 250,
  1909. admin = 0,
  1910. vote = false,
  1911. hasLicense = true,
  1912. candemote = false,
  1913. category = "US Marshall Service"
  1914. })
  1915.  
  1916. TEAM_USMC = DarkRP.createJob("US Marshall Corporal", {
  1917. color = Color(201, 187, 62, 255),
  1918. model = {"models/kerry/merriweather5.mdl"},
  1919. description = [[You are a US Marshall]],
  1920. weapons = {"tfa_honeybadger", "tfa_m92beretta", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_flash"},
  1921. command = "usmc",
  1922. max = 3,
  1923. salary = 250,
  1924. admin = 0,
  1925. vote = false,
  1926. hasLicense = true,
  1927. candemote = false,
  1928. category = "US Marshall Service"
  1929. })
  1930.  
  1931. TEAM_USMSGT = DarkRP.createJob("US Marshall Sergeant", {
  1932. color = Color(201, 187, 62, 255),
  1933. model = {"models/kerry/merriweather5.mdl"},
  1934. description = [[You are a US Marshall]],
  1935. weapons = {"tfa_honeybadger", "tfa_m92beretta", "middlefinger", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_flash"},
  1936. command = "usmsgt",
  1937. max = 1,
  1938. salary = 250,
  1939. admin = 0,
  1940. vote = false,
  1941. hasLicense = true,
  1942. candemote = false,
  1943. category = "US Marshall Service"
  1944. })
  1945.  
  1946. TEAM_USMCPT = DarkRP.createJob("US Marshall Captain", {
  1947. color = Color(201, 187, 62, 255),
  1948. model = {"models/kerry/merriweather5.mdl"},
  1949. description = [[You are a US Marshall]],
  1950. weapons = {"tfa_honeybadger", "tfa_m92beretta", "middlefinger", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "tfa_csgo_flash"},
  1951. command = "usmcpt",
  1952. max = 1,
  1953. salary = 250,
  1954. admin = 0,
  1955. vote = false,
  1956. hasLicense = true,
  1957. candemote = false,
  1958. category = "US Marshall Service"
  1959. })
  1960.  
  1961. ---------CJS-----------
  1962. TEAM_HRCU = DarkRP.createJob("Heavy Riot Control Unit", {
  1963. color = Color(144, 150, 56, 255),
  1964. model = {"models/csgost64pm.mdl"},
  1965. description = [[Heavy Riot Control Unit, we take care of all the heavy lifting for the PD]],
  1966. weapons = {"weapon_policeshield", "m9k_acr", "inventory", "weapon_stungun", "unarrest_stick", "tfa_csgo_glock18", "door_ram", "tfa_csgo_nova", "tfa_csgo_aug", "weapon_policeshield", "weapon_r_handcuffs", "tfa_csgo_smoke"},
  1967. command = "hrcu",
  1968. max = 4,
  1969. salary = 250,
  1970. admin = 0,
  1971. vote = false,
  1972. hasLicense = true,
  1973. candemote = false,
  1974. category = "Custom Jobs",
  1975. PlayerSpawn = function(ply)
  1976. ply:SetMaxHealth(100)
  1977. ply:SetHealth(100)
  1978. ply:SetArmor(100)
  1979. ply:SetWalkSpeed(150)
  1980. ply:SetRunSpeed(385)
  1981. end
  1982. })
  1983.  
  1984. TEAM_GODR = DarkRP.createJob("Godfather Of The Russian Mafia", {
  1985. color = Color(0, 0, 0, 255),
  1986. model = {"models/vito.mdl"},
  1987. description = [[(Mank's Custom job) You are the Godfather of the Russian Mafia]],
  1988. weapons = {"m9k_usas", "m9k_spas12", "m9k_m60", "pro_lockpick_update", "med_kit", "weapon_cuff_elastic", "weapon_vape_medicinal", "dab"},
  1989. command = "godr",
  1990. max = 1,
  1991. salary = 300,
  1992. admin = 0,
  1993. vote = false,
  1994. hasLicense = false,
  1995. candemote = false,
  1996. category = "Custom Jobs",
  1997. PlayerSpawn = function(ply)
  1998. ply:SetMaxHealth(100)
  1999. ply:SetHealth(100)
  2000. ply:SetArmor(100)
  2001. end,
  2002. })
  2003.  
  2004. TEAM_UBR = DarkRP.createJob("Underboss Of The Russian Mafia", {
  2005. color = Color(0, 0, 0, 255),
  2006. model = {"models/humans/mafia/male_09.mdl"},
  2007. description = [[(Mank's Custom job) You are the Underboss of the Russian Mafia]],
  2008. weapons = {"m9k_usas", "m9k_spas12", "m9k_m60", "pro_lockpick_update", "med_kit", "weapon_cuff_elastic", "weapon_vape_medicinal", "dab"},
  2009. command = "ubr",
  2010. max = 1,
  2011. salary = 300,
  2012. admin = 0,
  2013. vote = false,
  2014. hasLicense = false,
  2015. candemote = false,
  2016. category = "Custom Jobs",
  2017. PlayerSpawn = function(ply)
  2018. ply:SetMaxHealth(100)
  2019. ply:SetHealth(100)
  2020. ply:SetArmor(100)
  2021. end,
  2022. })
  2023.  
  2024. TEAM_RUS = DarkRP.createJob("Russian Mafia Soldier", {
  2025. color = Color(0, 0, 0, 255),
  2026. model = {"models/characters/gallaha.mdl"},
  2027. description = [[(Mank's Custom job) You are a Soldier of the Russian Mafia]],
  2028. weapons = {"m9k_usas", "m9k_spas12", "m9k_m60", "pro_lockpick_update", "med_kit", "weapon_cuff_elastic", "weapon_vape_medicinal", "dab"},
  2029. command = "soldr",
  2030. max = 13,
  2031. salary = 300,
  2032. admin = 0,
  2033. vote = false,
  2034. hasLicense = false,
  2035. candemote = false,
  2036. category = "Custom Jobs",
  2037. PlayerSpawn = function(ply)
  2038. ply:SetMaxHealth(100)
  2039. ply:SetHealth(100)
  2040. ply:SetArmor(100)
  2041. end,
  2042. })
  2043.  
  2044. TEAM_JUDGE = DarkRP.createJob("Judge", {
  2045. color = Color(34, 0, 255, 255),
  2046. model = {"models/player/donald_trump.mdl"},
  2047. description = [[You enforce justice throughout the city, punishing those who do not follow the laws. You can fine citizens, imprison citizens, or place citizens under house arrest.]],
  2048. weapons = {"gavel"},
  2049. command = "judge",
  2050. max = 1,
  2051. salary = 1500,
  2052. admin = 0,
  2053. vote = false,
  2054. hasLicense = true,
  2055. candemote = false,
  2056. category = "Government",
  2057. PlayerSpawn = function(ply)
  2058. ply:SetMaxHealth(99)
  2059. ply:SetHealth(99)
  2060. end
  2061. })
  2062.  
  2063. TEAM_BALIFF = DarkRP.createJob("Baliff", {
  2064. color = Color(34, 0, 255, 255),
  2065. model = {"models/kerry/merriweather5.mdl"},
  2066. description = [[You are responsible for making sure the courthouse and judge are secure and safe at all times.
  2067. You report directly to the judge doing whatever he or she asks. No people with weapons should be
  2068. allowed into the courthouse at any time, you are responsible forensuring this.]],
  2069. weapons = {"tfa_csgo_glock18", "door_ram", "tfa_csgo_m4a1", "surrender", "garde_a_vousv1.1"},
  2070. command = "baliff",
  2071. max = 1,
  2072. salary = 250,
  2073. admin = 0,
  2074. vote = false,
  2075. hasLicense = true,
  2076. candemote = false,
  2077. category = "Custom Jobs",
  2078. PlayerSpawn = function(ply)
  2079. ply:SetMaxHealth(100)
  2080. ply:SetHealth(100)
  2081. end,
  2082. })
  2083.  
  2084. TEAM_KMLG = DarkRP.createJob("King Of The MLG", {
  2085. color = Color(0, 0, 0, 255),
  2086. model = {"models/kerry/merriweather5.mdl"},
  2087. description = [[(Clorox's Custom Job) King Of The MLG's!]],
  2088. weapons = {"m9k_acr", "m9k_spas12", "m9k_psg1", "weapon_cuff_elastic", "weapon_vape_medicinal", "pro_lockpick_update"},
  2089. command = "king",
  2090. max = 1,
  2091. salary = 300,
  2092. admin = 0,
  2093. vote = false,
  2094. hasLicense = false,
  2095. candemote = false,
  2096. category = "Custom Jobs",
  2097. PlayerSpawn = function(ply)
  2098. ply:SetMaxHealth(100)
  2099. ply:SetHealth(100)
  2100. ply:SetArmor(600)
  2101. end,
  2102. })
  2103.  
  2104. Team_Wolf = DarkRP.createJob("Wolf", {
  2105. color = Color(255, 0, 0, 255),
  2106. model = {"models/player/pd2_wolf_p.mdl"},
  2107. description = [[(Jackson's Custom Job)]],
  2108. weapons = {"tfa_csgo_mp9", "tfa_csgo_ssg08", "tfa_csgo_m4a4"},
  2109. command = "wolf",
  2110. max = 2,
  2111. salary = 250,
  2112. admin = 0,
  2113. vote = false,
  2114. hasLicense = false,
  2115. candemote = false,
  2116. category = "Custom Jobs",
  2117. PlayerSpawn = function(ply)
  2118. ply:SetMaxHealth(100)
  2119. ply:SetHealth(100)
  2120. ply:SetArmor(300)
  2121. end,
  2122. })
  2123.  
  2124. TEAM_MERCS = DarkRP.createJob("Mercenary", {
  2125. color = Color(0, 0, 255, 255),
  2126. model = {"models/mw2guy/bz/bzghost.mdl"},
  2127. description = [[(Hawks Custom Job).]],
  2128. weapons = {"weapon_vape_helium", "parkourmod", "unarrest_stick", "weaponchecker", "door_ram", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_ak47", "tfa_csgo_flash", "dab", "tfa_csgo_tec9"},
  2129. command = "merceneary",
  2130. max = 4,
  2131. salary = 250,
  2132. admin = 0,
  2133. vote = false,
  2134. hasLicense = true,
  2135. candemote = false,
  2136. category = "Custom Jobs",
  2137. PlayerSpawn = function(ply)
  2138. ply:SetMaxHealth(100)
  2139. ply:SetHealth(100)
  2140. ply:SetArmor(100)
  2141. end,
  2142. })
  2143.  
  2144. Team_kingpin = DarkRP.createJob("Kingpin", {
  2145. color = Color(0, 255, 255, 255),
  2146. model = {"models/player/pd2_chains_p.mdl"},
  2147. description = [[(Ram's custom Class. Public Menace #1)]],
  2148. weapons = {"weapon_physgun","weapon_physcannon","keys","weaponchecker", "pocket","itemstore_pickup","gmod_tool","gmod_camera","tfa_csgo_usp", "tfa_csgo_xm1014", "tfa_csgo_m4a4","tfa_honeybadger", "weapon_cuff_elastic", "keypad_cracker", "pro_lockpick_update","weapon_medkit","realistic_hook",},
  2149. command = "kingpinnn",
  2150. max = 2,
  2151. salary = 500,
  2152. admin = 0,
  2153. vote = false,
  2154. hasLicense = false,
  2155. candemote = false,
  2156. category = "Custom Jobs",
  2157. PlayerSpawn = function(ply)
  2158. ply:SetMaxHealth(200)
  2159. ply:SetHealth(100)
  2160. ply:SetArmor(150)
  2161. end,
  2162. })
  2163.  
  2164. Team_HEFEE = DarkRP.createJob("Hostile Elimination Force 88", {
  2165. color = Color(116, 217, 255, 255),
  2166. model = {"models/player/archer.mdl"},
  2167. description = [[(Task Force 88 is an American special operations unit, of which little is publicly known. Toast's custom job)]],
  2168. weapons = {"weapon_physgun","weapon_physcannon","keys","weaponchecker", "pocket","itemstore_pickup","gmod_tool","gmod_camera","tfa_csgo_m4a4","tfa_csgo_fiveseven","tfa_csgo_nova","tfa_honeybadger","tfa_csgo_incen","tfa_csgo_smoke", "weapon_policeshield", "door_ram", "unarrest_stick","arrest_stick","garde_a_vousv1.1",},
  2169. command = "Ht88",
  2170. max = 4,
  2171. salary = 500,
  2172. admin = 0,
  2173. vote = false,
  2174. hasLicense = false,
  2175. candemote = false,
  2176. category = "Custom Jobs",
  2177. PlayerSpawn = function(ply)
  2178. ply:SetMaxHealth(100)
  2179. ply:SetHealth(100)
  2180. ply:SetArmor(150)
  2181. end,
  2182. })
  2183.  
  2184. Team_SAS = DarkRP.createJob("SAS", {
  2185. color = Color(0, 25, 252, 255),
  2186. model = {"models/player/ctsas2.mdl"},
  2187. description = [[(Special Air Service, Britains finest. Knightfall's custom job)]],
  2188. weapons = {"weapon_physgun","weapon_physcannon","keys","weaponchecker", "pocket","itemstore_pickup","gmod_tool","gmod_camera","tfa_sig_p229r","tfa_ump45","tfa_csgo_nova","tfa_honeybadger","tfa_csgo_incen","tfa_csgo_smoke", "weapon_policeshield", "door_ram", "unarrest_stick","arrest_stick","garde_a_vousv1.1","tfa_nmrih_sledge","realistic_hook","weapon_medkit",},
  2189. command = "sasa",
  2190. max = 4,
  2191. salary = 500,
  2192. admin = 0,
  2193. vote = false,
  2194. hasLicense = false,
  2195. candemote = false,
  2196. category = "Custom Jobs",
  2197. PlayerSpawn = function(ply)
  2198. ply:SetMaxHealth(100)
  2199. ply:SetHealth(100)
  2200. ply:SetArmor(150)
  2201. end,
  2202. })
  2203.  
  2204.  
  2205. TEAM_SOPS = DarkRP.createJob("S.O.P.S.", {
  2206. color = Color(0, 0, 255, 255),
  2207. model = {"models/player/kestrel.mdl"},
  2208. description = [[You are apart of the Heavy Police Unit, this branch is tasked with assisting the SWAT team, and the Police Department with heavy duty tasks.]],
  2209. weapons = {"tfa_csgo_nova", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_m4a4", "tfa_csgo_flash", "dab"},
  2210. command = "sopsofficer",
  2211. max = 1,
  2212. salary = 250,
  2213. admin = 0,
  2214. vote = false,
  2215. hasLicense = true,
  2216. candemote = false,
  2217. category = "Custom Jobs",
  2218. PlayerSpawn = function(ply)
  2219. ply:SetMaxHealth(100)
  2220. ply:SetHealth(100)
  2221. ply:SetArmor(100)
  2222. end,
  2223. })
  2224.  
  2225. TEAM_RH = DarkRP.createJob("Roadhog the MLG Aussie", {
  2226. color = Color(0, 56, 255, 255),
  2227. model = {"models/player/kestrel.mdl"},
  2228. description = [[You are apart of the Heavy Police Unit, this branch is tasked with assisting the SWAT team, and the Police Department with heavy duty tasks.]],
  2229. weapons = {"m9k_spas12", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", "tfa_csgo_m4a4", "m9k_nerve_gas", "dab"},
  2230. command = "rh",
  2231. max = 1,
  2232. salary = 250,
  2233. admin = 0,
  2234. vote = false,
  2235. hasLicense = true,
  2236. candemote = false,
  2237. category = "Custom Jobs",
  2238. PlayerSpawn = function(ply)
  2239. ply:SetMaxHealth(600)
  2240. ply:SetArmor(100)
  2241. ply:SetHealth(600)
  2242. ply:SetHealth(600)
  2243. end,
  2244. })
  2245.  
  2246. TEAM_DAN = DarkRP.createJob("ACU", {
  2247. color = Color(0, 56, 255, 255),
  2248. model = {"models/mw2guy/bz/tfbz01.mdl"},
  2249. description = [[You are apart of the Heavy Police Unit, this branch is tasked with assisting the SWAT team, and the Police Department with heavy duty tasks such as protecting the president.]],
  2250. weapons = {"tfa_honeybadger", "arrest_stick", "tfa_glock", "unarrest_stick", "weaponchecker", "door_ram", "weapon_stungun", "weapon_r_handcuffs", "surrender", "garde_a_vousv1.1", "weapon_policeshield", " tfa_glock", "dab", "weapon_vape_american", "realistic_hook"},
  2251. command = "dancj",
  2252. max = 6,
  2253. salary = 250,
  2254. admin = 0,
  2255. vote = false,
  2256. hasLicense = true,
  2257. candemote = false,
  2258. category = "Custom Jobs",
  2259. PlayerSpawn = function(ply)
  2260. ply:SetMaxHealth(100)
  2261. ply:SetArmor(100)
  2262. ply:SetHealth(100)
  2263. ply:SetHealth(100)
  2264. end,
  2265. })
  2266.  
  2267. Team_RK = DarkRP.createJob("RK", {
  2268. color = Color(2, 0, 0, 255),
  2269. model = {"models/player/lordvipes/rerc_vector/vector_cvp.mdl"},
  2270. description = [[(Mads Custom Job)]],
  2271. weapons = {"tfa_csgo_xm1014", "tfa_csgo_m4a1", "tfa_csgo_sawedoff", "tfa_nmrih_fubar", "weapon_cuff_elastic"},
  2272. command = "RK",
  2273. max = 4,
  2274. salary = 250,
  2275. admin = 0,
  2276. vote = false,
  2277. hasLicense = false,
  2278. candemote = false,
  2279. category = "Custom Jobs",
  2280. NeedToChangeFrom = Team_Citizen,
  2281. PlayerSpawn = function(ply)
  2282. ply:SetMaxHealth(100)
  2283. ply:SetHealth(100)
  2284. ply:SetArmor(300)
  2285. end,
  2286. })
  2287.  
  2288. -----------PoliceSOPS--------------
  2289. TEAM_SOPU = DarkRP.createJob("Rockford PD HRU Operator", {
  2290. color = Color(255, 115, 0, 255),
  2291. model = {"models/payday2/units/blue_swat_player.mdl"},
  2292. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2293. weapons = {"weapon_stungun", "tfa_csgo_glock18", "weapon_bf4_mpx"},
  2294. command = "sopu",
  2295. max = 3,
  2296. salary = 250,
  2297. admin = 0,
  2298. vote = false,
  2299. hasLicense = true,
  2300. candemote = false,
  2301. category = "Hostage Rescue"
  2302. })
  2303.  
  2304. TEAM_SOPUS = DarkRP.createJob("Rockford PD HRU Shieldmen", {
  2305. color = Color(255, 115, 0, 255),
  2306. model = {"models/payday2/units/blue_swat_player.mdl"},
  2307. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2308. weapons = {"weapon_stungun", "tfa_csgo_glock18", "weapon_bf4_mpx", "weapon_r_handcuffs", "weapon_policeshield"},
  2309. command = "sopus",
  2310. max = 5,
  2311. salary = 250,
  2312. admin = 0,
  2313. vote = false,
  2314. hasLicense = true,
  2315. candemote = false,
  2316. category = "Hostage Rescue"
  2317. })
  2318.  
  2319. TEAM_SOPUM = DarkRP.createJob("Rockford PD HRU Marksmen", {
  2320. color = Color(255, 115, 0, 255),
  2321. model = {"models/payday2/units/blue_swat_player.mdl"},
  2322. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2323. weapons = {"weapon_stungun", "tfa_csgo_scar20", "weapon_r_handcuffs"},
  2324. command = "sopum",
  2325. max = 3,
  2326. salary = 250,
  2327. admin = 0,
  2328. vote = false,
  2329. hasLicense = true,
  2330. candemote = false,
  2331. category = "Hostage Rescue"
  2332. })
  2333.  
  2334. TEAM_SOPUB = DarkRP.createJob("Rockford PD HRU Breacher", {
  2335. color = Color(255, 115, 0, 255),
  2336. model = {"models/payday2/units/blue_swat_player.mdl"},
  2337. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2338. weapons = {"weapon_stungun", "weapon_bf4_mpx", "tfa_csgo_sawedoff", "tfa_csgo_smoke", "weapon_r_handcuffs", "tfa_csgo_flash", "door_ram"},
  2339. command = "sopub",
  2340. max = 2,
  2341. salary = 250,
  2342. admin = 0,
  2343. vote = false,
  2344. hasLicense = true,
  2345. candemote = false,
  2346. category = "Hostage Rescue"
  2347. })
  2348.  
  2349. TEAM_SOPUMU = DarkRP.createJob("Rockford PD HRU Medical Unit", {
  2350. color = Color(255, 115, 0, 255),
  2351. model = {"models/player/r6s_doc.mdl"},
  2352. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2353. weapons = {"weapon_stungun", "tfa_csgo_m4a4","weapon_r_handcuffs", "weapon_medkit"},
  2354. command = "sopumu",
  2355. max = 2,
  2356. salary = 250,
  2357. admin = 0,
  2358. vote = false,
  2359. hasLicense = true,
  2360. candemote = false,
  2361. category = "Hostage Rescue"
  2362. })
  2363.  
  2364. TEAM_SOPUC = DarkRP.createJob("Rockford PD HRU Squad Leader", {
  2365. color = Color(255, 115, 0, 255),
  2366. model = {"models/player/pmc_5/pmc__03.mdl"},
  2367. description = [[This is the Rockford PD's Hostage Rescue Unit]],
  2368. weapons = {"weapon_stungun", "tfa_csgo_glock18", "tfa_csgo_m4a1"},
  2369. command = "ccccc",
  2370. max = 1,
  2371. salary = 250,
  2372. admin = 0,
  2373. vote = false,
  2374. hasLicense = true,
  2375. candemote = false,
  2376. category = "Hostage Rescue"
  2377. })
  2378.  
  2379. --------HomelandSecurity--------
  2380. TEAM_HMSA = DarkRP.createJob("Homeland Security Agent", {
  2381. color = Color(0, 0, 0, 255),
  2382. model = {"models/player/smith.mdl"},
  2383. description = [[You are apart of Homeland Security]],
  2384. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "m9k_kac_pdw", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  2385. command = "hmsa",
  2386. max = 4,
  2387. salary = 250,
  2388. admin = 0,
  2389. vote = false,
  2390. hasLicense = true,
  2391. candemote = false,
  2392. category = "Homeland Security",
  2393. PlayerSpawn = function(ply)
  2394. ply:SetMaxHealth(100)
  2395. ply:SetHealth(100)
  2396. ply:SetArmor(100)
  2397. end,
  2398. })
  2399.  
  2400. TEAM_HMSSA = DarkRP.createJob("Homeland Security Special Agent", {
  2401. color = Color(0, 0, 0, 255),
  2402. model = {"models/player/smith.mdl"},
  2403. description = [[You are apart of Homeland Security]],
  2404. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "m9k_kac_pdw", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  2405. command = "hmssa",
  2406. max = 3,
  2407. salary = 250,
  2408. admin = 0,
  2409. vote = false,
  2410. hasLicense = true,
  2411. candemote = false,
  2412. category = "Homeland Security",
  2413. PlayerSpawn = function(ply)
  2414. ply:SetMaxHealth(100)
  2415. ply:SetHealth(100)
  2416. ply:SetArmor(100)
  2417. end,
  2418. })
  2419.  
  2420. TEAM_HMSSAIC = DarkRP.createJob("Homeland Security Special Agent In-Charge", {
  2421. color = Color(0, 0, 0, 255),
  2422. model = {"models/player/smith.mdl"},
  2423. description = [[You are apart of Homeland Security]],
  2424. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "m9k_kac_pdw", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  2425. command = "hmssaic",
  2426. max = 2,
  2427. salary = 250,
  2428. admin = 0,
  2429. vote = false,
  2430. hasLicense = true,
  2431. candemote = false,
  2432. category = "Homeland Security",
  2433. PlayerSpawn = function(ply)
  2434. ply:SetMaxHealth(100)
  2435. ply:SetHealth(100)
  2436. ply:SetArmor(100)
  2437. end,
  2438. })
  2439.  
  2440. TEAM_HMSD = DarkRP.createJob("Homeland Security Director", {
  2441. color = Color(0, 0, 0, 255),
  2442. model = {"models/player/smith.mdl"},
  2443. description = [[You are apart of Homeland Security]],
  2444. weapons = {"tfa_csgo_glock18", "arrest_stick", "unarrest_stick", "weaponchecker", "door_ram", "m9k_kac_pdw", "stungun", "weapon_r_handcuffs", "surrender", "pass_dea", "garde_a_vousv1.1"},
  2445. command = "hmsd",
  2446. max = 1,
  2447. salary = 250,
  2448. admin = 0,
  2449. vote = false,
  2450. hasLicense = true,
  2451. candemote = false,
  2452. category = "Homeland Security",
  2453. PlayerSpawn = function(ply)
  2454. ply:SetMaxHealth(100)
  2455. ply:SetHealth(100)
  2456. ply:SetArmor(100)
  2457. end,
  2458. })
  2459.  
  2460. -------FIREFIGHTERS---------
  2461. TEAM_VFIREF = DarkRP.createJob("Volunteer Firefighter", {
  2462. color = Color(242, 0, 0, 255),
  2463. model = {"models/player/portal/male_08_fireman.mdl"},
  2464. description = [[You are a Firefighter]],
  2465. weapons = {"fire_extinguisher", "csgo_m9_night", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2466. command = "vvfirefighter",
  2467. max = 2,
  2468. salary = 500,
  2469. admin = 0,
  2470. vote = false,
  2471. hasLicense = true,
  2472. candemote = false,
  2473. category = "Firefighters"
  2474. })
  2475.  
  2476. TEAM_FIREF = DarkRP.createJob("Firefighter", {
  2477. color = Color(242, 0, 0, 255),
  2478. model = {"models/player/portal/male_08_fireman.mdl"},
  2479. description = [[You are a Firefighter]],
  2480. weapons = {"fire_extinguisher", "csgo_m9_night", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2481. command = "firefighter",
  2482. max = 4,
  2483. salary = 500,
  2484. admin = 0,
  2485. vote = false,
  2486. hasLicense = true,
  2487. candemote = false,
  2488. category = "Firefighters"
  2489. })
  2490.  
  2491. TEAM_PFIREF = DarkRP.createJob("Paramedical Firefighter", {
  2492. color = Color(242, 0, 0, 255),
  2493. model = {"models/player/portal/male_08_fireman.mdl"},
  2494. description = [[You are a Firefighter]],
  2495. weapons = {"fire_extinguisher", "csgo_m9_night", "weapon_medkit", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2496. command = "ppfirefighter",
  2497. max = 2,
  2498. salary = 500,
  2499. admin = 0,
  2500. vote = false,
  2501. hasLicense = true,
  2502. candemote = false,
  2503. category = "Firefighters"
  2504. })
  2505.  
  2506. TEAM_DEFIREF = DarkRP.createJob("Driver Engineer", {
  2507. color = Color(242, 0, 0, 255),
  2508. model = {"models/player/portal/male_08_fireman.mdl"},
  2509. description = [[You are a Firefighter]],
  2510. weapons = {"fire_extinguisher", "csgo_m9_night", "keys", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2511. command = "dfirefighter",
  2512. max = 2,
  2513. salary = 500,
  2514. admin = 0,
  2515. vote = false,
  2516. hasLicense = true,
  2517. candemote = false,
  2518. category = "Firefighters"
  2519. })
  2520.  
  2521. TEAM_LFIREF = DarkRP.createJob("Lieutenant Of The Firefighters", {
  2522. color = Color(242, 0, 0, 255),
  2523. model = {"models/player/portal/male_08_fireman.mdl"},
  2524. description = [[You are a Firefighter]],
  2525. weapons = {"fire_extinguisher", "csgo_m9_night", "keys", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2526. command = "lfirefighter",
  2527. max = 2,
  2528. salary = 500,
  2529. admin = 0,
  2530. vote = false,
  2531. hasLicense = true,
  2532. candemote = false,
  2533. category = "Firefighters"
  2534. })
  2535.  
  2536. TEAM_CFIREF = DarkRP.createJob("Captain Of The Firefighters", {
  2537. color = Color(242, 0, 0, 255),
  2538. model = {"models/player/portal/male_08_fireman.mdl"},
  2539. description = [[You are a Firefighter]],
  2540. weapons = {"fire_extinguisher", "csgo_m9_night", "keys", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2541. command = "cfirefighter",
  2542. max = 1,
  2543. salary = 500,
  2544. admin = 0,
  2545. vote = false,
  2546. hasLicense = true,
  2547. candemote = false,
  2548. category = "Firefighters"
  2549. })
  2550.  
  2551. TEAM_BCFIREF = DarkRP.createJob("Battalion Chief Of The Firefighters", {
  2552. color = Color(242, 0, 0, 255),
  2553. model = {"models/player/portal/male_08_fireman.mdl"},
  2554. description = [[You are a Firefighter]],
  2555. weapons = {"fire_extinguisher", "csgo_m9_night", "keys", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2556. command = "bcfirefighter",
  2557. max = 1,
  2558. salary = 500,
  2559. admin = 0,
  2560. vote = false,
  2561. hasLicense = true,
  2562. candemote = false,
  2563. category = "Firefighters"
  2564. })
  2565.  
  2566. TEAM_FCFIREF = DarkRP.createJob("Fire Chief", {
  2567. color = Color(242, 0, 0, 255),
  2568. model = {"models/player/portal/male_08_fireman.mdl"},
  2569. description = [[You are a Firefighter]],
  2570. weapons = {"fire_extinguisher", "csgo_m9_night", "keys", "tfa_nmrih_fireaxe", "fire_hose", "fire_stopper_grenade"},
  2571. command = "chieffirefighter",
  2572. max = 1,
  2573. salary = 500,
  2574. admin = 0,
  2575. vote = false,
  2576. hasLicense = true,
  2577. candemote = false,
  2578. category = "Firefighters"
  2579. })
  2580.  
  2581. -----------OTHER-----------------
  2582. TEAM_SSTAFFOD = DarkRP.createJob("Staff on duty", {
  2583. color = Color(16, 255, 0, 255),
  2584. model = {"models/player/plague_doktor/player_plague_doktor.mdl"},
  2585. description = [[You protect the server rules and make sure no everyone is having a good time! (DO NOT ABUSE!)]],
  2586. weapons = {"unarrest_stick", "weapon_keypadchecker", "weapon_medkit"},
  2587. command = "stafod",
  2588. max = 0,
  2589. salary = 0,
  2590. admin = 0,
  2591. vote = false,
  2592. customCheck = function(ply) return CLIENT or
  2593. table.HasValue({"admin", "superadmin", "developer", "owner", "moderator", "staffmanager", "headadmin", "communitymanager", "senioradmin", "trialmoderator"}, ply:GetNWString("usergroup"))
  2594. end,
  2595. })
  2596.  
  2597. --[[---------------------------------------------------------------------------
  2598. Define which team joining players spawn into and what team you change to if demoted
  2599. ---------------------------------------------------------------------------]]
  2600. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  2601.  
  2602.  
  2603. --[[---------------------------------------------------------------------------
  2604. Define which teams belong to civil protection
  2605. Civil protection can set warrants, make people wanted and do some other police related things
  2606. ---------------------------------------------------------------------------]]
  2607. GAMEMODE.CivilProtection = {
  2608. [TEAM_OFFICER] = true,
  2609. [TEAM_SOFFICER] = true,
  2610. [TEAM_CPL] = true,
  2611. [TEAM_LCPL] = true,
  2612. [TEAM_SERGEANT] = true,
  2613. [TEAM_MSERGEANT] = true,
  2614. [TEAM_LIEUTENANT] = true,
  2615. [TEAM_SUPERINTENDENT] = true,
  2616. [TEAM_CAPTAIN] = true,
  2617. [TEAM_CHIEF] = true,
  2618. [TEAM_POLICELTC] = true,
  2619. [TEAM_POLICECOL] = true,
  2620. [TEAM_POLICEMAJ] = true,
  2621. [TEAM_DCOMMISSIONER] = true,
  2622. [TEAM_COMMISSIONER] = true,
  2623. [TEAM_SWATPC] = true,
  2624. [TEAM_SWATPVT] = true,
  2625. [TEAM_SWATPFC] = true,
  2626. [TEAM_SWATLCPL] = true,
  2627. [TEAM_SWATCPL] = true,
  2628. [TEAM_SWATSGT] = true,
  2629. [TEAM_SWATSSGT] = true,
  2630. [TEAM_SWATMSGT] = true,
  2631. [TEAM_SWATSGTM] = true,
  2632. [TEAM_SWATLT] = true,
  2633. [TEAM_SWATCPT] = true,
  2634. [TEAM_SWATMAJ] = true,
  2635. [TEAM_SWATCOL] = true,
  2636. [TEAM_SWATADCMDR] = true,
  2637. [TEAM_SWATDCMDR] = true,
  2638. [TEAM_SWATCMDR] = true,
  2639. [TEAM_HPU] = true,
  2640. [TEAM_SOD] = true,
  2641. [TEAM_SODC] = true,
  2642. [TEAM_STATET] = true,
  2643. [TEAM_STATETFC] = true,
  2644. [TEAM_STATETS] = true,
  2645. [TEAM_MSTATET] = true,
  2646. [TEAM_SUPERINTENDENTST] = true,
  2647. [TEAM_CPLT] = true,
  2648. [TEAM_LTT] = true,
  2649. [TEAM_SGTT] = true,
  2650. [TEAM_DETT] = true,
  2651. [TEAM_FSGTT] = true,
  2652. [TEAM_CPTST] = true,
  2653. [TEAM_MAJST] = true,
  2654. [TEAM_USM] = true,
  2655. [TEAM_USMS] = true,
  2656. [TEAM_USMC] = true,
  2657. [TEAM_USMCPT] = true,
  2658. [TEAM_USMSGT] = true,
  2659. [TEAM_FBIPA] = true,
  2660. [TEAM_FBISA] = true,
  2661. [TEAM_FBISSA] = true,
  2662. [TEAM_FBIAD] = true,
  2663. [TEAM_FBID] = true,
  2664. [TEAM_DEAO] = true,
  2665. [TEAM_DEASO] = true,
  2666. [TEAM_DEAM] = true,
  2667. [TEAM_DEAD] = true,
  2668. [TEAM_FBIAC] = true,
  2669. [TEAM_FBIAS] = true,
  2670. [TEAM_FBIAAC] = true,
  2671. [TEAM_FBIA] = true,
  2672. [TEAM_HRCU] = true,
  2673. [TEAM_SGTM] = true,
  2674. [TEAM_HMSA] = true,
  2675. [TEAM_HMSSA] = true,
  2676. [TEAM_HMSSAIC] = true,
  2677. [TEAM_HMSD] = true,
  2678. [TEAM_SOPU] = true,
  2679. [TEAM_SOPUM] = true,
  2680. [TEAM_SOPUMU] = true,
  2681. [TEAM_SOPUB] = true,
  2682. [TEAM_SOPUC] = true,
  2683. [TEAM_SOPUS] = true,
  2684. [TEAM_SOPS] = true,
  2685. [TEAM_FBIDCOS] = true,
  2686. [TEAM_FBIADD] = true,
  2687. [TEAM_FBIEAD] = true,
  2688. [TEAM_FBIAEAD] = true,
  2689. [TEAM_FBIDAD] = true,
  2690. [TEAM_FBIASAIC] = true,
  2691. [TEAM_FBISENSA] = true,
  2692. }
  2693.  
  2694. --[[---------------------------------------------------------------------------
  2695. Jobs that are hitmen (enables the hitman menu)
  2696. ---------------------------------------------------------------------------]]
  2697. DarkRP.addHitmanTeam(TEAM_HIT)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement