Advertisement
Guest User

Untitled

a guest
Jul 30th, 2016
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.35 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom jobs.
  6. This file should also contain jobs from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the job to this file and edit it.
  10.  
  11. The default jobs can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  16.  
  17.  
  18. Add jobs under the following line:
  19. ---------------------------------------------------------------------------]]
  20.  
  21. TEAM_CITIZEN = DarkRP.createJob("Civilian", {
  22. color = Color(0, 255, 0, 255),
  23. model = {
  24. "models/player/Group01/Female_01.mdl",
  25. "models/player/Group01/Female_02.mdl",
  26. "models/player/Group01/Female_03.mdl",
  27. "models/player/Group01/Female_04.mdl",
  28. "models/player/Group01/Female_06.mdl",
  29. "models/player/group01/male_01.mdl",
  30. "models/player/Group01/Male_02.mdl",
  31. "models/player/Group01/male_03.mdl",
  32. "models/player/Group01/Male_04.mdl",
  33. "models/player/Group01/Male_05.mdl",
  34. "models/player/Group01/Male_06.mdl",
  35. "models/player/Group01/Male_07.mdl",
  36. "models/player/Group01/Male_08.mdl",
  37. "models/player/Group01/Male_09.mdl"
  38. },
  39. description = [[The Civilian is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]],
  40. weapons = {},
  41. command = "civilian",
  42. max = 0,
  43. salary = 50,
  44. admin = 0,
  45. vote = false,
  46. hasLicense = false,
  47. candemote = false,
  48. category = "Citizens",
  49. CanPlayerSuicide = function(ply) return false end,
  50. })
  51.  
  52. TEAM_HOBO = DarkRP.createJob("Hobo", {
  53. color = Color(80, 45, 0, 255),
  54. model = "models/player/corpse1.mdl",
  55. description = [[The lowest member of society. Everybody laughs at you.
  56. You have no home.
  57. Beg for your food and money
  58. Sing for everyone who passes to get money
  59. Make your own wooden home somewhere in a corner or outside someone else's door]],
  60. weapons = {"weapon_bugbait", "weapon_angryhobo"},
  61. command = "hobo",
  62. max = 8,
  63. salary = 0,
  64. admin = 0,
  65. vote = false,
  66. hasLicense = false,
  67. candemote = false,
  68. category = "Citizens",
  69. CanPlayerSuicide = function(ply) return false end,
  70. })
  71.  
  72. TEAM_KINGHOBO = DarkRP.createJob("King Hobo", {
  73. color = Color(50, 30, 0, 255),
  74. model = "models/player/charple.mdl",
  75. description = [[The lowest member of society. Everybody laughs at you.
  76. You have no home.
  77. Beg for your food and money
  78. Sing for everyone who passes to get money
  79. Make your own wooden home somewhere in a corner or outside someone else's door
  80. VIP Only!
  81. Can slap people across the map and through bottles also earns 1$ paycheck.]],
  82. weapons = {"weapon_bugbait", "slappers", "weapon_angryhobo"},
  83. command = "kinghobo",
  84. max = 1,
  85. salary = 1,
  86. admin = 0,
  87. vote = false,
  88. hasLicense = false,
  89. candemote = false,
  90. category = "Citizens",
  91. CanPlayerSuicide = function(ply) return false end,
  92. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  93. CustomCheckFailMsg = "This is a VIP only Job!",
  94. })
  95.  
  96. TEAM_GUARD = DarkRP.createJob("Guard", {
  97. color = Color(35, 111, 111, 255),
  98. model = "models/player/odessa.mdl",
  99. description = [[You are a guard. Guard peoples homes, pets and even players.]],
  100. weapons = {"stunstick"},
  101. command = "guard",
  102. max = 4,
  103. salary = 300,
  104. admin = 0,
  105. vote = false,
  106. hasLicense = true,
  107. candemote = false,
  108. category = "Citizens",
  109. CanPlayerSuicide = function(ply) return false end,
  110. })
  111.  
  112. TEAM_SPY = DarkRP.createJob("Spy", {
  113. color = Color(80, 114, 219, 255),
  114. model = "models/player/barney.mdl",
  115. description = [[The spy class is the only class that can join parties take information and sell it to
  116. other parties to help them raid. Also is one of the only classes that has climb swep without donating for
  117. VIP.]],
  118. weapons = {"climb_swep2"},
  119. command = "spy",
  120. max = 4,
  121. salary = 200,
  122. admin = 0,
  123. vote = false,
  124. hasLicense = true,
  125. candemote = false,
  126. category = "Citizens",
  127. CanPlayerSuicide = function(ply) return false end,
  128. })
  129.  
  130. TEAM_STRIPPER = DarkRP.createJob("Stripper", {
  131. color = Color(255, 0, 191, 255),
  132. model = "models/captainbigbutt/vocaloid/miku_sacura.mdl",
  133. description = [[Be the sexy slut everyone calls you. Able to slap and
  134. give lapdances for money anytime, no special adverts but you have
  135. the slappers to spank people when they need it! ;)]],
  136. weapons = {"slappers"},
  137. command = "stripper",
  138. max = 4,
  139. salary = 300,
  140. admin = 0,
  141. vote = false,
  142. hasLicense = false,
  143. candemote = false,
  144. category = "Citizens",
  145. CanPlayerSuicide = function(ply) return false end,
  146. })
  147.  
  148. TEAM_FARMER = DarkRP.createJob("Farmer", {
  149. color = Color(255, 0, 0, 255),
  150. model = {
  151. "models/player/group02/male_02.mdl",
  152. "models/player/group02/male_04.mdl",
  153. "models/player/group02/male_06.mdl",
  154. "models/player/group02/male_06.mdl"
  155. },
  156. description = [[Buy seeds and earn from plants.]],
  157. weapons = {},
  158. command = "farmer",
  159. max = 4,
  160. salary = 400,
  161. admin = 0,
  162. vote = false,
  163. category = "Citizens",
  164. CanPlayerSuicide = function(ply) return false end,
  165. hasLicense = false
  166. })
  167.  
  168. TEAM_PET = DarkRP.createJob("Pet", {
  169. color = Color(0, 255, 50, 255),
  170. model = {
  171. "models/player_eevee.mdl",
  172. "models/player_espeon.mdl",
  173. "models/player_umbreon.mdl",
  174. "models/player_flareon.mdl",
  175. "models/player_glaceon.mdl",
  176. "models/player_leafeon.mdl",
  177. "models/player_jolteon.mdl",
  178. "models/player_vaporeon.mdl",
  179. "models/player_sylveon.mdl",
  180. "models/player_shinysylveon.mdl"
  181. },
  182. description = [[Be a pet, the only class with a non-human like model and the Weak BiteSwep. Join a party
  183. and claim a owner to take care of you.]],
  184. weapons = {"weapon_pet_weak"},
  185. command = "pet",
  186. max = 4,
  187. salary = 0,
  188. admin = 0,
  189. vote = false,
  190. hasLicense = false,
  191. candemote = false,
  192. category = "Citizens",
  193. CanPlayerSuicide = function(ply) return false end,
  194. PlayerCanPickupWeapon = function(ply,wep) if not table.HasValue(ply:getJobTable().weapons,wep:GetClass()) then return false end end,
  195. })
  196.  
  197. TEAM_BANKMANAGER = DarkRP.createJob("Bank Manager", {
  198. color = Color(105, 105, 105, 255),
  199. model = {
  200. "models/player/BankGuard/male_01.mdl",
  201. "models/player/BankGuard/male_02.mdl",
  202. "models/player/BankGuard/male_03.mdl",
  203. "models/player/BankGuard/male_04.mdl",
  204. "models/player/BankGuard/male_05.mdl",
  205. "models/player/BankGuard/male_06.mdl",
  206. "models/player/BankGuard/male_07.mdl",
  207. "models/player/BankGuard/male_08.mdl",
  208. "models/player/BankGuard/male_09.mdl"
  209. },
  210. description = [[Guard the bank from anyone trying to steal money. Manage and Build the Bank Up! VIP Only!]],
  211. weapons = {"stunstick", "m9k_hk45", "weaponchecker"},
  212. command = "bankmanager",
  213. max = 1,
  214. salary = 1200,
  215. admin = 0,
  216. vote = false,
  217. hasLicense = true,
  218. ammo = {
  219. ["pistol"] = 320,
  220. },
  221. category = "Citizens",
  222. CanPlayerSuicide = function(ply) return false end,
  223. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  224. CustomCheckFailMsg = "This is a VIP only Job!",
  225. PlayerLoadout = function(ply) ply:SetArmor(150) end,
  226. })
  227.  
  228. TEAM_BANKGUARD = DarkRP.createJob("Bank Guard", {
  229. color = Color(105, 105, 105, 255),
  230. model = {
  231. "models/player/BankGuard/male_01.mdl",
  232. "models/player/BankGuard/male_02.mdl",
  233. "models/player/BankGuard/male_03.mdl",
  234. "models/player/BankGuard/male_04.mdl",
  235. "models/player/BankGuard/male_05.mdl",
  236. "models/player/BankGuard/male_06.mdl",
  237. "models/player/BankGuard/male_07.mdl",
  238. "models/player/BankGuard/male_08.mdl",
  239. "models/player/BankGuard/male_09.mdl"
  240. },
  241. description = [[Guard the bank from anyone trying to steal money.]],
  242. weapons = {"stunstick", "weaponchecker", "m9k_hk45"},
  243. command = "bankguard",
  244. max = 5,
  245. salary = 1000,
  246. admin = 0,
  247. vote = false,
  248. hasLicense = true,
  249. category = "Citizens",
  250. CanPlayerSuicide = function(ply) return false end,
  251. })
  252.  
  253. TEAM_MAYOR = DarkRP.createJob("Mayor", {
  254. color = Color(255, 0, 0, 255),
  255. model = "models/player/breen.mdl",
  256. description = [[The Mayor of the city creates laws to govern the city.
  257. If you are the mayor you may create and accept warrants.
  258. Type /wanted <name> to warrant a player.
  259. Type /lockdown initiate a lockdown of the city.
  260. Everyone must be inside during a lockdown.
  261. The cops patrol the area.
  262. /unlockdown to end a lockdown
  263. Is allowed to own small arm weapons like pistols.]],
  264. weapons = {},
  265. command = "mayor",
  266. max = 1,
  267. salary = 500,
  268. admin = 0,
  269. vote = true,
  270. hasLicense = true,
  271. mayor = true,
  272. category = "Government Forces",
  273. CanPlayerSuicide = function(ply) return false end,
  274. PlayerDeath = function(ply, weapon, killer)
  275. ply:teamBan()
  276. ply:changeTeam(GAMEMODE.DefaultTeam, true)
  277. if killer:IsPlayer() then
  278. DarkRP.notifyAll(0, 4, "The mayor has been killed and is therefor demoted.")
  279. else
  280. DarkRP.notifyAll(0, 4, "The mayor has died and is therefor demoted.")
  281. end
  282. end,
  283. })
  284.  
  285. TEAM_SECRETSERVICE = DarkRP.createJob("Secret Service", {
  286. color = Color(150, 0, 255, 255),
  287. model = {
  288. "models/player/smith.mdl"
  289. },
  290. description = [[The Secret Service is to protect the mayor at all times.
  291. Dont leave his side, you live for him, you die for him.
  292. Not helping the mayor when pd raid or threat is FailRP.
  293. VIP Only, starts with Ares Strike and has 150 Armor!]],
  294. weapons = {"weapon_cuff_police", "unarrest_stick", "m9k_m16a4_acog", "weapon_stungun", "stunstick", "door_ram", "weaponchecker"},
  295. command = "secretservice",
  296. max = 2,
  297. salary = 275,
  298. admin = 0,
  299. vote = false,
  300. hasLicense = true,
  301. ammo = {
  302. ["ar2"] = 320,
  303. ["tazer"] = 4,
  304. },
  305. category = "Government Forces",
  306. CanPlayerSuicide = function(ply) return false end,
  307. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  308. CustomCheckFailMsg = "This is a VIP only Job!",
  309. PlayerLoadout = function(ply) ply:SetArmor(150) end,
  310. })
  311.  
  312. TEAM_ELITESWAT = DarkRP.createJob("Elite SWAT", {
  313. color = Color(0, 0, 255, 255),
  314. model = {
  315. "models/player/PMC_4/PMC__04.mdl",
  316. "models/player/PMC_4/PMC__05.mdl",
  317. "models/player/PMC_1/PMC__11.mdl",
  318. "models/player/PMC_1/PMC__09.mdl",
  319. "models/player/PMC_1/PMC__08.mdl",
  320. "models/player/PMC_1/PMC__07.mdl",
  321. "models/player/urban.mdl",
  322. "models/player/swat.mdl",
  323. "models/player/riot.mdl"
  324. },
  325. description = [[The SWAT is a unit that enforces the law with force.
  326. Coordinate the police force to enforce law in the city.
  327. Use cuffs to arrest a player and put them in jail.
  328. Bash a player with a stunstick and they may learn to obey the law.
  329. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  330. Type /wanted <name> to alert the public to the presence of a criminal.
  331. VIP Only M9K Shotgun and Light machine gun.]],
  332. weapons = {"weapon_cuff_police", "unarrest_stick", "m9k_mossberg590", "weapon_stungun", "m9k_ares_shrike", "stunstick", "door_ram", "weaponchecker"},
  333. command = "eliteswat",
  334. max = 3,
  335. salary = 275,
  336. admin = 0,
  337. vote = false,
  338. hasLicense = true,
  339. ammo = {
  340. ["ar2"] = 320,
  341. ["SniperPenetratedRound"] = 20,
  342. ["tazer"] = 4,
  343. },
  344. category = "Government Forces",
  345. CanPlayerSuicide = function(ply) return false end,
  346. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  347. CustomCheckFailMsg = "This is a VIP only Job!",
  348. PlayerLoadout = function(ply) ply:SetArmor(150) end,
  349. })
  350.  
  351. TEAM_SWAT = DarkRP.createJob("SWAT", {
  352. color = Color(0, 10, 255, 255),
  353. model = {
  354. "models/player/urban.mdl",
  355. "models/player/swat.mdl",
  356. "models/player/riot.mdl",
  357. "models/player/PMC_4/PMC__05.mdl",
  358. "models/player/PMC_1/PMC__11.mdl",
  359. "models/player/PMC_1/PMC__09.mdl",
  360. "models/player/PMC_1/PMC__08.mdl",
  361. "models/player/PMC_1/PMC__07.mdl"
  362. },
  363. description = [[The SWAT is a unit that enforces the law with force.
  364. Coordinate the police force to enforce law in the city.
  365. Use cuffs to arrest a player and put them in jail.
  366. Bash a player with a stunstick and they may learn to obey the law.
  367. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  368. Type /wanted <name> to alert the public to the presence of a criminal.]],
  369. weapons = {"weapon_cuff_police", "unarrest_stick", "m9k_m4a1", "stunstick", "door_ram", "weaponchecker", "weapon_stungun"},
  370. command = "swat",
  371. max = 6,
  372. salary = 210,
  373. admin = 0,
  374. vote = true,
  375. hasLicense = true,
  376. ammo = {
  377. ["pistol"] = 120,
  378. ["tazer"] = 4,
  379. },
  380. category = "Government Forces",
  381. CanPlayerSuicide = function(ply) return false end,
  382. })
  383.  
  384. TEAM_CHIEF = DarkRP.createJob("Police Chief", {
  385. color = Color(0, 50, 255, 255),
  386. model = "models/player/PMC_4/PMC__01.mdl",
  387. description = [[The Chief is the leader of the Civil Protection unit.
  388. Coordinate the police force to enforce law in the city.
  389. Use cuffs to arrest a player and put them in jail.
  390. Bash a player with a stunstick and they may learn to obey the law.
  391. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  392. Type /wanted <name> to alert the public to the presence of a criminal.]],
  393. weapons = {"weapon_cuff_police", "unarrest_stick", "m9k_usp", "stunstick", "door_ram", "weaponchecker", "weapon_stungun"},
  394. command = "chief",
  395. max = 1,
  396. salary = 250,
  397. admin = 0,
  398. vote = true,
  399. hasLicense = true,
  400. ammo = {
  401. ["pistol"] = 120,
  402. ["tazer"] = 4,
  403. },
  404. category = "Government Forces",
  405. CanPlayerSuicide = function(ply) return false end,
  406. })
  407.  
  408. TEAM_POLICE = DarkRP.createJob("Police Officer", {
  409. color = Color(0, 50, 255, 255),
  410. model = {"models/player/santosrp/Male_02_santosrp.mdl", "models/player/santosrp/Male_04_santosrp.mdl", "models/player/santosrp/Male_05_santosrp.mdl", "models/player/santosrp/Male_06_santosrp.mdl", "models/player/santosrp/Male_07_santosrp.mdl", "models/player/santosrp/Male_08_santosrp.mdl", "models/player/santosrp/Male_09_santosrp.mdl"},
  411. description = [[The protector of every citizen that lives in the city.
  412. You have the power to arrest criminals and protect innocents.
  413. Use cuffs to arrest a player and put them in jail.
  414. Bash a player with a stunstick and they may learn to obey the law.
  415. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  416. The Battering Ram can also unfreeze frozen props (if enabled).
  417. Type /wanted <name> to alert the public to the presence of a criminal.]],
  418. weapons = {"weapon_cuff_police", "unarrest_stick", "m9k_hk45", "stunstick", "door_ram", "weaponchecker", "weapon_stungun"},
  419. command = "cp",
  420. max = 6,
  421. salary = 150,
  422. admin = 0,
  423. vote = false,
  424. hasLicense = true,
  425. ammo = {
  426. ["pistol"] = 60,
  427. ["tazer"] = 4,
  428. },
  429. category = "Government Forces",
  430. CanPlayerSuicide = function(ply) return false end,
  431. })
  432.  
  433. TEAM_POLICEDOG = DarkRP.createJob("Police Dog", {
  434. color = Color(0, 50, 255, 255),
  435. model = "models/player_amaterasuclosedmouth.mdl",
  436. description = [[Be a pet, the only class with a non-human like model and the Police BiteSwep. Join a party
  437. and claim a owner to take care of you. VIP Only. Biteswep does 45 Damage]],
  438. weapons = {"weapon_pet"},
  439. command = "policedog",
  440. max = 3,
  441. salary = 0,
  442. admin = 0,
  443. vote = false,
  444. hasLicense = true,
  445. candemote = false,
  446. category = "Government Forces",
  447. CanPlayerSuicide = function(ply) return false end,
  448. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  449. CustomCheckFailMsg = "This is a VIP only Job!",
  450. PlayerCanPickupWeapon = function(ply,wep) if not table.HasValue(ply:getJobTable().weapons,wep:GetClass()) then return false end end,
  451. })
  452.  
  453. TEAM_ELITETHIEF = DarkRP.createJob("Elite Thief", {
  454. color = Color(70, 255, 0, 255),
  455. model = {
  456. "models/player/Suits/robber_open.mdl",
  457. "models/player/Suits/robber_shirt.mdl",
  458. "models/player/Suits/robber_shirt_2.mdl",
  459. "models/player/Suits/robber_tuckedtie.mdl",
  460. "models/player/Suits/robber_tie.mdl"
  461. },
  462. description = [[The sneakys person of crime.
  463. A theif generally works for crime and only crime.
  464. Theifs go on raiding missions to steal goods and destroy valuables.
  465. VIP Only lockpick and keypad cracker.]],
  466. weapons = {"pro_lockpick", "pro_keypad_cracker"},
  467. command = "elitetheif",
  468. max = 3,
  469. salary = 225,
  470. admin = 0,
  471. vote = false,
  472. hasLicense = false,
  473. category = "Criminals",
  474. CanPlayerSuicide = function(ply) return false end,
  475. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  476. CustomCheckFailMsg = "This is a VIP only Job!",
  477. PlayerLoadout = function(ply) ply:SetArmor(100) end,
  478. })
  479.  
  480. TEAM_THIEF = DarkRP.createJob("Thief", {
  481. color = Color(150, 150, 150, 255),
  482. model = "models/player/arctic.mdl",
  483. description = [[The sneakys person of crime.
  484. A theif generally works for crime and only crime.
  485. Theifs go on raiding missions to steal goods and destroy valuables.]],
  486. weapons = {"lockpick", "keypad_cracker"},
  487. command = "theif",
  488. max = 6,
  489. salary = 125,
  490. admin = 0,
  491. vote = false,
  492. hasLicense = false,
  493. category = "Criminals",
  494. CanPlayerSuicide = function(ply) return false end,
  495. })
  496.  
  497. TEAM_ELITEHITMAN = DarkRP.createJob("Elite Hitman", {
  498. color = Color(255, 255, 0, 255),
  499. model = "models/player/lordvipes/rerc_vector/vector_cvp.mdl",
  500. description = [[The Elite Hitman takes hits from players.
  501. with these hits, they go off and find their victim and murder them.
  502. Dont get caught though, you could get arrested.
  503. each hit is $4,000 !
  504. VIP Only, Has MP7 at start!]],
  505. weapons = {"m9k_mp7", "climb_swep2", "m9k_knife"},
  506. command = "elitehitman",
  507. max = 2,
  508. salary = 175,
  509. admin = 0,
  510. vote = false,
  511. hasLicense = false,
  512. ammo = {
  513. ["smg1"] = 120
  514. },
  515. category = "Criminals",
  516. CanPlayerSuicide = function(ply) return false end,
  517. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  518. CustomCheckFailMsg = "This is a VIP only Job!",
  519. PlayerLoadout = function(ply) ply:SetArmor(100) end,
  520. })
  521.  
  522. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  523. color = Color(255, 255, 0, 255),
  524. model = "models/player/leet.mdl",
  525. description = [[The Hitman takes hits from players.
  526. with these hits, they go off and find their victim and murder them.
  527. Dont get caught though, you could get arrested.
  528. each hit is $4,000 !]],
  529. weapons = {"m9k_knife"},
  530. command = "hitman",
  531. max = 4,
  532. salary = 150,
  533. admin = 0,
  534. vote = true,
  535. hasLicense = false,
  536. category = "Criminals",
  537. CanPlayerSuicide = function(ply) return false end,
  538. })
  539.  
  540. TEAM_TERRORLEADER = DarkRP.createJob("Terrorist Leader", {
  541. color = Color(255, 50, 50, 255),
  542. model = "models/player/guerilla.mdl",
  543. description = [[Buy bombs for the terrorist's, also call PD War to start a mass
  544. killing of the goverment forces. Only VIP!]],
  545. weapons = {"weapon_cuff_rope", "pro_lockpick", "pro_keypad_cracker"},
  546. command = "terrorleader",
  547. max = 1,
  548. salary = 350,
  549. admin = 0,
  550. vote = false,
  551. hasLicense = false,
  552. category = "Criminals",
  553. CanPlayerSuicide = function(ply) return false end,
  554. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  555. CustomCheckFailMsg = "This is a VIP only Job!",
  556. })
  557.  
  558. TEAM_TERROR = DarkRP.createJob("Terrorist", {
  559. color = Color(255, 50, 50, 255),
  560. model = "models/player/phoenix.mdl",
  561. description = [[Terrorist can Jihad and Bomb plant, and just about anything a theif
  562. can do. So lets go kidnap, mug, raid, and most of all kill every citizen! VIP Only!]],
  563. weapons = {"weapon_cuff_rope", "keypad_cracker", "pro_lockpick"},
  564. command = "terror",
  565. max = 4,
  566. salary = 200,
  567. admin = 0,
  568. vote = false,
  569. hasLicense = false,
  570. category = "Criminals",
  571. CanPlayerSuicide = function(ply) return false end,
  572. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  573. CustomCheckFailMsg = "This is a VIP only Job!",
  574. })
  575.  
  576. TEAM_GANG = DarkRP.createJob("Gangster", {
  577. color = Color(125, 125, 125, 255),
  578. model = {
  579. "models/player/Group03/Female_01.mdl",
  580. "models/player/Group03/Female_02.mdl",
  581. "models/player/Group03/Female_03.mdl",
  582. "models/player/Group03/Female_04.mdl",
  583. "models/player/Group03/Female_06.mdl",
  584. "models/player/group03/male_01.mdl",
  585. "models/player/Group03/Male_02.mdl",
  586. "models/player/Group03/male_03.mdl",
  587. "models/player/Group03/Male_04.mdl",
  588. "models/player/Group03/Male_05.mdl",
  589. "models/player/Group03/Male_06.mdl",
  590. "models/player/Group03/Male_07.mdl",
  591. "models/player/Group03/Male_08.mdl",
  592. "models/player/Group03/Male_09.mdl"},
  593. description = [[The lowest person of crime.
  594. A gangster generally works for the Mobboss who runs the crime family.
  595. The Mob boss sets your agenda and you follow it or you might be punished.]],
  596. weapons = {"lockpick"},
  597. command = "gangster",
  598. max = 6,
  599. salary = 100,
  600. admin = 0,
  601. vote = false,
  602. hasLicense = false,
  603. category = "Criminals",
  604. CanPlayerSuicide = function(ply) return false end,
  605. })
  606.  
  607. TEAM_MOB = DarkRP.createJob("Mob boss", {
  608. color = Color(70, 70, 70, 255),
  609. model = "models/player/gman_high.mdl",
  610. description = [[The Mob boss is the boss of the criminals in the city.
  611. With his power he coordinates the gangsters and forms an efficient crime organization.
  612. He has the ability to break into houses by using a lockpick.
  613. The Mob boss posesses the ability to unarrest you.]],
  614. weapons = {"lockpick", "unarrest_stick", "keypad_cracker"},
  615. command = "mobboss",
  616. max = 1,
  617. salary = 150,
  618. admin = 0,
  619. vote = false,
  620. hasLicense = false,
  621. category = "Criminals",
  622. CanPlayerSuicide = function(ply) return false end,
  623. })
  624.  
  625. TEAM_STALKER = DarkRP.createJob("Stalker", {
  626. color = Color(70, 70, 70, 255),
  627. model = "models/player/lordvipes/slenderman/slenderman_playermodel_cvp.mdl",
  628. description = [[The Stalker is one of the most creepy players in
  629. LegendsRP, equiped with a Knife and Rope Restraint, it is easliy
  630. the most unique job in DarkRP! ]],
  631. weapons = {"m9k_knife", "weapon_cuff_rope"},
  632. command = "stalker",
  633. max = 5,
  634. salary = 150,
  635. admin = 0,
  636. vote = false,
  637. hasLicense = false,
  638. category = "Criminals",
  639. CanPlayerSuicide = function(ply) return false end,
  640. })
  641.  
  642. TEAM_ELITESTALKER = DarkRP.createJob("Elite Stalker", {
  643. color = Color(70, 70, 70, 255),
  644. model = "models/newinfec/Newhun.mdl",
  645. description = [[The Elite Stalker is one of the most creepy players in
  646. LegendsRP, equiped with a Machete, Tactical Restraint and Knockout SWEP, it is easliy
  647. the most unique job in DarkRP! VIP Only!]],
  648. weapons = {"m9k_machete", "weapon_cuff_tactical"},
  649. command = "elitestalker",
  650. max = 2,
  651. salary = 150,
  652. admin = 0,
  653. vote = false,
  654. hasLicense = false,
  655. category = "Criminals",
  656. CanPlayerSuicide = function(ply) return false end,
  657. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  658. CustomCheckFailMsg = "This is a VIP only Job!",
  659. })
  660.  
  661.  
  662. TEAM_LIGHT = DarkRP.createJob("Light Gun Dealer", {
  663. color = Color(255, 180, 0, 255),
  664. model = "models/player/monk.mdl",
  665. description = [[A Light Gun Dealer is the a person who can sell guns to other people.
  666. It is not illegal to sell these guns to the public! You wont get arrested!]],
  667. weapons = {},
  668. command = "lightgun",
  669. max = 3,
  670. salary = 75,
  671. admin = 0,
  672. vote = false,
  673. hasLicense = false,
  674. category = "Dealers",
  675. CanPlayerSuicide = function(ply) return false end,
  676. })
  677.  
  678. TEAM_HEAVY = DarkRP.createJob("Heavy Gun Dealer", {
  679. color = Color(255, 0, 90, 255),
  680. model = "models/player/eli.mdl",
  681. description = [[A Heavy Gun Dealer is a person who can sell guns to other people.
  682. Make sure you aren't caught selling illegal firearms to the public! You might get arrested!]],
  683. weapons = {},
  684. command = "heavygun",
  685. max = 3,
  686. salary = 75,
  687. admin = 0,
  688. vote = false,
  689. hasLicense = false,
  690. category = "Dealers",
  691. CanPlayerSuicide = function(ply) return false end,
  692. })
  693.  
  694. TEAM_BARTENDER = DarkRP.createJob("Bartender", {
  695. color = Color(127, 0, 95, 255),
  696. model = "models/player/hostage/hostage_03.mdl",
  697. description = [[Sell nice beverages to the players and run your own bar. You also have drinks
  698. that give special effects! VIP Only!]],
  699. weapons = {},
  700. command = "bartender",
  701. max = 1,
  702. salary = 180,
  703. admin = 0,
  704. vote = false,
  705. hasLicense = false,
  706. category = "Dealers",
  707. CanPlayerSuicide = function(ply) return false end,
  708. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  709. CustomCheckFailMsg = "This is a VIP only Job!",
  710. })
  711.  
  712. TEAM_CHEF = DarkRP.createJob("Chef", {
  713. color = Color(255, 223, 127, 255),
  714. model = {
  715. "models/fearless/chef1.mdl",
  716. "models/fearless/chef2.mdl"
  717. },
  718. description = [[Sell nice meals to players, this also could scam players with half eatten
  719. foods. Make sure you don't eat non-half eatten foods!]],
  720. weapons = {},
  721. command = "chef",
  722. max = 2,
  723. salary = 100,
  724. admin = 0,
  725. vote = false,
  726. hasLicense = false,
  727. category = "Dealers",
  728. CanPlayerSuicide = function(ply) return false end,
  729. })
  730.  
  731.  
  732. TEAM_MEDIC = DarkRP.createJob("Paramedic", {
  733. color = Color(0, 255, 190, 255),
  734. model = {
  735. "models/player/portal/Male_07_Medic.mdl",
  736. "models/player/portal/Male_06_Medic.mdl",
  737. "models/player/portal/Male_05_Medic.mdl",
  738. "models/player/portal/Male_04_Medic.mdl",
  739. "models/player/portal/Male_02_Medic.mdl",
  740. "models/player/portal/Male_08_Medic.mdl",
  741. "models/player/portal/Male_09_Medic.mdl"},
  742. description = [[With your medical knowledge you work to restore players to full health.
  743. Without a medic, people cannot be healed.
  744. Left click with the Medical Kit to heal other players.
  745. Right click with the Medical Kit to heal yourself.]],
  746. weapons = {"med_kit"},
  747. command = "medic",
  748. max = 2,
  749. salary = 150,
  750. admin = 0,
  751. vote = false,
  752. hasLicense = false,
  753. category = "Dealers",
  754. CanPlayerSuicide = function(ply) return false end,
  755. })
  756.  
  757. TEAM_DRUG = DarkRP.createJob("Meth Cook", {
  758. color = Color(0, 128, 255, 255),
  759. model = "models/npc/cdc_soldier_npc.mdl",
  760. description = [[The lowest person of crime.
  761. A meth cook generally works for the Mobboss who runs the crime family.]],
  762. weapons = {},
  763. command = "methcook",
  764. max = 3,
  765. salary = 100,
  766. admin = 0,
  767. vote = false,
  768. hasLicense = false,
  769. category = "Dealers",
  770. CanPlayerSuicide = function(ply) return false end,
  771. })
  772.  
  773. TEAM_ELITEDRUG = DarkRP.createJob("Cocaine Dealer", {
  774. color = Color(63, 127, 95, 255),
  775. model = "models/snoopdogg.mdl",
  776. description = [[Drug dealers cook Crack and sell it to crackheads on the street.
  777. Dont get caught making or selling drugs you could get arrested.
  778. Crack baking is loud be careful.]],
  779. weapons = {},
  780. command = "cocainedealer",
  781. max = 2,
  782. salary = 200,
  783. admin = 0,
  784. vote = false,
  785. hasLicense = false,
  786. category = "Dealers",
  787. CanPlayerSuicide = function(ply) return false end,
  788. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  789. CustomCheckFailMsg = "This is a VIP only Job!",
  790. })
  791.  
  792. TEAM_CINEMA = DarkRP.createJob("Cinema Owner", {
  793. color = Color(0, 255, 255, 255),
  794. model = "models/player/mossman.mdl",
  795. description = [[You own the Cinema. You can control what players watch. You can watch what you want,
  796. when you want, how you want. VIP Only Job!]],
  797. weapons = {},
  798. command = "cinema",
  799. max = 1,
  800. salary = 300,
  801. admin = 0,
  802. vote = false,
  803. hasLicense = false,
  804. category = "Dealers",
  805. CanPlayerSuicide = function(ply) return false end,
  806. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","admin","vipmod","vip","coowner","superadmin"}, ply:GetNWString("usergroup")) end,
  807. CustomCheckFailMsg = "This is a VIP only Job!",
  808. })
  809.  
  810. TEAM_STAFF = DarkRP.createJob("Staff on Duty", {
  811. color = Color(255, 150, 0, 255),
  812. model = "models/player/combine_super_soldier.mdl",
  813. description = [[Staff on Duty!]],
  814. weapons = {"unarrest_stick", "weapon_keypadchecker"},
  815. command = "staffonduty",
  816. max = 0,
  817. salary = 1500,
  818. admin = 0,
  819. vote = false,
  820. hasLicense = true,
  821. category = "Staff",
  822. customCheck = function(ply) return table.HasValue({"owner","headadmin","staffmanager","administrator","vipmod","admin", "mod", "coowner"}, ply:GetNWString("usergroup")) end,
  823. CustomCheckFailMsg = "This is a APlexRP Staff only Job!",
  824. })
  825.  
  826. -- TEAM_BEGGYTHIEF = DarkRP.createJob("[THIEF] SligWolf", {
  827. -- color = Color(127, 0, 255, 255),
  828. -- model = "models/sligwolf/robot/thirdteen.mdl",
  829. -- description = [[Beggy's Thief Class!]],
  830. -- weapons = {"climb_swep2", "pro_lockpick", "pro_keypad_cracker"},
  831. -- command = "beggythief",
  832. -- max = 1,
  833. -- salary = 5000,
  834. -- admin = 0,
  835. -- vote = false,
  836. -- hasLicense = true,
  837. -- category = "Custom",
  838. -- customCheck =function(ply)
  839. -- return ply:SteamID()=="STEAM_0:0:160884690"
  840. -- end,
  841. -- CustomCheckFailMsg = "This is Beggy's Custom Job!",
  842. -- })
  843.  
  844. TEAM_REZAULTHIEF = DarkRP.createJob("[THIEF] Optimus Prime", {
  845. color = Color(0, 0, 255, 255),
  846. model = "models/player/optimus_prime.mdl",
  847. description = [[Rezaul's Thief Class!]],
  848. weapons = {"m9k_svu", "climb_swep2", "pro_lockpick", "pro_keypad_cracker"},
  849. command = "rezaulthief",
  850. max = 1,
  851. salary = 5000,
  852. admin = 0,
  853. vote = false,
  854. hasLicense = true,
  855. category = "Custom",
  856. customCheck =function(ply)
  857. return ply:SteamID()=="STEAM_0:0:59713322"
  858. end,
  859. CustomCheckFailMsg = "This is Rezaul's Custom Job!",
  860. PlayerLoadout = function(ply) ply:SetArmor(250) end,
  861. })
  862.  
  863. TEAM_GUNZTHIEF = DarkRP.createJob("[THIEF] Fuck Me", {
  864. color = Color(0, 255, 255, 255),
  865. model = "models/captainbigbutt/vocaloid/miku_classic.mdl",
  866. description = [[Gunz Blazzinn's Thief Class!]],
  867. weapons = {"m9k_machete", "climb_swep2", "weapon_pockethealer"},
  868. command = "gunzthief",
  869. max = 1,
  870. salary = 5000,
  871. admin = 0,
  872. vote = false,
  873. hasLicense = true,
  874. category = "Custom",
  875. customCheck =function(ply)
  876. return ply:SteamID()=="STEAM_0:1:76908267"
  877. end,
  878. CustomCheckFailMsg = "This is Gunz Blazzinn's Custom Job!",
  879. PlayerLoadout = function(ply) ply:SetArmor(250) end,
  880. })
  881.  
  882. TEAM_BUFFETTHIEF = DarkRP.createJob("[THIEF] Kermit the Frog", {
  883. color = Color(0, 255, 251, 255),
  884. model = "models/player/kermit.mdl",
  885. description = [[Buffet boys-buffet.pw's Dealer Class!]],
  886. weapons = {"m9k_svu", "m9k_spas12", "climb_swep2", "lockpick", "keypad_cracker"},
  887. command = "buffetthief",
  888. max = 1,
  889. salary = 5000,
  890. admin = 0,
  891. vote = false,
  892. hasLicense = true,
  893. category = "Custom",
  894. customCheck =function(ply)
  895. return ply:SteamID()=="STEAM_0:0:57432962"
  896. end,
  897. CustomCheckFailMsg = "This is Buffet boys-buffet.pw's Custom Job!",
  898. PlayerLoadout = function(ply) ply:SetArmor(250) end,
  899. })
  900.  
  901. TEAM_BLOODSAINTHOBO = DarkRP.createJob("[HOBO] The Sun Bro Knight", {
  902. color = Color(75, 0, 160, 255),
  903. model = "models/player/knight.mdl",
  904. description = [[bloodsaint's Hobo Class!]],
  905. weapons = {"weapon_angryhobo", "slappers"},
  906. command = "bloodsainthobo",
  907. max = 1,
  908. salary = 5000,
  909. admin = 0,
  910. vote = false,
  911. hasLicense = true,
  912. category = "Custom",
  913. customCheck =function(ply)
  914. return ply:SteamID()=="STEAM_0:1:31619788"
  915. end,
  916. CustomCheckFailMsg = "This is bloodsaint's Custom Job!",
  917. })
  918.  
  919. TEAM_PAULTHIEFONE = DarkRP.createJob("[THIEF] Weebz", {
  920. color = Color(255, 105, 180, 255),
  921. model = "models/captainbigbutt/vocaloid/kuro_miku_append.mdl",
  922. description = [[Paul's Thief Class!]],
  923. weapons = {"climb_swep2", "lockpick", "keypad_cracker"},
  924. command = "paulthiefone",
  925. max = 1,
  926. salary = 5000,
  927. admin = 0,
  928. vote = false,
  929. hasLicense = true,
  930. category = "Custom",
  931. customCheck =function(ply)
  932. return ply:SteamID()=="STEAM_0:1:86571772"
  933. end,
  934. CustomCheckFailMsg = "This is Paul's Custom Job!",
  935. })
  936.  
  937. TEAM_GGTHIEF = DarkRP.createJob("[THIEF] Dean", {
  938. color = Color(255, 255, 0, 255),
  939. model = "models/captainbigbutt/vocaloid/rin.mdl",
  940. description = [[GG's Thief Class!]],
  941. weapons = {"climb_swep2", "lockpick", "keypad_cracker"},
  942. command = "ggthief",
  943. max = 1,
  944. salary = 5000,
  945. admin = 0,
  946. vote = false,
  947. hasLicense = true,
  948. category = "Custom",
  949. customCheck =function(ply)
  950. return ply:SteamID()=="STEAM_0:1:42060560"
  951. end,
  952. CustomCheckFailMsg = "This is GG's Custom Job!",
  953. })
  954.  
  955. TEAM_COTUSTHIEF = DarkRP.createJob("[THIEF] Smelly Ass Racoon", {
  956. color = Color(255, 0, 0, 255),
  957. model = "models/zambie/rocket/rocket_raccoon.mdl",
  958. description = [[Cotus's Thief Class!]],
  959. weapons = {"climb_swep2", "lockpick", "keypad_cracker"},
  960. command = "cotusthief",
  961. max = 1,
  962. salary = 5000,
  963. admin = 0,
  964. vote = false,
  965. hasLicense = true,
  966. category = "Custom",
  967. customCheck =function(ply)
  968. return ply:SteamID()=="STEAM_0:1:84727406"
  969. end,
  970. CustomCheckFailMsg = "This is Cotus's Custom Job!",
  971. })
  972.  
  973. TEAM_LOLGAMERTHIEF = DarkRP.createJob("[THIEF] the edgeling", {
  974. color = Color(0, 255, 9, 255),
  975. model = "models/pechenko_121/MUA2Deadpool.mdl",
  976. description = [[lolgamer505's Thief Class!]],
  977. weapons = {"m9k_spas12", "m9k_famas", "m9k_scoped_taurus", "climb_swep2", "pro_lockpick", "pro_keypad_cracker"},
  978. command = "lolgamerthief",
  979. max = 1,
  980. salary = 5000,
  981. admin = 0,
  982. vote = false,
  983. hasLicense = true,
  984. category = "Custom",
  985. customCheck =function(ply)
  986. return ply:SteamID()=="STEAM_0:1:85220650"
  987. end,
  988. CustomCheckFailMsg = "This is lolgamer505's Custom Job!",
  989. })
  990.  
  991. TEAM_JIMMYTHIEF = DarkRP.createJob("[THIEF] Henry Stickman", {
  992. color = Color(0, 255, 9, 255),
  993. model = "models/conex/stickguy/stickguy.mdl",
  994. description = [[FBGM Jimmy's Thief Class!]],
  995. weapons = {"m9k_scar", "m9k_deagle", "climb_swep2", "lockpick", "keypad_cracker"},
  996. command = "jimmythief",
  997. max = 1,
  998. salary = 5000,
  999. admin = 0,
  1000. vote = false,
  1001. hasLicense = true,
  1002. category = "Custom",
  1003. customCheck =function(ply)
  1004. return ply:SteamID()=="STEAM_0:0:151295139"
  1005. end,
  1006. CustomCheckFailMsg = "This is FBGM Jimmy's Custom Job!",
  1007. PlayerLoadout = function(ply) ply:SetArmor(100) end,
  1008. })
  1009.  
  1010. TEAM_SCRUFFYTHIEF = DarkRP.createJob("[THIEF] Sharky", {
  1011. color = Color(255, 122, 9, 255),
  1012. model = "models/freeman/player/left_shark.mdl",
  1013. description = [[Scruffy's Thief Class!]],
  1014. weapons = {"lockpick", "keypad_cracker"},
  1015. command = "scruffythief",
  1016. max = 1,
  1017. salary = 5000,
  1018. admin = 0,
  1019. vote = false,
  1020. hasLicense = true,
  1021. category = "Custom",
  1022. customCheck =function(ply)
  1023. return ply:SteamID()=="STEAM_0:0:163813446"
  1024. end,
  1025. CustomCheckFailMsg = "This is Scruffy's Custom Job!",
  1026. })
  1027.  
  1028. TEAM_KIWITHIEF = DarkRP.createJob("[THIEF] SCP-035", {
  1029. color = Color(0, 0, 0, 255),
  1030. model = "models/vinrax/player/035_player.mdl",
  1031. description = [[Kiwi's Thief Class!]],
  1032. weapons = {"lockpick", "keypad_cracker", "m9k_keltec"},
  1033. command = "kiwithief",
  1034. max = 1,
  1035. salary = 5000,
  1036. admin = 0,
  1037. vote = false,
  1038. hasLicense = true,
  1039. category = "Custom",
  1040. customCheck =function(ply)
  1041. return ply:SteamID()=="STEAM_0:1:116232549"
  1042. end,
  1043. CustomCheckFailMsg = "This is Kiwi's Custom Job!",
  1044. })
  1045.  
  1046. TEAM_NIEKOTHIEF = DarkRP.createJob("[THIEF] Swag Papi", {
  1047. color = Color(124, 27, 235, 255),
  1048. model = "models/player/rust/ron_perlman_pm.mdl",
  1049. description = [[Nieko's Thief Class!]],
  1050. weapons = {"pro_lockpick", "pro_keypad_cracker", "weapon_vape_custom"},
  1051. command = "niekothief",
  1052. max = 1,
  1053. salary = 5000,
  1054. admin = 0,
  1055. vote = false,
  1056. hasLicense = true,
  1057. category = "Custom",
  1058. customCheck =function(ply)
  1059. return ply:SteamID()=="STEAM_0:0:73904399"
  1060. end,
  1061. CustomCheckFailMsg = "This is Nieko's Custom Job!",
  1062. })
  1063.  
  1064. TEAM_PYROTHIEF = DarkRP.createJob("[THIEF] Amazing Pyro", {
  1065. color = Color(132, 35, 35, 255),
  1066. model = "models/player/pyroplayer/pyro.mdl",
  1067. description = [[The Eternal Pyro's Thief Class!]],
  1068. weapons = {"lockpick", "keypad_cracker"},
  1069. command = "pyrothief",
  1070. max = 1,
  1071. salary = 5000,
  1072. admin = 0,
  1073. vote = false,
  1074. hasLicense = true,
  1075. category = "Custom",
  1076. customCheck =function(ply)
  1077. return ply:SteamID()=="STEAM_0:1:96245721"
  1078. end,
  1079. CustomCheckFailMsg = "This is The Eternal Pyro's Custom Job!",
  1080. })
  1081. -- TEAM_SAXONPOLICE = DarkRP.createJob("[POLICE] The Cranky Monkey", {
  1082. -- color = Color(0, 255, 255, 255),
  1083. -- model = "models/pechenko_121/MUA2Deadpool.mdl",
  1084. -- description = [[Saxon's Police Class!]],
  1085. -- weapons = {"weapon_cuff_police", "unarrest_stick", "stunstick", "door_ram", "weaponchecker", "weapon_stungun"},
  1086. -- command = "saxonpolice",
  1087. -- max = 1,
  1088. -- salary = 5000,
  1089. -- admin = 0,
  1090. -- vote = false,
  1091. -- hasLicense = true,
  1092. -- category = "Custom",
  1093. -- customCheck =function(ply)
  1094. -- return ply:SteamID()=="STEAM_0:1:118554755"
  1095. -- end,
  1096. -- CustomCheckFailMsg = "This is Saxon's Custom Job!",
  1097. -- })
  1098.  
  1099. --[[---------------------------------------------------------------------------
  1100. Define which team joining players spawn into and what team you change to if demoted
  1101. ---------------------------------------------------------------------------]]
  1102. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  1103.  
  1104.  
  1105. --[[---------------------------------------------------------------------------
  1106. Define which teams belong to civil protection
  1107. Civil protection can set warrants, make people wanted and do some other police related things
  1108. ---------------------------------------------------------------------------]]
  1109. GAMEMODE.CivilProtection = {
  1110. [TEAM_POLICE] = true,
  1111. [TEAM_CHIEF] = true,
  1112. [TEAM_MAYOR] = true,
  1113. [TEAM_SWAT] = true,
  1114. [TEAM_ELITESWAT] = true,
  1115. [TEAM_SECRETSERVICE] = true,
  1116. }
  1117.  
  1118. --[[---------------------------------------------------------------------------
  1119. Jobs that are hitmen (enables the hitman menu)
  1120. ---------------------------------------------------------------------------]]
  1121. DarkRP.addHitmanTeam(TEAM_HITMAN)
  1122. DarkRP.addHitmanTeam(TEAM_ELITEHITMAN)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement