Advertisement
Guest User

jobs

a guest
May 22nd, 2018
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.98 KB | None | 0 0
  1. TEAM_METHCOOK = DarkRP.createJob("Methcook", {
  2. color = Color(255, 0, 0, 255),
  3. model = "models/bloocobalt/splinter cell/chemsuit_cod.mdl",
  4. description = [[You cook meth, and sell to people or dealers]],
  5. weapons = {""},
  6. command = "METHCOOK",
  7. max = 5,
  8. salary = 65,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category = "Criminals",
  13. })
  14.  
  15.  
  16. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  17. color = Color(255, 0, 0, 255),
  18. model = "models/player/agent_47.mdl",
  19. description = [[People hire you to take out other people,
  20. this job require you to be completely focussed.
  21. A single breath can make you loose a shot.]],
  22. weapons = {"m9k_m24"},
  23. command = "hitman",
  24. max = 5,
  25. salary = 65,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. category = "Criminals",
  30. })
  31.  
  32. TEAM_DF = DarkRP.createJob("Document Forger", {
  33. color = Color(255, 0, 0, 255),
  34. model = "models/player/eli.mdl",
  35. description = [[You make fake documents for people or just sell them]],
  36. weapons = {""},
  37. command = "df",
  38. max = 3,
  39. salary = 65,
  40. admin = 0,
  41. vote = false,
  42. hasLicense = false,
  43. category = "Criminals",
  44. })
  45.  
  46.  
  47. TEAM_THIEF = DarkRP.createJob("Thief", {
  48. color = Color(255, 0, 0, 255),
  49. model = "models/player/group01/cookies114.mdl",
  50. description = [[You are a thief, rob people, lockpick their house and steal their plants and legal printers.]],
  51. weapons = {"lockpick", "fas2_deagle", "weapon_sh_keypadcracker_deploy"},
  52. command = "thief",
  53. max = 0,
  54. salary = 65,
  55. admin = 0,
  56. vote = false,
  57. hasLicense = false,
  58. category = "Criminals",
  59. })
  60. TEAM_MTHIEF = DarkRP.createJob("Master Thief", {
  61. color = Color(255, 0, 0, 255),
  62. model = "models/player/suits/robber_tuckedtie.mdl",
  63. description = [[You are a thief, rob people, lockpick their house and steal their plants and legal printers.]],
  64. weapons = {"pro_lockpick_update", "fas2_deagle", "weapon_sh_keypadcracker_deploy", "m9k_mp7", "pickpocket"},
  65. command = "mthief",
  66. max = 4,
  67. salary = 110,
  68. admin = 0,
  69. vote = false,
  70. hasLicense = false,
  71. category = "VIP Jobs",
  72. customCheck = function(ply) return CLIENT or
  73. table.HasValue({"superadmin", "Owner", "VIP", "Mega VIP"}, ply:GetNWString("usergroup"))
  74. end,
  75. CustomCheckFailMsg = "This job is for Donator and Mega Donators only!",
  76. })
  77.  
  78. TEAM_HACKER = DarkRP.createJob("Hacker", {
  79. color = Color(255, 0, 0, 255),
  80. model = {"models/player/aiden_pearce.mdl"},
  81. description = [[You're the towns hacker, you have a hack phone so use it wisely. You may be hired by other criminals!]],
  82. weapons = {"weapon_hack_phone", "weapon_sh_keypadcracker_deploy", "fas2_deagle"},
  83. command = "hacker",
  84. max = 3,
  85. salary = 100,
  86. admin = 0,
  87. vote = false,
  88. hasLicense = false,
  89. candemote = false,
  90. category = "VIP Jobs",
  91. customCheck = function(ply) return CLIENT or
  92. table.HasValue({"superadmin", "Owner", "VIP", "Mega VIP"}, ply:GetNWString("usergroup"))
  93. end,
  94. CustomCheckFailMsg = "This job is for Donator and Mega Donators only!",
  95. })
  96.  
  97. TEAM_DJ = DarkRP.createJob("DJ", {
  98. color = Color(0, 255, 26, 255),
  99. model = {"models/player/daftpunk/daft_silver.mdl"},
  100. description = [[You're the DJ! Play music through your speakers, check the f4 menu!]],
  101. weapons = {},
  102. command = "dj",
  103. max = 3,
  104. salary = 20,
  105. admin = 0,
  106. vote = false,
  107. hasLicense = false,
  108. candemote = false,
  109. category = "Citizens",
  110. })
  111. TEAM_BUSKER = DarkRP.createJob("Busker", {
  112. color = Color(0, 255, 26, 255),
  113. model = {"models/player/suits/male_09_open.mdl"},
  114. description = [[You can play the piano in the street as a busker! Earn money from playing the piano!]],
  115. weapons = {},
  116. command = "busker",
  117. max = 0,
  118. salary = 20,
  119. admin = 0,
  120. vote = false,
  121. hasLicense = false,
  122. candemote = false,
  123. category = "Citizens",
  124. })
  125.  
  126. TEAM_SOD = DarkRP.createJob("Staff On Duty", {
  127. color = Color(36, 255, 0, 255),
  128. model = {"models/player/doa5_kasumi.mdl"},
  129. description = [[If you're not sure what to do on duty, ask. :)]],
  130. weapons = {},
  131. command = "sod",
  132. max = 0,
  133. salary = 0,
  134. admin = 0,
  135. vote = false,
  136. hasLicense = true,
  137. candemote = false,
  138. category = "Staff Jobs",
  139. customCheck = function(ply) return CLIENT or
  140. table.HasValue({"superadmin", "Owner", "admin", "Trial-Staff", "Moderator", "Moderator+", "Admin+"}, ply:GetNWString("usergroup"))
  141. end,
  142. CustomCheckFailMsg = "This job is only for Staff!",
  143. })
  144.  
  145. TEAM_HOS = DarkRP.createJob("Head Of Staff", {
  146. color = Color(36, 255, 0, 255),
  147. model = {"models/player/plague_doktor/player_plague_doktor.mdl"},
  148. description = [[The Head Of Staff can only become this job.]],
  149. weapons = {},
  150. command = "hos",
  151. max = 0,
  152. salary = 0,
  153. admin = 0,
  154. vote = false,
  155. hasLicense = true,
  156. candemote = false,
  157. category = "Staff Jobs",
  158. customCheck = function(ply) return CLIENT or
  159. table.HasValue({"Head-Admin", "superadmin", "Owner", "Head-Of-Staff"}, ply:GetNWString("usergroup"))
  160. end,
  161. CustomCheckFailMsg = "This job is only for Staff!",
  162. })
  163. TEAM_MAYOR = DarkRP.createJob("Mayor", {
  164. color = Color(0, 255, 26, 255),
  165. model = {"models/player/suits/male_02_shirt_tie.mdl"},
  166. description = [[You're the mayor, make sure you make the right choices for your town!]],
  167. weapons = {"m9k_colt1911"},
  168. command = "mayor",
  169. max = 1,
  170. salary = 450,
  171. admin = 0,
  172. vote = true,
  173. hasLicense = true,
  174. candemote = true,
  175. category = "Citizens",
  176. mayor = true,
  177. })
  178.  
  179. TEAM_LDEALER = DarkRP.createJob("Light Gun Dealer", {
  180. color = Color(255, 0, 0, 255),
  181. model = {"models/player/monk.mdl"},
  182. description = [[You're not a criminal as long as you have a gun license. If you've not got a license you will be prosecuted if you're caught selling! ]],
  183. weapons = {"m9k_glock"},
  184. command = "lightgundealer",
  185. max = 4,
  186. salary = 40,
  187. admin = 0,
  188. vote = false,
  189. hasLicense = false,
  190. candemote = false,
  191. category = "Citizens",
  192. })
  193.  
  194. TEAM_HDEALER = DarkRP.createJob("Heavy Gun Dealer", {
  195. color = Color(255, 0, 0, 255),
  196. model = {"models/player/guerilla.mdl"},
  197. description = [[You're not a criminal as long as you have a gun license. If you've not got a license you will be prosecuted if you're caught selling! ]],
  198. weapons = {"m9k_glock"},
  199. command = "heavygundealer",
  200. max = 3,
  201. salary = 40,
  202. admin = 0,
  203. vote = false,
  204. hasLicense = false,
  205. candemote = false,
  206. category = "Citizens",
  207. })
  208. TEAM_BDEALER = DarkRP.createJob("Blackmarket Dealer", {
  209. color = Color(255, 0, 0, 255),
  210. model = {"models/norpo/arkhamorigins/assassins/deathstroke_valvebiped.mdl"},
  211. description = [[You're currently a criminal, you will not be prosecuted until you're seen selling weapons or explosives. ]],
  212. weapons = {"m9k_tec9"},
  213. command = "blackmarketdealer",
  214. max = 2,
  215. salary = 40,
  216. admin = 0,
  217. vote = false,
  218. hasLicense = false,
  219. candemote = false,
  220. category = "VIP Jobs",
  221. customCheck = function(ply) return CLIENT or
  222. table.HasValue({"superadmin", "Owner", "VIP", "Mega VIP"}, ply:GetNWString("usergroup"))
  223. end,
  224. CustomCheckFailMsg = "This job is for Donator and Mega Donators only!",
  225. })
  226.  
  227. TEAM_BANKER = DarkRP.createJob("Banker", {
  228. color = Color(255, 0, 0, 255),
  229. model = {"models/player/hostage/hostage_04.mdl"},
  230. description = [[You work at the bank, be careful!]],
  231. weapons = {},
  232. command = "banker",
  233. max = 0,
  234. salary = 40,
  235. admin = 0,
  236. vote = false,
  237. hasLicense = false,
  238. candemote = false,
  239. category = "Citizens",
  240. })
  241.  
  242. TEAM_HOBO = DarkRP.createJob("Hobo", {
  243. color = Color(255, 0, 0, 255),
  244. model = {"models/player/corpse1.mdl"},
  245. description = [[You're homeless.]],
  246. weapons = {"weapon_angryhobo", "weapon_bugbait"},
  247. command = "hobo",
  248. max = 0,
  249. salary = 0,
  250. admin = 0,
  251. vote = false,
  252. hasLicense = false,
  253. candemote = false,
  254. category = "Citizens",
  255. })
  256. TEAM_KHOBO = DarkRP.createJob("Hobo King", {
  257. color = Color(255, 0, 0, 255),
  258. model = {"models/cardboardman/cardboardman.mdl"},
  259. description = [[You're the king of the hobos!]],
  260. weapons = {"weapon_angryhobo", "weapon_bugbait", "weapon_gpee"},
  261. command = "hoboking",
  262. max = 0,
  263. salary = 0,
  264. admin = 0,
  265. vote = false,
  266. hasLicense = false,
  267. candemote = false,
  268. category = "Citizens",
  269. })
  270.  
  271. TEAM_CPCHIEF = DarkRP.createJob("Chief Of Police", {
  272. color = Color(20, 20, 255, 255),
  273. model = "models/player/uk_police/uk_police_07.mdl",
  274. description = [[The Chief is the leader of the Civil Protection unit.
  275. Coordinate the police force to enforce law in the city.
  276. Hit a player with arrest baton to put them in jail.
  277. Bash a player with a stunstick and they may learn to obey the law.
  278. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest.
  279. Type /wanted <name> to alert the public to the presence of a criminal.
  280. Type /jailpos to set the Jail Position]],
  281. weapons = {"arrest_stick", "unarrest_stick", "fas2_g36c", "fas2_glock20", "weapon_cuff_police", "stunstick", "door_ram", "weaponchecker"},
  282. command = "chiefofpolice",
  283. max = 1,
  284. salary = GAMEMODE.Config.normalsalary * 1.67,
  285. admin = 0,
  286. vote = true,
  287. hasLicense = true,
  288. chief = true,
  289. category = "Civil Protection",
  290. })
  291. TEAM_CPPOLICE = DarkRP.createJob("Police Officer", {
  292. color = Color(25, 25, 170, 255),
  293. model = {"models/player/uk_police/uk_police_02.mdl"},
  294. description = [[The protector of every citizen that lives in the city.
  295. You have the power to arrest criminals and protect innocents.
  296. Hit a player with your arrest baton to put them in jail.
  297. Bash a player with a stunstick and they may learn to obey the law.
  298. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  299. The Battering Ram can also unfreeze frozen props (if enabled).
  300. Type /wanted <name> to alert the public to the presence of a criminal.]],
  301. weapons = {"arrest_stick", "unarrest_stick", "fas2_glock20", "stunstick", "door_ram", "weaponchecker", "weapon_cuff_police"},
  302. command = "policeofficer",
  303. max = 5,
  304. salary = GAMEMODE.Config.normalsalary * 1.45,
  305. admin = 0,
  306. vote = true,
  307. hasLicense = true,
  308. category = "Civil Protection",
  309. })
  310. TEAM_GRAFFITI = DarkRP.createJob("Graffiti Artist ", {
  311. color = Color(255, 0, 0, 255),
  312. model = {"models/player/Group03/female_01.mdl"},
  313. description = [[You're a graffiti Artist, don't get caught vandalising!]],
  314. weapons = {"weapon_spraymhs"},
  315. command = "grafitti",
  316. max = 0,
  317. salary = 50,
  318. admin = 0,
  319. vote = false,
  320. hasLicense = false,
  321. candemote = false,
  322. category = "Citizens",
  323. })
  324.  
  325. TEAM_SPY = DarkRP.createJob("Spy", {
  326. color = Color(255, 0, 0, 255),
  327. model = {"models/player/smith.mdl"},
  328. description = [[You're the spy, you have a active camouflage so use it wisely!]],
  329. weapons = {"m9k_glock", "weapon_camo"},
  330. command = "spy",
  331. max = 0,
  332. salary = 100,
  333. admin = 0,
  334. vote = false,
  335. hasLicense = true,
  336. candemote = false,
  337. category = "Civil Protection"
  338. })
  339.  
  340. TEAM_DOG = DarkRP.createJob("Dog", {
  341. color = Color(255, 0, 0, 255),
  342. model = {"models/doge_player/doge_player.mdl"},
  343. description = [[You're a dog, nothing else to it.]],
  344. weapons = {"weapon_pet"},
  345. command = "dog",
  346. max = 0,
  347. salary = 100,
  348. admin = 0,
  349. vote = false,
  350. hasLicense = false,
  351. candemote = false,
  352. category = "Citizens",
  353. })
  354. TEAM_ASSASIN = DarkRP.createJob("Assasin", {
  355. color = Color(255, 0, 0, 255),
  356. model = {"models/player/bane.mdl"},
  357. description = [[You're an assassin, you can be hired just like a hitman. You have good weapons so don't waste the ammo!]],
  358. weapons = {"m9k_aw50", "m9k_deagle", "weapon_thehiddenblade"},
  359. command = "assasin",
  360. max = 0,
  361. salary = 100,
  362. admin = 0,
  363. vote = false,
  364. hasLicense = false,
  365. candemote = false,
  366. category = "VIP Jobs",
  367. customCheck = function(ply) return CLIENT or
  368. table.HasValue({"superadmin", "Owner", "VIP", "Mega VIP"}, ply:GetNWString("usergroup"))
  369. end,
  370. CustomCheckFailMsg = "This job is for Donator and Mega Donators only!",
  371. })
  372.  
  373. TEAM_DRUGDEALER = DarkRP.createJob("Drug Dealer", {
  374. color = Color(255, 0, 0, 255),
  375. model = {"models/player/cj.mdl"},
  376. description = [[You're a drug dealer! Purchase drugs from the Drug Growers and sell them on!]],
  377. weapons = {"weapon_thehiddenblade"},
  378. command = "drugdealer",
  379. max = 0,
  380. salary = 60,
  381. admin = 0,
  382. vote = false,
  383. hasLicense = false,
  384. candemote = false,
  385. category = "VIP Jobs",
  386. customCheck = function(ply) return CLIENT or
  387. table.HasValue({"superadmin", "Owner", "VIP", "Mega VIP"}, ply:GetNWString("usergroup"))
  388. end,
  389. CustomCheckFailMsg = "This job is for Donator and Mega Donators only!",
  390. })
  391.  
  392. TEAM_COCAINE = DarkRP.createJob("Cocaine Producer", {
  393. color = Color(255, 0, 0, 255),
  394. model = {"models/player/cj.mdl"},
  395. description = [[Cocaine Producer]],
  396. weapons = {},
  397. command = "Cocaine Producer",
  398. max = 0,
  399. salary = 60,
  400. admin = 0,
  401. vote = false,
  402. hasLicense = false,
  403. candemote = false,
  404. category = "Criminals",
  405. })
  406. TEAM_CM = DarkRP.createJob("Car Machanic", {
  407. color = Color(5, 255, 42, 255),
  408. model = {"models/player/hostage/hostage_02.mdl"},
  409. description = [[You fix cars and get paid to do it]],
  410. weapons = {"vc_wrench"},
  411. command = "cm",
  412. max = 2,
  413. salary = 75,
  414. admin = 0,
  415. vote = false,
  416. hasLicense = false,
  417. candemote = true,
  418. category = "Citizens",
  419. PlayerSpawn = function(ply)
  420. ply:SetMaxHealth(100)
  421. ply:SetHealth(100)
  422. ply:SetArmor(0)
  423. end
  424. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement