Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.75 KB | None | 0 0
  1. local Staff = function(ply) return ply:GetUserGroup() == "trialmoderator" or ply:GetUserGroup() == "viptrialmoderator" or ply:GetUserGroup() == "moderator" or ply:GetUserGroup() == "admin" or ply:GetUserGroup() == "headadmin" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "owner" or ply:GetUserGroup() == "developer" or ply:GetUserGroup() == "tucker"or ply:GetUserGroup() == "seniormoderator"or ply:GetUserGroup() == "User" or ply:GetUserGroup() == "USER" or ply:GetUserGroup() == "trusted"or ply:GetUserGroup() == "trusted2" or ply:GetUserGroup() == "superadmin2" or ply:GetUserGroup() == "manager" or ply:GetUserGroup() == "communitymanager"
  2. end
  3. local vip = function(ply) return ply:GetUserGroup() == "vip" or ply:GetUserGroup() == "vip+" or ply:GetUserGroup() == "viptrialmoderator" or ply:GetUserGroup() == "vipmoderator" or ply:GetUserGroup() == "admin" or ply:GetUserGroup() == "headadmin" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "owner"or ply:GetUserGroup() == "headadmin"== "viptrialmoderator" or ply:GetUserGroup() == "headofstaff" or ply:GetUserGroup() == "tucker" or ply:GetUserGroup() == "User" or ply:GetUserGroup() == "USER" or ply:GetUserGroup() == "trusted" or ply:GetUserGroup() == "trusted"or ply:GetUserGroup() == "seniormoderator" or ply:GetUserGroup() == "superadmin2" or ply:GetUserGroup() == "manager" or ply:GetUserGroup() == "communitymanager"
  4. end
  5.  
  6.  
  7.  
  8.  
  9. --Citizens
  10. TEAM_GUN = DarkRP.createJob("Gun Dealer", {
  11. color = Color(255, 138, 0, 255),
  12. model = {"models/player/monk.mdl"},
  13. description = [[Your sell "legal" guns to "citizens" of rockford.]],
  14. weapons = {"vc_wrench", "weapon_pass_rp" },
  15. command = "gun",
  16. max = 4,
  17. salary = 120,
  18. admin = 0,
  19. vote = false,
  20. hasLicense = true,
  21. candemote = true,
  22. category = "Citizens"
  23. })
  24. TEAM_ADGUN = DarkRP.createJob("Advanced Gun Dealer", {
  25. color = Color(255, 122, 0, 255),
  26. model = {"models/player/monk.mdl"},
  27. description = [[Your have the better guns to sell, and can make more money.]],
  28. weapons = {"vc_wrench", "weapon_pass_rp",},
  29. command = "adgun",
  30. max = 5,
  31. salary = 125,
  32. admin = 0,
  33. vote = false,
  34. hasLicense = true,
  35. candemote = true,
  36. category = "Citizens",
  37. customCheck = vip
  38. })
  39. TEAM_BANK = DarkRP.createJob("Banker", {
  40. color = Color(0, 255, 228, 255),
  41. model = {"models/player/gman_high.mdl"},
  42. description = [[Your protect the bank aganest robbers.]],
  43. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r"},
  44. command = "banker",
  45. max = 5,
  46. salary = 100,
  47. admin = 0,
  48. vote = false,
  49. hasLicense = true,
  50. candemote = true,
  51. category = "Citizens"
  52. })
  53. TEAM_HOBO = DarkRP.createJob("Hobo", {
  54. color = Color(122, 59, 0, 255),
  55. model = {"models/player/corpse1.mdl"},
  56. description = [[You are poor, but you can spit on people. ]],
  57. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_bugbait"},
  58. command = "hobo",
  59. max = 10,
  60. salary = 0,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = false,
  64. candemote = true,
  65. category = "Citizens"
  66. })
  67. TEAM_PRESIDENT = DarkRP.createJob("President", {
  68. color = Color(201, 0, 0, 255),
  69. model = {"models/player/donald_trump.mdl"},
  70. description = [[You are the president, you run Rockford !]],
  71. weapons = {"vc_wrench", "weapon_pass_rp", "unarrest_stick"},
  72. command = "president",
  73. max = 1,
  74. salary = 500,
  75. admin = 0,
  76. vote = true,
  77. hasLicense = true,
  78. candemote = true,
  79. category = "Citizens"
  80. })
  81.  
  82. --Criminals
  83. TEAM_THIEF = DarkRP.createJob("Thief", {
  84. color = Color(0, 0, 0, 255),
  85. model = {"models/player/arctic.mdl"},
  86. description = [[You can break into peoples doors.]],
  87. weapons = {"vc_wrench", "weapon_pass_rp", "pro_lockpick_update"},
  88. command = "thief",
  89. max = 10,
  90. salary = 125,
  91. admin = 0,
  92. vote = false,
  93. hasLicense = false,
  94. candemote = true,
  95. category = "Criminals",
  96. PlayerSpawn = function(ply)
  97. ply:SetMaxHealth(100)
  98. ply:SetHealth(100)
  99. ply:SetArmor(25)
  100. end
  101. })
  102. TEAM_VIPTHIEF = DarkRP.createJob("VIP Thief", {
  103. color = Color(0, 0, 0, 255),
  104. model = {"models/player/arctic.mdl"},
  105. description = [[You have better equiptment to break into houses.]],
  106. weapons = {"vc_wrench", "weapon_pass_rp", "pro_lockpick_update", "keypad_cracker", "tfa_sig_p229r"},
  107. command = "thiefvip",
  108. max = 10,
  109. salary = 200,
  110. admin = 0,
  111. vote = false,
  112. hasLicense = false,
  113. candemote = true,
  114. category = "Criminals",
  115. PlayerSpawn = function(ply)
  116. ply:SetMaxHealth(100)
  117. ply:SetHealth(100)
  118. ply:SetArmor(50)
  119. end,
  120. customCheck = vip
  121. })
  122. TEAM_HACKER = DarkRP.createJob("Hacker", {
  123. color = Color(0, 0, 0, 255),
  124. model = {"models/player/hostage/hostage_04.mdl"},
  125. description = [[You are the most advance hacker, you can get through any fadeing door.]],
  126. weapons = {"vc_wrench", "weapon_pass_rp", "keypad_cracker"},
  127. command = "hacker",
  128. max = 10,
  129. salary = 125,
  130. admin = 0,
  131. vote = false,
  132. hasLicense = false,
  133. candemote = true,
  134. category = "Criminals"
  135. })
  136. TEAM_KIDNAP = DarkRP.createJob("Kidnapper", {
  137. color = Color(0, 0, 0, 255),
  138. model = {"models/player/lulsec.mdl"},
  139. description = [[You can kidnap people, you carry restraints with you.]],
  140. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_cuff_police"},
  141. command = "kidnapper",
  142. max = 5,
  143. salary = 125,
  144. admin = 0,
  145. vote = false,
  146. hasLicense = false,
  147. candemote = true,
  148. category = "Criminals"
  149. })
  150. TEAM_ROBBER = DarkRP.createJob("Robber", {
  151. color = Color(0, 0, 0, 255),
  152. model = {"models/player/group01/cookies114.mdl"},
  153. description = [[You rob the bank, you are faster and easier to get away from police.]],
  154. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick"},
  155. command = "robber",
  156. max = 5,
  157. salary = 125,
  158. admin = 0,
  159. vote = false,
  160. hasLicense = false,
  161. candemote = true,
  162. category = "Criminals"
  163. })
  164. TEAM_MOB = DarkRP.createJob("Hitman", {
  165. color = Color(115, 0, 0, 255),
  166. model = {"models/player/agent_47.mdl"},
  167. description = [[You can kill people who want someone dead.]],
  168. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick", "tfa_sig_p229r"},
  169. command = "hitman",
  170. max = 5,
  171. salary = 125,
  172. admin = 0,
  173. vote = false,
  174. hasLicense = false,
  175. candemote = true,
  176. category = "Criminals"
  177. })
  178.  
  179.  
  180.  
  181.  
  182. --Police Department
  183. TEAM_POLICE = DarkRP.createJob("Police Cadet", {
  184. color = Color(0, 26, 255, 255),
  185. model = {"models/player/nypd/male_02.mdl"},
  186. description = [[You are in training you need to listen to you superiors. ]],
  187. weapons = {"vc_wrench", "weapon_pass_rp" },
  188. command = "cadet",
  189. max = 10,
  190. salary = 10,
  191. admin = 0,
  192. vote = false,
  193. hasLicense = true,
  194. candemote = true,
  195. sortOrder = 1,
  196. category = "Police Department"
  197. })
  198. TEAM_POLICEP = DarkRP.createJob("Patrol Officer", {
  199. color = Color(0, 26, 255, 255),
  200. model = {"models/player/nypd/male_04.mdl"},
  201. description = [[You are a government official, you need to follow all rockford laws.]],
  202. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_smgp90"},
  203. command = "officer",
  204. max = 10,
  205. salary = 150,
  206. admin = 0,
  207. vote = false,
  208. hasLicense = true,
  209. candemote = true,
  210. sortOrder = 2,
  211. category = "Police Department",
  212. PlayerSpawn = function(ply)
  213. ply:SetMaxHealth(100)
  214. ply:SetHealth(100)
  215. ply:SetArmor(25)
  216. end
  217. })
  218. TEAM_POLICEPS = DarkRP.createJob("Senior Patrol Officer", {
  219. color = Color(0, 26, 255, 255),
  220. model = {"models/player/nypd/male_05.mdl"},
  221. description = [[You are a government official, you need to follow all rockford laws.]],
  222. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_m4a1"},
  223. command = "officers",
  224. max = 10,
  225. salary = 150,
  226. admin = 0,
  227. vote = false,
  228. hasLicense = true,
  229. candemote = true,
  230. sortOrder = 3,
  231. category = "Police Department",
  232. PlayerSpawn = function(ply)
  233. ply:SetMaxHealth(100)
  234. ply:SetHealth(100)
  235. ply:SetArmor(25)
  236. end
  237. })
  238. TEAM_POLICEPL = DarkRP.createJob("Police Lance Corporal", {
  239. color = Color(0, 26, 255, 255),
  240. model = {"models/player/nypd/male_05.mdl"},
  241. description = [[You are a government official, you need to follow all rockford laws.]],
  242. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_m4a1"},
  243. command = "officersl",
  244. max = 5,
  245. salary = 150,
  246. admin = 0,
  247. vote = false,
  248. hasLicense = true,
  249. candemote = true,
  250. sortOrder = 4,
  251. category = "Police Department",
  252. PlayerSpawn = function(ply)
  253. ply:SetMaxHealth(100)
  254. ply:SetHealth(100)
  255. ply:SetArmor(25)
  256. end
  257. })
  258. TEAM_POLICECC = DarkRP.createJob("Police Corporal", {
  259. color = Color(0, 26, 255, 255),
  260. model = {"models/player/nypd/male_07.mdl"},
  261. description = [[You are a government official, you need to follow all rockford laws.]],
  262. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_ak74", "tfa_smgp90"},
  263. command = "corporal",
  264. max = 10,
  265. salary = 150,
  266. admin = 0,
  267. vote = false,
  268. hasLicense = true,
  269. candemote = true,
  270. sortOrder = 5,
  271. category = "Police Department",
  272. PlayerSpawn = function(ply)
  273. ply:SetMaxHealth(100)
  274. ply:SetHealth(100)
  275. ply:SetArmor(25)
  276. end
  277. })
  278. TEAM_POLICESEAR = DarkRP.createJob("Police Sergeant", {
  279. color = Color(0, 26, 255, 255),
  280. model = {"models/player/nypd/male_08.mdl"},
  281. description = [[You are a government official, you need to follow all rockford laws.]],
  282. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_m4a1", "tfa_mp5sd"},
  283. command = "seargent",
  284. max = 10,
  285. salary = 200,
  286. admin = 0,
  287. vote = false,
  288. hasLicense = true,
  289. candemote = true,
  290. sortOrder = 6,
  291. category = "Police Department",
  292. PlayerSpawn = function(ply)
  293. ply:SetMaxHealth(100)
  294. ply:SetHealth(100)
  295. ply:SetArmor(50)
  296. end
  297. })
  298. TEAM_POLICESEEAR = DarkRP.createJob("Police Master Sergeant", {
  299. color = Color(0, 26, 255, 255),
  300. model = {"models/player/nypd/male_09.mdl"},
  301. description = [[You are a government official, you need to follow all rockford laws.]],
  302. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_sig_p229r", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_honeybadger", "tfa_m4a1"},
  303. command = "seargentt",
  304. max = 5,
  305. salary = 200,
  306. admin = 0,
  307. vote = false,
  308. hasLicense = true,
  309. candemote = true,
  310. sortOrder = 7,
  311. category = "Police Department",
  312. PlayerSpawn = function(ply)
  313. ply:SetMaxHealth(100)
  314. ply:SetHealth(100)
  315. ply:SetArmor(50)
  316. end
  317. })
  318. TEAM_POLICEM = DarkRP.createJob("Police Sergeant Major", {
  319. color = Color(0, 26, 255, 255),
  320. model = {"models/player/santosrp/male_02_santosrp.mdl"},
  321. description = [[You are a government official, you need to follow all rockford laws.]],
  322. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_m4a1", "tfa_ump45"},
  323. command = "seargantmajor",
  324. max = 5,
  325. salary = 200,
  326. admin = 0,
  327. vote = false,
  328. hasLicense = true,
  329. candemote = true,
  330. sortOrder = 8,
  331. category = "Police Department",
  332. PlayerSpawn = function(ply)
  333. ply:SetMaxHealth(100)
  334. ply:SetHealth(100)
  335. ply:SetArmor(50)
  336. end
  337. })
  338. TEAM_POLICELI = DarkRP.createJob("Police Lieutenant", {
  339. color = Color(0, 26, 255, 255),
  340. model = {"models/player/santosrp/male_04_santosrp.mdl"},
  341. description = [[You are a government official, you need to follow all rockford laws.]],
  342. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_ump45", "tfa_m4a1", "tfa_1887winchester"},
  343. command = "liuten",
  344. max = 5,
  345. salary = 200,
  346. admin = 0,
  347. vote = false,
  348. hasLicense = true,
  349. candemote = true,
  350. sortOrder = 9,
  351. category = "Police Department",
  352. PlayerSpawn = function(ply)
  353. ply:SetMaxHealth(100)
  354. ply:SetHealth(100)
  355. ply:SetArmor(50)
  356. end
  357. })
  358. TEAM_POLICECAOP = DarkRP.createJob("Police Captain", {
  359. color = Color(0, 26, 255, 255),
  360. model = {"models/player/santosrp/male_05_santosrp.mdl"},
  361. description = [[You are a government official, you need to follow all rockford laws.]],
  362. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_ump45", "tfa_m4a1", "tfa_1887winchester"},
  363. command = "captainpolice",
  364. max = 4,
  365. salary = 250,
  366. admin = 0,
  367. vote = false,
  368. hasLicense = true,
  369. candemote = true,
  370. sortOrder = 10,
  371. category = "Police Department",
  372. PlayerSpawn = function(ply)
  373. ply:SetMaxHealth(100)
  374. ply:SetHealth(100)
  375. ply:SetArmor(50)
  376. end
  377. })
  378. TEAM_POLICEMAJOR = DarkRP.createJob("Police Major", {
  379. color = Color(0, 26, 255, 255),
  380. model = {"models/player/santosrp/male_06_santosrp.mdl"},
  381. description = [[You are a government official, you need to follow all rockford laws.]],
  382. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_mp9", "tfa_m4a1", "tfa_1887winchester"},
  383. command = "policemajor",
  384. max = 3,
  385. salary = 250,
  386. admin = 0,
  387. vote = false,
  388. hasLicense = true,
  389. candemote = true,
  390. sortOrder = 11,
  391. category = "Police Department",
  392. PlayerSpawn = function(ply)
  393. ply:SetMaxHealth(100)
  394. ply:SetHealth(100)
  395. ply:SetArmor(75)
  396. end
  397. })
  398. TEAM_POLICECOLO = DarkRP.createJob("Police Colonel", {
  399. color = Color(0, 26, 255, 255),
  400. model = {"models/player/santosrp/male_08_santosrp.mdl"},
  401. description = [[You are a government official, you need to follow all rockford laws.]],
  402. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_mp7", "tfa_m4a1", "tfa_1887winchester"},
  403. command = "colonel",
  404. max = 2,
  405. salary = 250,
  406. admin = 0,
  407. vote = false,
  408. hasLicense = true,
  409. candemote = true,
  410. sortOrder = 12,
  411. category = "Police Department",
  412. PlayerSpawn = function(ply)
  413. ply:SetMaxHealth(100)
  414. ply:SetHealth(100)
  415. ply:SetArmor(75)
  416. end
  417. })
  418. TEAM_POLICEASS = DarkRP.createJob("Assistant Chief", {
  419. color = Color(0, 26, 255, 255),
  420. model = {"models/player/santosrp/male_08_santosrp.mdl"},
  421. description = [[You are a government official, you need to follow all rockford laws.]],
  422. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_dbarrel", "tfa_l85", "tfa_m16a4_acog"},
  423. command = "assistant",
  424. max = 1,
  425. salary = 300,
  426. admin = 0,
  427. vote = false,
  428. hasLicense = true,
  429. candemote = true,
  430. sortOrder = 13,
  431. category = "Police Department",
  432. PlayerSpawn = function(ply)
  433. ply:SetMaxHealth(100)
  434. ply:SetHealth(100)
  435. ply:SetArmor(75)
  436. end
  437. })
  438. TEAM_POLICEDEDDD = DarkRP.createJob("Deputy Chief", {
  439. color = Color(0, 26, 255, 255),
  440. model = {"models/player/santosrp/male_09_santosrp.mdl"},
  441. description = [[You are a government official, you need to follow all rockford laws.]],
  442. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_dbarrel", "tfa_l85", "tfa_m16a4_acog"},
  443. command = "deputy",
  444. max = 1,
  445. salary = 300,
  446. admin = 0,
  447. vote = false,
  448. hasLicense = true,
  449. candemote = true,
  450. sortOrder = 14,
  451. category = "Police Department",
  452. PlayerSpawn = function(ply)
  453. ply:SetMaxHealth(100)
  454. ply:SetHealth(100)
  455. ply:SetArmor(100)
  456. end
  457. })
  458. TEAM_POLICECHIEFSAN = DarkRP.createJob("Chief", {
  459. color = Color(0, 26, 255, 255),
  460. model = {"models/player/uk_police/uk_police_09.mdl"},
  461. description = [[You are a government official, you need to follow all rockford laws.]],
  462. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_dbarrel", "tfa_l85", "tfa_m16a4_acog"},
  463. command = "chiefregular",
  464. max = 1,
  465. salary = 350,
  466. admin = 0,
  467. vote = false,
  468. hasLicense = true,
  469. candemote = true,
  470. sortOrder = 15,
  471. category = "Police Department",
  472. PlayerSpawn = function(ply)
  473. ply:SetMaxHealth(100)
  474. ply:SetHealth(100)
  475. ply:SetArmor(100)
  476. end
  477. })
  478. TEAM_POLICEDEPUTYY = DarkRP.createJob("Deputy Commissioner", {
  479. color = Color(0, 26, 255, 255),
  480. model = {"models/omgwtfbbq/quantum_break/characters/operators/monarchoperator01.mdl"},
  481. description = [[You are a government official, you need to follow all rockford laws.]],
  482. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_dbarrel", "tfa_scar", "tfa_m16a4_acog"},
  483. command = "deputycommisionar",
  484. max = 1,
  485. salary = 400,
  486. admin = 0,
  487. vote = false,
  488. hasLicense = true,
  489. candemote = true,
  490. sortOrder = 16,
  491. category = "Police Department",
  492. PlayerSpawn = function(ply)
  493. ply:SetMaxHealth(100)
  494. ply:SetHealth(100)
  495. ply:SetArmor(100)
  496. end
  497. })
  498. TEAM_POLICECCCC = DarkRP.createJob("Commissioner", {
  499. color = Color(0, 26, 255, 255),
  500. model = {"models/omgwtfbbq/quantum_break/characters/operators/monarchoperator01.mdl"},
  501. description = [[You are a government official, you need to follow all rockford laws.]],
  502. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_dbarrel", "tfa_scar", "tfa_m16a4_acog"},
  503. command = "commisionar",
  504. max = 1,
  505. salary = 500,
  506. admin = 0,
  507. vote = false,
  508. hasLicense = true,
  509. candemote = true,
  510. sortOrder = 17,
  511. category = "Police Department",
  512. PlayerSpawn = function(ply)
  513. ply:SetMaxHealth(100)
  514. ply:SetHealth(100)
  515. ply:SetArmor(100)
  516. end
  517. })
  518. --SWAT
  519. TEAM_SWATA = DarkRP.createJob("SWAT Private", {
  520. color = Color(0, 10, 107, 255),
  521. model = {"models/codmw2/codmw2.mdl"},
  522. description = [[You are a government official, you need to follow all rockford laws.]],
  523. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_auga3"},
  524. command = "swata",
  525. max = 10,
  526. salary = 175,
  527. admin = 0,
  528. vote = false,
  529. hasLicense = true,
  530. candemote = true,
  531. sortOrder = 20,
  532. category = "SWAT",
  533. PlayerSpawn = function(ply)
  534. ply:SetMaxHealth(100)
  535. ply:SetHealth(100)
  536. ply:SetArmor(50)
  537. end
  538. })
  539. TEAM_SWATB = DarkRP.createJob("SWAT Private First Class", {
  540. color = Color(0, 10, 107, 255),
  541. model = {"models/codmw2/codmw2h.mdl"},
  542. description = [[You are a government official, you need to follow all rockford laws.]],
  543. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_auga3"},
  544. command = "swatb",
  545. max = 10,
  546. salary = 175,
  547. admin = 0,
  548. vote = false,
  549. hasLicense = true,
  550. candemote = true,
  551. sortOrder = 21,
  552. category = "SWAT",
  553. PlayerSpawn = function(ply)
  554. ply:SetMaxHealth(100)
  555. ply:SetHealth(100)
  556. ply:SetArmor(100)
  557. end
  558. })
  559. TEAM_SWATC = DarkRP.createJob("SWAT Corporal", {
  560. color = Color(0, 10, 107, 255),
  561. model = {"models/codmw2/codmw2he.mdl"},
  562. description = [[You are a government official, you need to follow all rockford laws.]],
  563. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_fal", "tfa_honeybadger", "tfa_usas"},
  564. command = "swatc",
  565. max = 5,
  566. salary = 200,
  567. admin = 0,
  568. vote = false,
  569. hasLicense = true,
  570. candemote = true,
  571. sortOrder = 23,
  572. category = "SWAT",
  573. PlayerSpawn = function(ply)
  574. ply:SetMaxHealth(100)
  575. ply:SetHealth(100)
  576. ply:SetArmor(150)
  577. end
  578. })
  579. TEAM_SWATD = DarkRP.createJob("SWAT Sergeant", {
  580. color = Color(0, 10, 107, 255),
  581. model = {"models/codmw2/codmw2hexe.mdl"},
  582. description = [[You are a government official, you need to follow all rockford laws.]],
  583. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_fal", "tfa_honeybadger", "tfa_usas"},
  584. command = "swatd",
  585. max = 5,
  586. salary = 225,
  587. admin = 0,
  588. vote = false,
  589. hasLicense = true,
  590. candemote = true,
  591. sortOrder = 24,
  592. category = "SWAT",
  593. PlayerSpawn = function(ply)
  594. ply:SetMaxHealth(100)
  595. ply:SetHealth(100)
  596. ply:SetArmor(150)
  597. end
  598. })
  599. TEAM_SWATE = DarkRP.createJob("SWAT Staff Sergeant", {
  600. color = Color(0, 10, 107, 255),
  601. model = {"models/codmw2/codmw2m.mdl"},
  602. description = [[You are a government official, you need to follow all rockford laws.]],
  603. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_acr", "tfa_spas12", "tfa_m24"},
  604. command = "swate",
  605. max = 5,
  606. salary = 225,
  607. admin = 0,
  608. vote = false,
  609. hasLicense = true,
  610. candemote = true,
  611. sortOrder = 25,
  612. category = "SWAT",
  613. PlayerSpawn = function(ply)
  614. ply:SetMaxHealth(100)
  615. ply:SetHealth(100)
  616. ply:SetArmor(150)
  617. end
  618. })
  619. TEAM_SWATF = DarkRP.createJob("SWAT First Class", {
  620. color = Color(0, 10, 107, 255),
  621. model = {"models/codmw2/t_codm.mdl"},
  622. description = [[You are a government official, you need to follow all rockford laws.]],
  623. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_acr", "tfa_spas12", "tfa_m24"},
  624. command = "swatf",
  625. max = 5,
  626. salary = 225,
  627. admin = 0,
  628. vote = false,
  629. hasLicense = true,
  630. candemote = true,
  631. sortOrder = 26,
  632. category = "SWAT",
  633. PlayerSpawn = function(ply)
  634. ply:SetMaxHealth(100)
  635. ply:SetHealth(100)
  636. ply:SetArmor(150)
  637. end
  638. })
  639. TEAM_SWATG = DarkRP.createJob("SWAT Master Sergeant", {
  640. color = Color(0, 10, 107, 255),
  641. model = {"models/codmw2/t_codmw2.mdl"},
  642. description = [[You are a government official, you need to follow all rockford laws.]],
  643. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_famas", "tfa_spas12", "tfa_m24", "tfa_csgo_smoke"},
  644. command = "swatg",
  645. max = 2,
  646. salary = 250,
  647. admin = 0,
  648. vote = false,
  649. hasLicense = true,
  650. candemote = true,
  651. sortOrder = 27,
  652. category = "SWAT",
  653. PlayerSpawn = function(ply)
  654. ply:SetMaxHealth(100)
  655. ply:SetHealth(100)
  656. ply:SetArmor(200)
  657. end
  658. })
  659. TEAM_SWATH = DarkRP.createJob("SWAT Team Leader", {
  660. color = Color(0, 10, 107, 255),
  661. model = {"models/codmw2/t_codmw2h.mdl"},
  662. description = [[You are a government official, you need to follow all rockford laws.]],
  663. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_famas", "tfa_jackhammer", "tfa_psg1", "tfa_csgo_smoke", "weapon_breachingcharge"},
  664. command = "swath",
  665. max = 1,
  666. salary = 300,
  667. admin = 0,
  668. vote = false,
  669. hasLicense = true,
  670. candemote = true,
  671. sortOrder = 28,
  672. category = "SWAT",
  673. PlayerSpawn = function(ply)
  674. ply:SetMaxHealth(100)
  675. ply:SetHealth(100)
  676. ply:SetArmor(200)
  677. end
  678. })
  679. TEAM_SWATI = DarkRP.createJob("SWAT Co-Commander", {
  680. color = Color(0, 10, 107, 255),
  681. model = {"models/piket_playermodel/piket_playermodel.mdl"},
  682. description = [[You are a government official, you need to follow all rockford laws.]],
  683. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_famas", "tfa_jackhammer", "tfa_psg1", "tfa_csgo_smoke", "tfa_csgo_flash", "weapon_breachingcharge"},
  684. command = "swatdd",
  685. max = 1,
  686. salary = 400,
  687. admin = 0,
  688. vote = false,
  689. hasLicense = true,
  690. candemote = true,
  691. sortOrder = 29,
  692. category = "SWAT",
  693. PlayerSpawn = function(ply)
  694. ply:SetMaxHealth(100)
  695. ply:SetHealth(100)
  696. ply:SetArmor(250)
  697. end
  698. })
  699. TEAM_SWATJ = DarkRP.createJob("SWAT Commander", {
  700. color = Color(0, 10, 107, 255),
  701. model = {"models/piket_playermodel/piket_playermodel.mdl"},
  702. description = [[You are a government official, you need to follow all rockford laws.]],
  703. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_deagle", "door_ram", "stungun", "weapon_ticketbook", "weapon_r_handcuffs", "vc_spikestrip_wep", "tfa_famas", "tfa_jackhammer", "tfa_psg1", "tfa_csgo_smoke", "tfa_nerve_gas", "weapon_breachingcharge"},
  704. command = "swatdds",
  705. max = 1,
  706. salary = 500,
  707. admin = 0,
  708. vote = false,
  709. hasLicense = true,
  710. candemote = true,
  711. sortOrder = 30,
  712. category = "SWAT",
  713. PlayerSpawn = function(ply)
  714. ply:SetMaxHealth(100)
  715. ply:SetHealth(100)
  716. ply:SetArmor(255)
  717. end
  718. })
  719. --State Troopers
  720. TEAM_STATEA = DarkRP.createJob("Rockford’s State Trooper", {
  721. color = Color(60, 78, 140, 255),
  722. model = {"models/player/gpd/sheriff_ancient/female_gta_01.mdl"},
  723. description = [[You are a government offical, you need to follow all rockford laws.]],
  724. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_g36"},
  725. command = "statesa",
  726. max = 10,
  727. salary = 250,
  728. admin = 0,
  729. vote = false,
  730. hasLicense = true,
  731. candemote = true,
  732. sortOrder = 40,
  733. category = "State Trooper",
  734. PlayerSpawn = function(ply)
  735. ply:SetMaxHealth(100)
  736. ply:SetHealth(100)
  737. ply:SetArmor(50)
  738. end
  739. })
  740. TEAM_STATEB = DarkRP.createJob("Rockford’s State Trooper Supervisor", {
  741. color = Color(60, 78, 140, 255),
  742. model = {"models/player/gpd/sheriff_ancient/male_08.mdl"},
  743. description = [[You are a government offical, you need to follow all rockford laws.]],
  744. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_scar"},
  745. command = "staterh",
  746. max = 10,
  747. salary = 250,
  748. admin = 0,
  749. vote = false,
  750. hasLicense = true,
  751. candemote = true,
  752. sortOrder = 41,
  753. category = "State Trooper",
  754. PlayerSpawn = function(ply)
  755. ply:SetMaxHealth(100)
  756. ply:SetHealth(100)
  757. ply:SetArmor(100)
  758. end
  759. })
  760. TEAM_STATEC = DarkRP.createJob("Rockford’s State Trooper Commander", {
  761. color = Color(60, 78, 140, 255),
  762. model = {"models/player/gpd/sheriff_ancient/male_gta_03.mdl"},
  763. description = [[You are a government offical, you need to follow all rockford laws.]],
  764. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_scar", "tfa_dbarrel"},
  765. command = "stateqwe",
  766. max = 10,
  767. salary = 300,
  768. admin = 0,
  769. vote = false,
  770. hasLicense = true,
  771. candemote = true,
  772. sortOrder = 42,
  773. category = "State Trooper",
  774. PlayerSpawn = function(ply)
  775. ply:SetMaxHealth(100)
  776. ply:SetHealth(100)
  777. ply:SetArmor(125)
  778. end
  779. })
  780. TEAM_STATED = DarkRP.createJob("Breacher", {
  781. color = Color(60, 78, 140, 255),
  782. model = {"models/combine_sniper_2.mdl"},
  783. description = [[You are a government offical, you need to follow all rockford laws.]],
  784. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_auga3", "weapon_breachingcharge"},
  785. command = "statefdg",
  786. max = 5,
  787. salary = 325,
  788. admin = 0,
  789. vote = false,
  790. hasLicense = true,
  791. candemote = true,
  792. sortOrder = 43,
  793. category = "State Trooper",
  794. PlayerSpawn = function(ply)
  795. ply:SetMaxHealth(100)
  796. ply:SetHealth(100)
  797. ply:SetArmor(200)
  798. end
  799. })
  800. TEAM_STATEF = DarkRP.createJob("Pointman", {
  801. color = Color(60, 78, 140, 255),
  802. model = {"models/combine_sniper_2.mdl"},
  803. description = [[You are a government offical, you need to follow all rockford laws.]],
  804. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_l85"},
  805. command = "stateyj",
  806. max = 5,
  807. salary = 350,
  808. admin = 0,
  809. vote = false,
  810. hasLicense = true,
  811. candemote = true,
  812. sortOrder = 44,
  813. category = "State Trooper",
  814. PlayerSpawn = function(ply)
  815. ply:SetMaxHealth(100)
  816. ply:SetHealth(100)
  817. ply:SetArmor(200)
  818. end
  819. })
  820. TEAM_STATEG = DarkRP.createJob("Rifleman", {
  821. color = Color(60, 78, 140, 255),
  822. model = {"models/combine_sniper_2.mdl"},
  823. description = [[You are a government offical, you need to follow all rockford laws.]],
  824. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_m416"},
  825. command = "statjhge",
  826. max = 5,
  827. salary = 375,
  828. admin = 0,
  829. vote = false,
  830. hasLicense = true,
  831. candemote = true,
  832. sortOrder = 45,
  833. category = "State Trooper",
  834. PlayerSpawn = function(ply)
  835. ply:SetMaxHealth(100)
  836. ply:SetHealth(100)
  837. ply:SetArmor(200)
  838. end
  839. })
  840. TEAM_STATEH = DarkRP.createJob("Assistant Team Leader", {
  841. color = Color(60, 78, 140, 255),
  842. model = {"models/combine_sniper_2.mdl"},
  843. description = [[You are a government offical, you need to follow all rockford laws.]],
  844. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_m416", "tfa_l85"},
  845. command = "stdfjate",
  846. max = 2,
  847. salary = 400,
  848. admin = 0,
  849. vote = false,
  850. hasLicense = true,
  851. candemote = true,
  852. sortOrder = 46,
  853. category = "State Trooper",
  854. PlayerSpawn = function(ply)
  855. ply:SetMaxHealth(100)
  856. ply:SetHealth(100)
  857. ply:SetArmor(200)
  858. end
  859. })
  860. TEAM_STATEI = DarkRP.createJob("CERT Co-Commander", {
  861. color = Color(60, 78, 140, 255),
  862. model = {"models/fear/player/portal/solder_fear.mdl"},
  863. description = [[You are a government offical, you need to follow all rockford laws.]],
  864. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_m416", "tfa_l85"},
  865. command = "stagfgjjte",
  866. max = 1,
  867. salary = 450,
  868. admin = 0,
  869. vote = false,
  870. hasLicense = true,
  871. candemote = true,
  872. sortOrder = 47,
  873. category = "State Trooper",
  874. PlayerSpawn = function(ply)
  875. ply:SetMaxHealth(100)
  876. ply:SetHealth(100)
  877. ply:SetArmor(250)
  878. end
  879. })
  880. TEAM_STATEJ = DarkRP.createJob("CERT Commander", {
  881. color = Color(60, 78, 140, 255),
  882. model = {"models/fear/player/portal/solder_fear.mdl"},
  883. description = [[You are a government offical, you need to follow all rockford laws.]],
  884. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_remington870", "tfa_colt1911", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_csgo_flash", "tfa_csgo_smoke", "tfa_usas", "tfa_m416", "tfa_l85"},
  885. command = "stateawsa",
  886. max = 1,
  887. salary = 500,
  888. admin = 0,
  889. vote = false,
  890. hasLicense = true,
  891. candemote = true,
  892. sortOrder = 48,
  893. category = "State Trooper",
  894. PlayerSpawn = function(ply)
  895. ply:SetMaxHealth(100)
  896. ply:SetHealth(100)
  897. ply:SetArmor(255)
  898. end
  899. })
  900. --FBI
  901. TEAM_FBIA = DarkRP.createJob("FBI Agent", {
  902. color = Color(28, 35, 61, 255),
  903. model = {"models/fbi_pack/fbi_01.mdl"},
  904. description = [[You are a government offical, you need to follow all rockford laws.]],
  905. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_mp5sd", "tfa_usp"},
  906. command = "fbia",
  907. max = 10,
  908. salary = 150,
  909. admin = 0,
  910. vote = false,
  911. hasLicense = true,
  912. candemote = true,
  913. sortOrder = 50,
  914. category = "FBI",
  915. PlayerSpawn = function(ply)
  916. ply:SetMaxHealth(100)
  917. ply:SetHealth(100)
  918. ply:SetArmor(0)
  919. end
  920. })
  921. TEAM_FBIB = DarkRP.createJob("FBI Special Agent", {
  922. color = Color(28, 35, 61, 255),
  923. model = {"models/fbi_pack/fbi_02.mdl"},
  924. description = [[You are a government offical, you need to follow all rockford laws.]],
  925. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_mp5sd", "tfa_usp"},
  926. command = "fbib",
  927. max = 10,
  928. salary = 150,
  929. admin = 0,
  930. vote = false,
  931. hasLicense = true,
  932. candemote = true,
  933. sortOrder = 51,
  934. category = "FBI",
  935. PlayerSpawn = function(ply)
  936. ply:SetMaxHealth(100)
  937. ply:SetHealth(100)
  938. ply:SetArmor(70)
  939. end
  940. })
  941. TEAM_FBIC = DarkRP.createJob("FBI Senior Special", {
  942. color = Color(28, 35, 61, 255),
  943. model = {"models/fbi_pack/fbi_03.mdl"},
  944. description = [[You are a government offical, you need to follow all rockford laws.]],
  945. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp"},
  946. command = "fbic",
  947. max = 10,
  948. salary = 175,
  949. admin = 0,
  950. vote = false,
  951. hasLicense = true,
  952. candemote = true,
  953. sortOrder = 53,
  954. category = "FBI",
  955. PlayerSpawn = function(ply)
  956. ply:SetMaxHealth(100)
  957. ply:SetHealth(100)
  958. ply:SetArmor(80)
  959. end
  960. })
  961. TEAM_FBID = DarkRP.createJob("FBI Special Agent", {
  962. color = Color(28, 35, 61, 255),
  963. model = {"models/fbi_pack/fbi_04.mdl"},
  964. description = [[You are a government offical, you need to follow all rockford laws.]],
  965. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp"},
  966. command = "fbid",
  967. max = 5,
  968. salary = 175,
  969. admin = 0,
  970. vote = false,
  971. hasLicense = true,
  972. candemote = true,
  973. sortOrder = 55,
  974. category = "FBI",
  975. PlayerSpawn = function(ply)
  976. ply:SetMaxHealth(100)
  977. ply:SetHealth(100)
  978. ply:SetArmor(90)
  979. end
  980. })
  981. TEAM_FBIE = DarkRP.createJob("FBI Deputy Of Staff", {
  982. color = Color(28, 35, 61, 255),
  983. model = {"models/fbi_pack/fbi_05.mdl"},
  984. description = [[You are a government offical, you need to follow all rockford laws.]],
  985. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp"},
  986. command = "fbie",
  987. max = 3,
  988. salary = 200,
  989. admin = 0,
  990. vote = false,
  991. hasLicense = true,
  992. candemote = true,
  993. sortOrder = 56,
  994. category = "FBI",
  995. PlayerSpawn = function(ply)
  996. ply:SetMaxHealth(100)
  997. ply:SetHealth(100)
  998. ply:SetArmor(110)
  999. end
  1000. })
  1001. TEAM_FBIF = DarkRP.createJob("FBI Chief Of Staff", {
  1002. color = Color(28, 35, 61, 255),
  1003. model = {"models/fbi_pack/fbi_06.mdl"},
  1004. description = [[You are a government offical, you need to follow all rockford laws.]],
  1005. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp"},
  1006. command = "fbif",
  1007. max = 1,
  1008. salary = 250,
  1009. admin = 0,
  1010. vote = false,
  1011. hasLicense = true,
  1012. candemote = true,
  1013. sortOrder = 57,
  1014. category = "FBI",
  1015. PlayerSpawn = function(ply)
  1016. ply:SetMaxHealth(100)
  1017. ply:SetHealth(100)
  1018. ply:SetArmor(120)
  1019. end
  1020. })
  1021. TEAM_FBIG = DarkRP.createJob("FBI Co Director", {
  1022. color = Color(28, 35, 61, 255),
  1023. model = {"models/fbi_pack/fbi_07.mdl"},
  1024. description = [[You are a government offical, you need to follow all rockford laws.]],
  1025. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp", "tfa_remington870", "tfa_aw50"},
  1026. command = "fbig",
  1027. max = 1,
  1028. salary = 300,
  1029. admin = 0,
  1030. vote = false,
  1031. hasLicense = true,
  1032. candemote = true,
  1033. sortOrder = 58,
  1034. category = "FBI",
  1035. PlayerSpawn = function(ply)
  1036. ply:SetMaxHealth(100)
  1037. ply:SetHealth(100)
  1038. ply:SetArmor(130)
  1039. end
  1040. })
  1041. TEAM_FBIH = DarkRP.createJob("FBI Director", {
  1042. color = Color(28, 35, 61, 255),
  1043. model = {"models/fbi_pack/fbi_08.mdl"},
  1044. description = [[You are a government offical, you need to follow all rockford laws.]],
  1045. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_ticketbook", "door_ram", "stungun", "weapon_r_handcuffs", "tfa_honeybadger", "tfa_mp5sd", "tfa_usp", "tfa_remington870", "tfa_aw50"},
  1046. command = "fbih",
  1047. max = 1,
  1048. salary = 350,
  1049. admin = 0,
  1050. vote = false,
  1051. hasLicense = true,
  1052. candemote = true,
  1053. sortOrder = 59,
  1054. category = "FBI",
  1055. PlayerSpawn = function(ply)
  1056. ply:SetMaxHealth(100)
  1057. ply:SetHealth(100)
  1058. ply:SetArmor(150)
  1059. end
  1060. })
  1061. --EMS
  1062. TEAM_EMSA = DarkRP.createJob("EMT", {
  1063. color = Color(12, 65, 145, 255),
  1064. model = {"models/player/guard_pack/guard_01.mdl"},
  1065. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1066. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1067. command = "emsa",
  1068. max = 5,
  1069. salary = 300,
  1070. admin = 0,
  1071. vote = false,
  1072. hasLicense = true,
  1073. candemote = true,
  1074. sortOrder = 60,
  1075. category = "EMS",
  1076. PlayerSpawn = function(ply)
  1077. ply:SetMaxHealth(100)
  1078. ply:SetHealth(100)
  1079. ply:SetArmor(100)
  1080. end
  1081. })
  1082. TEAM_EMSB = DarkRP.createJob("EMS Paramedic", {
  1083. color = Color(12, 65, 145, 255),
  1084. model = {"models/player/guard_pack/guard_02.mdl"},
  1085. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1086. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1087. command = "emsb",
  1088. max = 5,
  1089. salary = 300,
  1090. admin = 0,
  1091. vote = false,
  1092. hasLicense = true,
  1093. candemote = true,
  1094. sortOrder = 61,
  1095. category = "EMS",
  1096. PlayerSpawn = function(ply)
  1097. ply:SetMaxHealth(100)
  1098. ply:SetHealth(100)
  1099. ply:SetArmor(100)
  1100. end
  1101. })
  1102. TEAM_EMSC = DarkRP.createJob("EMS Head Paramedic", {
  1103. color = Color(12, 65, 145, 255),
  1104. model = {"models/player/guard_pack/guard_03.mdl"},
  1105. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1106. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1107. command = "emsc",
  1108. max = 5,
  1109. salary = 300,
  1110. admin = 0,
  1111. vote = false,
  1112. hasLicense = true,
  1113. candemote = true,
  1114. sortOrder = 63,
  1115. category = "EMS",
  1116. PlayerSpawn = function(ply)
  1117. ply:SetMaxHealth(100)
  1118. ply:SetHealth(100)
  1119. ply:SetArmor(100)
  1120. end
  1121. })
  1122. TEAM_EMSD = DarkRP.createJob("EMS Lieutenant", {
  1123. color = Color(12, 65, 145, 255),
  1124. model = {"models/player/guard_pack/guard_05.mdl"},
  1125. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1126. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1127. command = "emsd",
  1128. max = 5,
  1129. salary = 300,
  1130. admin = 0,
  1131. vote = false,
  1132. hasLicense = true,
  1133. candemote = true,
  1134. sortOrder = 64,
  1135. category = "EMS",
  1136. PlayerSpawn = function(ply)
  1137. ply:SetMaxHealth(100)
  1138. ply:SetHealth(100)
  1139. ply:SetArmor(100)
  1140. end
  1141. })
  1142. TEAM_EMSE = DarkRP.createJob("EMS Captain", {
  1143. color = Color(12, 65, 145, 255),
  1144. model = {"models/player/guard_pack/guard_06.mdl"},
  1145. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1146. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1147. command = "emse",
  1148. max = 3,
  1149. salary = 300,
  1150. admin = 0,
  1151. vote = false,
  1152. hasLicense = true,
  1153. candemote = true,
  1154. sortOrder = 65,
  1155. category = "EMS",
  1156. PlayerSpawn = function(ply)
  1157. ply:SetMaxHealth(100)
  1158. ply:SetHealth(100)
  1159. ply:SetArmor(100)
  1160. end
  1161. })
  1162. TEAM_EMSF = DarkRP.createJob("EMS Deputy", {
  1163. color = Color(12, 65, 145, 255),
  1164. model = {"models/player/guard_pack/guard_07.mdl"},
  1165. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1166. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1167. command = "emsf",
  1168. max = 2,
  1169. salary = 300,
  1170. admin = 0,
  1171. vote = false,
  1172. hasLicense = true,
  1173. candemote = true,
  1174. sortOrder = 66,
  1175. category = "EMS",
  1176. PlayerSpawn = function(ply)
  1177. ply:SetMaxHealth(100)
  1178. ply:SetHealth(100)
  1179. ply:SetArmor(100)
  1180. end
  1181. })
  1182. TEAM_EMSG = DarkRP.createJob("EMS Assistant Chief", {
  1183. color = Color(12, 65, 145, 255),
  1184. model = {"models/player/guard_pack/guard_08.mdl"},
  1185. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1186. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1187. command = "emsg",
  1188. max = 1,
  1189. salary = 300,
  1190. admin = 0,
  1191. vote = false,
  1192. hasLicense = true,
  1193. candemote = true,
  1194. sortOrder = 67,
  1195. category = "EMS",
  1196. PlayerSpawn = function(ply)
  1197. ply:SetMaxHealth(100)
  1198. ply:SetHealth(100)
  1199. ply:SetArmor(100)
  1200. end
  1201. })
  1202. TEAM_EMSH = DarkRP.createJob("EMS Medical Chief", {
  1203. color = Color(12, 65, 145, 255),
  1204. model = {"models/player/guard_pack/guard_09.mdl"},
  1205. description = [[You need to rush to revive people, no one can kill you, if they do it is FailRP.]],
  1206. weapons = {"vc_wrench", "weapon_pass_rp", "weapon_defibrillator", "med_kit"},
  1207. command = "emsh",
  1208. max = 1,
  1209. salary = 300,
  1210. admin = 0,
  1211. vote = false,
  1212. hasLicense = true,
  1213. candemote = true,
  1214. sortOrder = 68,
  1215. category = "EMS",
  1216. PlayerSpawn = function(ply)
  1217. ply:SetMaxHealth(100)
  1218. ply:SetHealth(100)
  1219. ply:SetArmor(100)
  1220. end
  1221. })
  1222. --Judical
  1223. TEAM_JUDICALA = DarkRP.createJob("Jury", {
  1224. color = Color(103, 119, 255, 255),
  1225. model = {"models/player/suits/male_07_open_tie.mdl"},
  1226. description = [[You make all the major desision, if people are in jail or not.]],
  1227. weapons = {"vc_wrench", "weapon_pass_rp" },
  1228. command = "judicalb",
  1229. max = 6,
  1230. salary = 50,
  1231. admin = 0,
  1232. vote = false,
  1233. hasLicense = true,
  1234. candemote = true,
  1235. sortOrder = 70,
  1236. category = "Judical",
  1237. PlayerSpawn = function(ply)
  1238. ply:SetMaxHealth(100)
  1239. ply:SetHealth(100)
  1240. ply:SetArmor(0)
  1241. end
  1242. })
  1243. TEAM_JUDICALB = DarkRP.createJob("Defendant", {
  1244. color = Color(103, 119, 255, 255),
  1245. model = {"models/suits/male_09_open_waistcoat.mdl"},
  1246. description = [[You try to protect the person who the police is arresting.]],
  1247. weapons = {"vc_wrench", "weapon_pass_rp" },
  1248. command = "judicalbc",
  1249. max = 2,
  1250. salary = 350,
  1251. admin = 0,
  1252. vote = false,
  1253. hasLicense = true,
  1254. candemote = true,
  1255. sortOrder = 71,
  1256. category = "Judical",
  1257. PlayerSpawn = function(ply)
  1258. ply:SetMaxHealth(100)
  1259. ply:SetHealth(100)
  1260. ply:SetArmor(0)
  1261. end
  1262. })
  1263. TEAM_JUDICALC = DarkRP.createJob("Prosecuter", {
  1264. color = Color(103, 119, 255, 255),
  1265. model = {"models/humans/suits2/male_05.mdl"},
  1266. description = [[You try to lock him up.]],
  1267. weapons = {"vc_wrench", "weapon_pass_rp" },
  1268. command = "judicalc",
  1269. max = 2,
  1270. salary = 350,
  1271. admin = 0,
  1272. vote = false,
  1273. hasLicense = true,
  1274. candemote = true,
  1275. sortOrder = 72,
  1276. category = "Judical",
  1277. PlayerSpawn = function(ply)
  1278. ply:SetMaxHealth(100)
  1279. ply:SetHealth(100)
  1280. ply:SetArmor(0)
  1281. end
  1282. })
  1283. TEAM_JUDICALD = DarkRP.createJob("Protecting Judical Officer", {
  1284. color = Color(103, 119, 255, 255),
  1285. model = {"models/player/uk_police/uk_police_09.mdl"},
  1286. description = [[Protect the judge at all costs.]],
  1287. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_colt1911"},
  1288. command = "judicald",
  1289. max = 1,
  1290. salary = 150,
  1291. admin = 0,
  1292. vote = false,
  1293. hasLicense = true,
  1294. candemote = true,
  1295. sortOrder = 73,
  1296. category = "Judical",
  1297. PlayerSpawn = function(ply)
  1298. ply:SetMaxHealth(100)
  1299. ply:SetHealth(100)
  1300. ply:SetArmor(250)
  1301. end
  1302. })
  1303. TEAM_JUDICALE = DarkRP.createJob("Judge", {
  1304. color = Color(103, 119, 255, 255),
  1305. model = {"models/player/donald_trump.mdl"},
  1306. description = [[You make sure the courthouse does not run into chaos.]],
  1307. weapons = {"vc_wrench", "weapon_pass_rp", "tfa_colt1911"},
  1308. command = "judicale",
  1309. max = 1,
  1310. salary = 500,
  1311. admin = 0,
  1312. vote = false,
  1313. hasLicense = true,
  1314. candemote = true,
  1315. sortOrder = 74,
  1316. category = "Judical",
  1317. PlayerSpawn = function(ply)
  1318. ply:SetMaxHealth(100)
  1319. ply:SetHealth(100)
  1320. ply:SetArmor(0)
  1321. end
  1322. })
  1323. --Custom Classes
  1324. TEAM_CUSTOMA = DarkRP.createJob("Rockford Military", {
  1325. color = Color(255, 255, 255, 255),
  1326. model = {"models/combine_sniper.mdl"},
  1327. description = [[Custom Job.]],
  1328. weapons = {"vc_wrench", "weapon_pass_rp" },
  1329. command = "customa",
  1330. max = 2,
  1331. salary = 500,
  1332. admin = 0,
  1333. vote = false,
  1334. hasLicense = true,
  1335. candemote = true,
  1336. sortOrder = 80,
  1337. category = "Custom Classes",
  1338. PlayerSpawn = function(ply)
  1339. ply:SetMaxHealth(100)
  1340. ply:SetHealth(100)
  1341. ply:SetArmor(100)
  1342. end
  1343. })
  1344. --Gangs
  1345. TEAM_GANGA = DarkRP.createJob("Blood Shot Caller", {
  1346. color = Color(0, 0, 0, 255),
  1347. model = {"models/player/bloodz/slow_1.mdl"},
  1348. description = [[Your enemy are the crips, eliminate them at all costs.]],
  1349. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick"},
  1350. command = "ganga",
  1351. max = 10,
  1352. salary = 0,
  1353. admin = 0,
  1354. vote = false,
  1355. hasLicense = false,
  1356. candemote = true,
  1357. sortOrder = 81,
  1358. category = "Gangs",
  1359. PlayerSpawn = function(ply)
  1360. ply:SetMaxHealth(100)
  1361. ply:SetHealth(100)
  1362. ply:SetArmor(0)
  1363. end
  1364. })
  1365. TEAM_GANGB = DarkRP.createJob("Blood Hood Rat", {
  1366. color = Color(0, 0, 0, 255),
  1367. model = {"models/player/bloodz/slow_2.mdl"},
  1368. description = [[Your enemy are the crips, eliminate them at all costs.]],
  1369. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick"},
  1370. command = "gangb",
  1371. max = 10,
  1372. salary = 0,
  1373. admin = 0,
  1374. vote = false,
  1375. hasLicense = false,
  1376. candemote = true,
  1377. sortOrder = 82,
  1378. category = "Gangs",
  1379. PlayerSpawn = function(ply)
  1380. ply:SetMaxHealth(100)
  1381. ply:SetHealth(100)
  1382. ply:SetArmor(0)
  1383. end
  1384. })
  1385. TEAM_GANGC = DarkRP.createJob("Blood Kingpin", {
  1386. color = Color(0, 0, 0, 255),
  1387. model = {"models/player/bloodz/slow_3.mdl"},
  1388. description = [[Your enemy are the crips, eliminate them at all costs.]],
  1389. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick", "tfa_1897winchester"},
  1390. command = "gangc",
  1391. max = 10,
  1392. salary = 0,
  1393. admin = 0,
  1394. vote = false,
  1395. hasLicense = false,
  1396. candemote = true,
  1397. sortOrder = 83,
  1398. category = "Gangs",
  1399. PlayerSpawn = function(ply)
  1400. ply:SetMaxHealth(100)
  1401. ply:SetHealth(100)
  1402. ply:SetArmor(0)
  1403. end
  1404. })
  1405. TEAM_GANGD = DarkRP.createJob("Crip Shot Caller", {
  1406. color = Color(0, 0, 0, 255),
  1407. model = {"models/player/cripz/slow_1.mdl"},
  1408. description = [[Your enemy are the bloods, eliminate them at all costs.]],
  1409. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick"},
  1410. command = "gangd",
  1411. max = 10,
  1412. salary = 0,
  1413. admin = 0,
  1414. vote = false,
  1415. hasLicense = false,
  1416. candemote = true,
  1417. sortOrder = 84,
  1418. category = "Gangs",
  1419. PlayerSpawn = function(ply)
  1420. ply:SetMaxHealth(100)
  1421. ply:SetHealth(100)
  1422. ply:SetArmor(0)
  1423. end
  1424. })
  1425. TEAM_GANGE = DarkRP.createJob("Crip Hood Rat", {
  1426. color = Color(0, 0, 0, 255),
  1427. model = {"models/player/cripz/slow_2.mdl"},
  1428. description = [[Your enemy are the bloods, eliminate them at all costs.]],
  1429. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick"},
  1430. command = "gange",
  1431. max = 10,
  1432. salary = 0,
  1433. admin = 0,
  1434. vote = false,
  1435. hasLicense = false,
  1436. candemote = true,
  1437. sortOrder = 85,
  1438. category = "Gangs",
  1439. PlayerSpawn = function(ply)
  1440. ply:SetMaxHealth(100)
  1441. ply:SetHealth(100)
  1442. ply:SetArmor(0)
  1443. end
  1444. })
  1445. TEAM_GANGF = DarkRP.createJob("Crip Kingpin", {
  1446. color = Color(0, 0, 0, 255),
  1447. model = {"models/player/cripz/slow_3.mdl"},
  1448. description = [[Your enemy are the bloods, eliminate them at all costs.]],
  1449. weapons = {"vc_wrench", "weapon_pass_rp", "lockpick", "tfa_1897winchester"},
  1450. command = "gangf",
  1451. max = 10,
  1452. salary = 0,
  1453. admin = 0,
  1454. vote = false,
  1455. hasLicense = false,
  1456. candemote = true,
  1457. sortOrder = 86,
  1458. category = "Gangs",
  1459. PlayerSpawn = function(ply)
  1460. ply:SetMaxHealth(100)
  1461. ply:SetHealth(100)
  1462. ply:SetArmor(0)
  1463. end
  1464. })
  1465.  
  1466.  
  1467.  
  1468.  
  1469.  
  1470.  
  1471.  
  1472.  
  1473.  
  1474.  
  1475.  
  1476.  
  1477.  
  1478.  
  1479.  
  1480.  
  1481.  
  1482.  
  1483.  
  1484.  
  1485.  
  1486.  
  1487.  
  1488.  
  1489. TEAM_ADMINISTRATOR = DarkRP.createJob("Administration", {
  1490. color = Color(220,20,60),
  1491. model = {"models/player/anon/anon.mdl"},
  1492. description = [[You are the administrator. To contact one of these people @ (message) .]],
  1493. weapons = {"weapon_keypadchecker","arrest_stick","stunstick","unarrest_stick"},
  1494. command = "staff",
  1495. max = 10,
  1496. salary = 300,
  1497. admin = 1,
  1498. vote = false,
  1499. hasLicense = true,
  1500. sortOrder = 100,
  1501. category = "Staff",
  1502. })
  1503. --[[---------------------------------------------------------------------------
  1504. Define which team joining players spawn into and what team you change to if demoted
  1505. ---------------------------------------------------------------------------]]
  1506. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  1507. --[[---------------------------------------------------------------------------
  1508. Define which teams belong to civil protection
  1509. Civil protection can set warrants, make people wanted and do some other police related things
  1510. ---------------------------------------------------------------------------]]
  1511. GAMEMODE.CivilProtection = {
  1512. [TEAM_POLICE] = true,
  1513. [TEAM_CHIEF] = true,
  1514. [TEAM_MAYOR] = true,
  1515. }
  1516. --[[---------------------------------------------------------------------------
  1517. Jobs that are hitmen (enables the hitman menu)ss
  1518. ---------------------------------------------------------------------------]]
  1519. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement