Advertisement
KimonK

Untitled

Dec 17th, 2017
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.18 KB | None | 0 0
  1. TEAM_THIEF = DarkRP.createJob("Thief", {
  2. color = Color(86, 86, 86, 255),
  3. model = "models/player/Group01/male_02.mdl",
  4. description = [[You are a thief, rob people, use your pickpocket skills
  5. You CANNOT Raid!]],
  6. weapons = {"pickpocket", "weapon_fists"}, -- You may wanna find a pickpocket swep and add it here.
  7. command = "thief",
  8. max = 5,
  9. salary = 45,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. category = "Criminals",
  14. })
  15.  
  16. TEAM_FIREFIGHTER = AddExtraTeam("Fire Fighter", {
  17. color = Color(255, 165, 51, 255),
  18. model = "models/fearless/fireman2.mdl",
  19. description = [[You have to turn off fires.]],
  20. weapons = {"fire_extinguisher", "fire_axe", "weapon_fists"},
  21. command = "firefighter",
  22. max = 6,
  23. salary = 700,
  24. admin = 0,
  25. vote = false,
  26. hasRadio = true,
  27. category = "Emergency Services",
  28. hasLicense = false
  29. })
  30.  
  31. TEAM_TAXI = DarkRP.createJob("Drift Taxi Driver", {
  32. color = Color(255, 222, 0, 255),
  33. model = "models/player/Group01/Female_06.mdl",
  34. description = [[Drift around downtown diving people rides for some money
  35.  
  36. You can purchase your drift taxi from the F4 Vehicles Tab]],
  37. weapons = {"weapon_fists"},
  38. command = "drifttaxidriver",
  39. max = 2,
  40. salary = 270,
  41. admin = 0,
  42. vote = false,
  43. hasLicense = false,
  44. category = "Citizens",
  45. customCheck = function(ply) return CLIENT or ply:GetUTimeTotalTime() >= 3600 end,
  46. CustomCheckFailMsg = "You need 1 Hour on the server to become a Drift Taxi Driver!",
  47. })
  48.  
  49.  
  50. TEAM_KID = DarkRP.createJob("Kidnapper", {
  51. color = Color(25, 183, 125, 255),
  52. model = "models/player/timetosplit/ghost.mdl",
  53. description = [[You kidnap people and mug them, or hold them for ransom/money
  54. Use your Bludgeon to knock your victim out with a Hit from behind
  55. NOT ALLOWED TO RAID
  56.  
  57. MUST ADVERT KIDNAP BEFORE KIDNAPPING SOMEONE!]],
  58. weapons = {"m9k_ragingbull", "weapon_fists", "weapon_kidnapper"}, -- You may wanna find a pickpocket swep and add it here.
  59. command = "kidnapper",
  60. max = 2,
  61. salary = 45,
  62. admin = 0,
  63. vote = true,
  64. hasLicense = false,
  65. category = "Criminals",
  66. customCheck = function(ply) return CLIENT or ply:GetUTimeTotalTime() >= 3600 end,
  67. CustomCheckFailMsg = "You need 1 Hour on the server to become a Kidnapper!",
  68. })
  69.  
  70. TEAM_PROTHIEF = DarkRP.createJob("Professional Thief", {
  71. color = Color(90, 90, 90, 255),
  72. model = "models/player/hostage/hostage_03.mdl",
  73. description = [[You advanced levels to a professional thief
  74. You are now equipped with a silent lockpick and can pickpocket people
  75. You CAN also solo raid!
  76. YOU MUST /ADVERT RAID]],
  77. weapons = {"pickpocket", "lockpick_silent", "weapon_fists"}, -- You may wanna find a pickpocket swep and add it here.
  78. command = "prothief",
  79. max = 3,
  80. salary = 75,
  81. admin = 0,
  82. vote = false,
  83. hasLicense = false,
  84. category = "VIP Jobs",
  85. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  86. CustomCheckFailMsg = "This job is VIP only!"
  87.  
  88. })
  89.  
  90. TEAM_PEDO = DarkRP.createJob("Rapist", {
  91. color = Color(166, 107, 164, 255),
  92. model = {"models/player/timetosplit/impersonator.mdl", "models/player/timetosplit/hybridmutant.mdl", "models/player/timetosplit/mrgiggles.mdl" },
  93. description = [[Give People STDs ;)
  94. Use /rape while looking at a player]],
  95. weapons = {"music_action", "music_rush", "music_sad"},
  96. command = "mental",
  97. max = 10,
  98. salary = 0,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = false,
  102. candemote = false,
  103. category = "Citizens",
  104. })
  105.  
  106. TEAM_HOBOL = DarkRP.createJob("Hobo Lord", {
  107. color = Color(0, 250, 0, 255),
  108. model = {"models/player/timetosplit/gargoyle.mdl", "models/player/charple.mdl", "models/player/timetosplit/zombie_crypt.mdl"},
  109. description = [[You are the hobo lord!
  110. Build a hobo base with your fellow hobos or beg for money
  111. throw boots at people
  112.  
  113. Rape people using /rape while looking at a person]],
  114. weapons = {"weapon_bugbait", "weapon_fists", "weapon_angryhobo", "weapon_beg"},
  115. command = "hobolord",
  116. max = 1,
  117. salary = 0,
  118. admin = 0,
  119. vote = false,
  120. hasLicense = false,
  121. candemote = false,
  122. hobo = true,
  123. category = "Homeless",
  124. })
  125.  
  126. TEAM_HOBO = DarkRP.createJob("Hobo", {
  127. color = Color(80, 45, 0, 255),
  128. model = "models/player/timetosplit/sergio.mdl",
  129. description = [[The lowest member of society. Everybody laughs at you.
  130. You have no home.
  131. Beg for your food and money
  132. Sing for everyone who passes to get money
  133. Make your own wooden home somewhere in a corner or outside someone else's door
  134.  
  135. Rape people using /rape while looking at a person]],
  136. weapons = {"weapon_bugbait", "weapon_fists", "weapon_beg"},
  137. command = "hobo",
  138. max = 0,
  139. salary = 0,
  140. admin = 0,
  141. vote = false,
  142. hasLicense = false,
  143. candemote = false,
  144. hobo = true,
  145. category = "Homeless",
  146. })
  147.  
  148. TEAM_HACK = DarkRP.createJob("Hacker", {
  149. color = Color(27, 169, 174, 255),
  150. model = "models/player/hostage/hostage_02.mdl",
  151. description = [[You work with the raiders and help them crack keypads to infultrate the base
  152. YOU CANNOT SOLO RAID! must be with atleast 2 people!
  153. MUST /ADVERT RAID!]],
  154. weapons = {"keypad_cracker", "weapon_fists"}, -- You may wanna find a pickpocket swep and add it here.
  155. command = "hacker",
  156. max = 4,
  157. salary = 75,
  158. admin = 0,
  159. vote = false,
  160. hasLicense = false,
  161. category = "Criminals",
  162. })
  163.  
  164. TEAM_BANKROBBER = DarkRP.createJob("Bank Robber", {
  165. color = Color(109, 53, 206, 255),
  166. model = {"models/player/pd2_chains_p.mdl", "models/player/pd2_dallas_p.mdl", "models/player/pd2_wolf_p.mdl"},
  167. description = [[Come up with a Heist to Rob the Government Bank inside the police station
  168. NOT ALLOWED TO RAID!
  169.  
  170. IF SEEN NOT ROBBING BANK & FUCKING AROUND = BAN
  171. ]],
  172. weapons = {"weapon_fists", "m9k_sig_p229r"}, -- You may wanna find a pickpocket swep and add it here.
  173. command = "heister",
  174. max = 4,
  175. salary = 45,
  176. admin = 0,
  177. vote = true,
  178. hasLicense = false,
  179. category = "Criminals",
  180. })
  181.  
  182. TEAM_VIPPURGEE = DarkRP.createJob("Bank Heister", {
  183. color = Color(146, 0, 255, 255),
  184. model = "models/player/pd2_chains_p.mdl",
  185. description = [[You are a more experienced bank robber
  186. and is equipped with a few extra things to make the job easyer
  187.  
  188. ]],
  189. weapons = {"weapon_fists", "m9k_usp", "lockpick", "bb_css_knife"}, -- You may wanna find a pickpocket swep and add it here.
  190. command = "vippurger",
  191. max = 5,
  192. salary = 45,
  193. admin = 0,
  194. vote = false,
  195. hasLicense = false,
  196. category = "VIP Jobs",
  197. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  198. CustomCheckFailMsg = "This job is VIP only!"
  199. })
  200.  
  201. TEAM_GANGSTER = DarkRP.createJob("Gangster", {
  202. color = Color(75, 75, 75, 255),
  203. model = {
  204. "models/player/Group03/Female_01.mdl",
  205. "models/player/Group03/Female_02.mdl",
  206. "models/player/Group03/Female_03.mdl",
  207. "models/player/Group03/Female_04.mdl",
  208. "models/player/Group03/Female_06.mdl",
  209. "models/player/group03/male_01.mdl",
  210. "models/player/Group03/Male_02.mdl",
  211. "models/player/Group03/male_03.mdl",
  212. "models/player/Group03/Male_04.mdl",
  213. "models/player/Group03/Male_05.mdl",
  214. "models/player/Group03/Male_06.mdl",
  215. "models/player/Group03/Male_07.mdl",
  216. "models/player/Group03/Male_08.mdl",
  217. "models/player/Group03/Male_09.mdl"},
  218. description = [[The lowest person of crime
  219. You are ALLOWED to solo raid
  220. MUST /ADVERT!]],
  221. weapons = {"fists"},
  222. command = "gangster",
  223. max = 10,
  224. salary = GAMEMODE.Config.normalsalary,
  225. admin = 0,
  226. vote = false,
  227. hasLicense = false,
  228. category = "Criminals",
  229. })
  230.  
  231. TEAM_IS2 = DarkRP.createJob("ISIS Terrorist", {
  232. color = Color(129, 30, 0, 255),
  233. model = {"models/player/phoenix.mdl", "models/player/guerilla.mdl"},
  234. description = [[You are with the terrorist group ISIS
  235. Your goal is to take the mayor hostage and hold him for money
  236. if you are seen just playing around you will be demoted
  237.  
  238. YOUR ONLY ALLOWED TO PLAY WITH OTHER ISIS MEMBERS ONLINE! YOU WLL BE BLACKLISTED IF SEEN ALONE!
  239. you MUST /advert before you do anything! raid/bomb
  240. DO NOT JUST RDM!
  241.  
  242. /ADVERT TERROR IS NOT ALLOWED! YOU CAN ONLY RAID!
  243. ]],
  244. weapons = {"lockpick", "fire_molotov", "weapon_fists", "bb_css_knife", "m9k_ak47"}, -- You may wanna find a pickpocket swep and add it here.
  245. command = "voteterroist",
  246. max = 4,
  247. salary = 0,
  248. admin = 0,
  249. vote = true,
  250. hasLicense = false,
  251. category = "ISIS Cartel",
  252. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  253. CustomCheckFailMsg = "This job is VIP only!"
  254. })
  255.  
  256. TEAM_ROB = DarkRP.createJob("Raider", {
  257. color = Color(10, 10, 10, 255),
  258. model = {
  259. "models/player/Group03/Female_01.mdl",
  260. "models/player/Group03/Female_02.mdl",
  261. "models/player/Group03/Female_03.mdl",
  262. "models/player/Group03/Female_04.mdl",
  263. "models/player/Group03/Female_06.mdl",
  264. "models/player/group03/male_01.mdl",
  265. "models/player/Group03/Male_02.mdl",
  266. "models/player/Group03/male_03.mdl",
  267. "models/player/Group03/Male_04.mdl",
  268. "models/player/Group03/Male_05.mdl",
  269. "models/player/Group03/Male_06.mdl",
  270. "models/player/Group03/Male_07.mdl",
  271. "models/player/Group03/Male_08.mdl",
  272. "models/player/Group03/Male_09.mdl"},
  273. description = [[Break into houses, with your lockpicking skills and steal stuff
  274. YOU MUST /ADVERT RAID before you are raiding!]],
  275. weapons = {"lockpick", "weapon_fists"}, -- You may wanna find a pickpocket swep and add it here.
  276. command = "raider",
  277. max = 8,
  278. salary = 45,
  279. admin = 0,
  280. vote = false,
  281. hasLicense = false,
  282. category = "Criminals",
  283. })
  284.  
  285. TEAM_PET = DarkRP.createJob("Renamon", {
  286. color = Color(230, 242, 0, 255),
  287. model = "models/renamon/renamon2009.mdl",
  288. description = [[Go find an owner and be their pet!
  289. If you dont like somebody use the /rape command
  290.  
  291. NOT ALLOWED TO USE GUNS!]],
  292. weapons = {}, -- You may wanna find a pickpocket swep and add it here.
  293. command = "pet",
  294. max = 1,
  295. salary = 45,
  296. admin = 0,
  297. vote = false,
  298. hasLicense = false,
  299. category = "Pets",
  300. })
  301.  
  302.  
  303. TEAM_METH = DarkRP.createJob("Meth Cooker", {
  304. color = Color(166, 169, 69, 255),
  305. model = "models/player/timetosplit/envirosuit.mdl",
  306. description = [[Your a meth cook. go some cook meth and get rich]],
  307. weapons = {"weapon_fists"},
  308. command = "methcook",
  309. max = 10,
  310. salary = 45,
  311. admin = 0,
  312. vote = false,
  313. hasLicense = false,
  314. category = "Criminals",
  315. })
  316.  
  317. TEAM_VIPMETH = DarkRP.createJob("Advanced Meth Cooker", {
  318. color = Color(240, 240, 130, 255),
  319. model = "models/player/timetosplit/trooperblack.mdl",
  320. description = [[The worlds best meth cook
  321. You are equipped with a pistol to defend your meth]],
  322. weapons = {"m9k_coltpython"},
  323. command = "walterwhite",
  324. max = 10,
  325. salary = 95,
  326. admin = 0,
  327. vote = false,
  328. hasLicense = false,
  329. category = "VIP Jobs",
  330. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  331. CustomCheckFailMsg = "This job is VIP only!"
  332. })
  333.  
  334. TEAM_DRUG = DarkRP.createJob("Drug Dealer", {
  335. color = Color(68, 90, 43, 255),
  336. model = "models/player/hostage/hostage_02.mdl",
  337. description = [[Grow marijuana and dont get caught!
  338. then sell it to the dealer down the street for money
  339. You can access the Weed Growing tab to buy pots and stuff]],
  340. weapons = {"weapon_fists"},
  341. command = "drugd",
  342. max = 13,
  343. salary = 45,
  344. admin = 0,
  345. vote = false,
  346. hasLicense = false,
  347. category = "Criminals",
  348. })
  349.  
  350. TEAM_BLACKMARKET = DarkRP.createJob("Black Market Merchant", {
  351. color = Color(13, 13, 13, 255),
  352. model = "models/player/monk.mdl",
  353. description = [[You have access to the Black Market Tab in F4
  354.  
  355. Purchase a TNT Crafting Table and start making explosives
  356. It crafts illegal explosives / items, sell your items to people around evocity
  357.  
  358. Able to sell Breach Charges, Car Bombs, Lockpicks, and Keypad Crackers]],
  359. weapons = {"weapon_fists"},
  360. command = "blackmarket",
  361. max = 3,
  362. salary = 45,
  363. admin = 0,
  364. vote = false,
  365. hasLicense = false,
  366. category = "Criminals",
  367. })
  368.  
  369. TEAM_CRAFT = DarkRP.createJob("Mining Foreman", {
  370. color = Color(144, 89, 7, 255),
  371. model = {"models/player/timetosplit/jebediahcrump.mdl"},
  372. description = [[You are able to purchase a crafting table in Misc Equipment
  373. Craft weapons / items / money printers ect.
  374. you must use your pickaxe and mine the needed resources]],
  375. weapons = {"weapon_pioche", "mining_orebag"},
  376. command = "miner",
  377. max = 15,
  378. salary = 45,
  379. admin = 0,
  380. vote = false,
  381. hasLicense = false,
  382. category = "Citizens",
  383.  
  384. })
  385.  
  386. TEAM_VIPDRUG = DarkRP.createJob("Professional Drug Dealer", {
  387. color = Color(68, 90, 43, 255),
  388. model = "models/player/Group01/male_02.mdl",
  389. description = [[With your new knowledge of growing drugs,
  390. You can now grow weed and cocaine a better faster way and grow shrooms
  391. Buy the VIP weed/coca Pot in the Weed Growing tab
  392. you can either sell it or consume it]],
  393. weapons = {"weapon_fists"},
  394. command = "drugvip",
  395. max = 4,
  396. salary = 45,
  397. admin = 0,
  398. vote = false,
  399. hasLicense = false,
  400. category = "VIP Jobs",
  401. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  402. CustomCheckFailMsg = "This job is VIP only!"
  403. })
  404.  
  405. TEAM_CHEMIST = DarkRP.createJob("Chemical Scientist", {
  406. color = Color(0, 157, 136, 255),
  407. model = "models/player/timetosplit/maletrooper.mdl",
  408. description = [[You are a chemist that makes stuff that gets people high
  409. You can spawn a Chemistry Lab from the General Store via F4
  410. and cook LSD, MDMA, or Ketamine and either sell it to players or consume it and get high]],
  411. weapons = {"weapon_fists"},
  412. command = "chemist",
  413. max = 6,
  414. salary = 45,
  415. admin = 0,
  416. vote = false,
  417. hasLicense = false,
  418. category = "Scientists",
  419. })
  420.  
  421. TEAM_ALCHEMIST = DarkRP.createJob("Alchemist", {
  422. color = Color(65,200,224,255),
  423. model = "models/player/timetosplit/crow.mdl",
  424. description = [[As an alchemist
  425. You create potions for use or sell
  426. Buy ingredients at the General Store near the taxi service to make your potions
  427.  
  428. Purchase a Alchemy Potion Lab from the General Store in F4
  429. ]],
  430. weapons = {"weapon_fists"},
  431. command = "alchemist",
  432. max = 5,
  433. salary = 45,
  434. admin = 0,
  435. vote = false,
  436. category = "Scientists",
  437. hasLicense = false
  438. })
  439.  
  440. TEAM_HITMAN = DarkRP.createJob("Bounty Hunter", {
  441. color = Color(255, 64, 0, 255),
  442. model = "models/agent_47/agent_47.mdl",
  443. description = [[People hire you to take out other people,
  444. this job require you to be completely focussed.
  445. A single breath can make you loose a shot.]],
  446. weapons = {"m9k_contender", "weapon_fists"},
  447. command = "hitman",
  448. max = 4,
  449. salary = 65,
  450. admin = 0,
  451. vote = true,
  452. hasLicense = false,
  453. category = "Criminals",
  454.  
  455. })
  456.  
  457. TEAM_RGANG = DarkRP.createJob("Russian Byki Mobster", {
  458. color = Color(55, 55, 55, 255),
  459. model = "models/agent_47/agent_47.mdl",
  460. description = [[You are the Bodyguards of the mob
  461. being the lowest rank in the mafia
  462. You are to stay with with your fellow members at all times, this means no solo raiding
  463. you must raid with a group or 2 atleast]],
  464. weapons = {"weapon_fists"},
  465. command = "russianmobster",
  466. max = 7,
  467. salary = 70,
  468. admin = 0,
  469. vote = false,
  470. hasLicense = true,
  471. category = "Russian Mafia",
  472. })
  473.  
  474. TEAM_RMOBS = DarkRP.createJob("Russian Sovietnik", {
  475. color = Color(55, 55, 55, 255),
  476. model = "models/agent_47/agent_47.mdl",
  477. description = [[The councilor or the advisor and one of the most trusted people of the Pakhan
  478. YOU WILL BE BANNED FROM THIS JOB, IF SEEN PLAYING WITH NO OTHER RUSSIAN MOBSTERS ON
  479. YOU CANNOT SOLO RAID]],
  480. weapons = {"m9k_vikhr", "unarrest_stick", "weapon_fists"},
  481. command = "russianstovietnik",
  482. max = 1,
  483. salary = 45,
  484. admin = 0,
  485. vote = true,
  486. hasLicense = true,
  487. category = "Russian Mafia",
  488. })
  489.  
  490. TEAM_RMOB = DarkRP.createJob("Russian Godfather", {
  491. color = Color(25, 25, 25, 255),
  492. model = "models/agent_47/agent_47.mdl",
  493. description = [[The ‘boss’ or the ‘Kresti otets’ is the ‘Godfather’ & controls everything.
  494. Stay protected by your guards and members
  495. YOU WILL BE BANNED FROM THIS JOB, IF SEEN PLAYING WITH NO OTHER RUSSIAN MOBSTERS ON
  496. YOU CANNOT SOLO RAID]],
  497. weapons = {"lockpick", "unarrest_stick", "m9k_scoped_taurus", "weapon_fists"},
  498. command = "russianleader",
  499. max = 1,
  500. salary = 45,
  501. admin = 0,
  502. vote = true,
  503. hasLicense = true,
  504. category = "Russian Mafia",
  505. })
  506.  
  507. TEAM_HGANG = DarkRP.createJob("Italian Mafia Capo", {
  508. color = Color(80, 0, 230, 255),
  509. model = {"models/player/timetosplit/jakefenton.mdl"},
  510. description = [[You are the Italians capo, the bodyguard of the leader
  511. You are to stay with with your fellow members at all times, this means no solo raiding
  512. you must raid with a group or 2 atleast
  513.  
  514. YOU WILL BE BANNED FROM THIS JOB, IF SEEN PLAYING WITH NO OTHER ITALIAN MEMBERS ON]],
  515. weapons = {"m9k_mp7", "weapon_fists" },
  516. command = "yakuzahenchmen",
  517. max = 2,
  518. salary = 45,
  519. admin = 0,
  520. vote = true,
  521. hasLicense = true,
  522. category = "Italian Mafia",
  523. })
  524.  
  525. TEAM_POLICEUC = DarkRP.createJob("Undercover Police Unit", {
  526. color = Color(50, 50, 50, 255),
  527. model = {"models/player/Group01/Male_01.mdl", "models/player/Group01/Female_02.mdl"},
  528. description = [[You are a undercover unit ---- DO NOT ABUSE YOUR JOB!! ---
  529. Disguise yourself and blend in with the mafia and meth cooks
  530. and take them to jail, use the police baton!
  531. Remember, your disguise does not last forever
  532. Stay as lowkey as possible, try not to get caught!
  533.  
  534. Use the disguise kit to blend in]],
  535. weapons = {"m9k_glock", "door_ram", "disguise_kit", "weapon_policebaton", "weapon_fists", "weapon_physgun", "weapon_physcannon", "keys", "gmod_tool"},
  536. command = "ucunit",
  537. max = 2,
  538. salary = 250,
  539. admin = 0,
  540. vote = true,
  541. hasRadio = true,
  542. hasLicense = true,
  543. ammo = {
  544. ["pistol"] = 60,
  545. },
  546. category = "Government Officials",
  547.  
  548. PlayerLoadout = function(ply)
  549. ply:SetArmor(60)
  550. return true
  551. end
  552. })
  553.  
  554. TEAM_ANON = DarkRP.createJob("CIA Spec Ops Elite", {
  555. color = Color(44, 44, 44, 244),
  556. model = "models/specops/spec_ops.mdl",
  557. description = [[You are part of the C.I.A
  558. A group of experienced fast and professional elites
  559. You are the eyes behind the operation Be sneaky you are equipped with Active Camo
  560. to infultrate the enemy base and take them out. Try not to get caught]],
  561. weapons = {"arrest_stick", "m9k_m16a4_acog", "weapon_sh_flashbang", "bb_css_smoke", "m9k_vector", "bb_cssfrag", "bb_css_knife", "stunstick", "m9k_usas", "keys", "gmod_tool", "m9k_hk45", "weapon_taser", "weapon_camo", "weaponchecker", "handcuffsinhand", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon"},
  562. command = "specopselite",
  563. max = 2,
  564. salary = 300,
  565. admin = 0,
  566. vote = true,
  567. hasLicense = true,
  568. hasRadio = true,
  569. category = "C.I.A Division",
  570. customCheck = function(ply) return CLIENT or ply:GetUTimeTotalTime() >= 14400 end,
  571. CustomCheckFailMsg = "You need 4 Hours on the server to become a C.I.A Spec Ops Elite!",
  572. PlayerLoadout = function(ply)
  573. ply:SetArmor(60)
  574. return true
  575. end
  576.  
  577. })
  578.  
  579. TEAM_CIAGENT = DarkRP.createJob("CIA Field Agent", {
  580. color = Color(75, 75, 180, 255),
  581. model = "models/player/smith.mdl",
  582. description = [[You are part of the C.I.A
  583. A group of experienced fast and professional elites
  584. You are the basic rank, Follow orders from your commander and investigate Drug Labs around town]],
  585. weapons = {"arrest_stick", "m9k_mp9", "bb_css_knife", "stunstick", "keys", "gmod_tool", "m9k_hk45", "weapon_taser", "weaponchecker", "handcuffsinhand", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon"},
  586. command = "ciaagent",
  587. max = 4,
  588. salary = 300,
  589. admin = 0,
  590. vote = true,
  591. hasLicense = true,
  592. hasRadio = true,
  593. category = "C.I.A Division",
  594. customCheck = function(ply) return CLIENT or ply:GetUTimeTotalTime() >= 10800 end,
  595. CustomCheckFailMsg = "You need 3 Hours on the server to become the C.I.A Field Agent!",
  596. PlayerLoadout = function(ply)
  597. ply:SetArmor(25)
  598. return true
  599. end
  600.  
  601. })
  602.  
  603. TEAM_CIALEAD = DarkRP.createJob("CIA Division Director", {
  604. color = Color(75, 75, 180, 255),
  605. model = "models/player/police.mdl",
  606. description = [[You are the Leader of the C.I.A
  607. A group of experienced fast and professional elites
  608. Command your Agents and take down all Criminal Activities]],
  609. weapons = {"arrest_stick", "m9k_famas", "m9k_contender", "weapon_sh_flashbang", "bb_css_smoke", "bb_css_knife", "stunstick", "keys", "gmod_tool", "m9k_hk45", "m9k_deagle", "weapon_taser", "weaponchecker", "handcuffsinhand", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon"},
  610. command = "ciadirector",
  611. max = 1,
  612. salary = 400,
  613. admin = 0,
  614. vote = true,
  615. hasLicense = true,
  616. hasRadio = true,
  617. category = "C.I.A Division",
  618. customCheck = function(ply) return CLIENT or ply:GetUTimeTotalTime() >= 86400 end,
  619. CustomCheckFailMsg = "You need 24 Hours on the server to become the C.I.A!",
  620. PlayerLoadout = function(ply)
  621. ply:SetArmor(100)
  622. return true
  623. end
  624.  
  625. })
  626.  
  627. TEAM_MK9 = DarkRP.createJob("CIA Spartan MK9 Elite", {
  628. color = Color(54, 116, 182, 255),
  629. model = "models/player/masterchiefh2.mdl",
  630. description = [[You are juggernaut of the C.I.A
  631. You are called in when the situation can no longer be handled
  632. Use your high power weapons to take down any enemy in your way]],
  633. weapons = {"arrest_stick", "m9k_ares_shrike", "weapon_sh_flashbang", "bb_css_smoke", "stunstick", "bb_cssfrag", "keys", "gmod_tool", "m9k_striker12", "m9k_m14sp", "weapon_taser", "weaponchecker", "handcuffsinhand", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon"},
  634. command = "mk9",
  635. max = 1,
  636. salary = 300,
  637. admin = 0,
  638. vote = true,
  639. hasLicense = true,
  640. hasRadio = true,
  641. category = "C.I.A Division",
  642. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" end if CLIENT then return true end end,
  643. CustomCheckFailMsg = "This job is VIP GOLD only!",
  644.  
  645. PlayerLoadout = function(ply)
  646. ply:SetArmor(100)
  647. return true
  648. end
  649.  
  650. })
  651.  
  652. TEAM_MK10 = DarkRP.createJob("CIA Spartan MK10 Marksman", {
  653. color = Color(31, 121, 217, 255),
  654. model = "models/player/masterchiefh2.mdl",
  655. description = [[You are part of the C.I.A
  656. The Main Eyes of the operation
  657. you are equipped with a high powered sniper to take out enemys.
  658. Stay on high grounds or on roof tops]],
  659. weapons = {"arrest_stick", "stunstick", "weapon_sh_flashbang", "bb_css_smoke", "m9k_intervention", "m9k_hk45", "bb_cssfrag", "gdcw_hkg28", "m9k_svu", "keys", "gmod_tool", "weapon_taser", "weaponchecker", "handcuffsinhand", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon"},
  660. command = "mk10",
  661. max = 1,
  662. salary = 300,
  663. admin = 0,
  664. vote = true,
  665. hasLicense = true,
  666. hasRadio = true,
  667. category = "C.I.A Division",
  668. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" end if CLIENT then return true end end,
  669. CustomCheckFailMsg = "This job is VIP GOLD only!",
  670.  
  671. PlayerLoadout = function(ply)
  672. ply:SetArmor(100)
  673. return true
  674. end
  675. })
  676.  
  677. TEAM_POLICESN = DarkRP.createJob("S.W.A.T Sniper", {
  678. color = Color(25, 25, 170, 255),
  679. model = "models/player/timetosplit/riotofficer.mdl",
  680. description = [[The protector of every citizen that lives in the city.
  681. You have the power to arrest criminals and protect innocents.
  682. Hit a player with your arrest baton to put them in jail.
  683. Bash a player with a stunstick and they may learn to obey the law.
  684. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  685. The Battering Ram can also unfreeze frozen props (if enabled).
  686. Type /wanted <name> to alert the public to the presence of a criminal.]],
  687. weapons = {"arrest_stick", "m9k_m98b", "stunstick", "weapon_policebaton", "weapon_fists", "door_ram", "weapon_physgun", "weapon_physcannon", "keys", "gmod_tool"},
  688. command = "swatsniper",
  689. max = 1,
  690. salary = 200,
  691. admin = 0,
  692. vote = true,
  693. hasLicense = true,
  694. hasRadio = true,
  695. category = "S.W.A.T",
  696. customCheck = function(ply)if SERVER then return ply:GetUserGroup() == "vip_regular" or ply:GetUserGroup() == "server_manager" or ply:GetUserGroup() == "staff_director" or ply:GetUserGroup() == "senior_admin_vip_gold" or ply:GetUserGroup() == "senior_admin_vip" or ply:GetUserGroup() == "superadmin" or ply:GetUserGroup() == "Community Owner" or ply:GetUserGroup() == "admin_vip_gold" or ply:GetUserGroup() == "admin_vip" or ply:GetUserGroup() == "vip_gold" or ply:GetUserGroup() == "mod_vip_gold" or ply:GetUserGroup() == "mod_vip" end if CLIENT then return true end end,
  697. CustomCheckFailMsg = "This job is VIP only!",
  698.  
  699. PlayerLoadout = function(ply)
  700. ply:SetArmor(65)
  701. return true
  702. end
  703. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement