Advertisement
ldshaul01

Untitled

Aug 25th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.11 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_RAP = AddExtraTeam("Rapist", {
  22. color = Color(200, 20, 20, 255),
  23. model = {
  24. "models/player/Group01/Male_01.mdl"
  25. },
  26. description = [[You can go around and and rape people!
  27. Be sure not to get caught!
  28. Don't do it in public.]],
  29. weapons = {"m9k_knife", "weapon_rape"},
  30. command = "rape",
  31. max = 2,
  32. salary = 5,
  33. admin = 1,
  34. vote = false,
  35. hasLicense = false
  36. })
  37.  
  38. TEAM_DEAL = DarkRP.createJob("Drug Dealer", {
  39. color = Color(90, 90, 90, 255),
  40. model = {
  41. "models/player/kuma/taliban_bomber.mdl"
  42. },
  43. description = [[Deal drugs to everyone....
  44. Don't get caught or you will be arrested]],
  45. weapons = {},
  46. command = "ddealer",
  47. max = 3,
  48. salary = GAMEMODE.Config.normalsalary,
  49. admin = 0,
  50. vote = false,
  51. hasLicense = false
  52. })
  53.  
  54. TEAM_THIEF = AddExtraTeam("Thief", {
  55. color = Color(67, 34, 128, 255),
  56. model = {
  57. "models/player/arctic.mdl"
  58. },
  59. description = [[As a Thief you can rob or try over rule you leader "Super Thief"
  60. Warning!: he can kill you back!]],
  61. weapons = {"keypad_cracker", "lockpick"},
  62. command = "thief",
  63. max = 3,
  64. salary = 50,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false
  68. })
  69.  
  70. TEAM_SUPER = AddExtraTeam("Super Thief", {
  71. color = Color(27, 100, 40, 255),
  72. model = {
  73. "models/player/barney.mdl"
  74. },
  75. description = [[You are the Super Thief you are the laeder
  76. of the thiefs you will send them into "battle"
  77.  
  78. Warning: they can over run you!]],
  79. weapons = {"m9k_glock", "pro_lockpick_update", "climb_swep2", "keypad_cracker"},
  80. command = "sthief",
  81. max = 1,
  82. salary = 150,
  83. admin = 1,
  84. vote = false,
  85. hasLicense = false
  86. })
  87.  
  88.  
  89. TEAM_HOTEL = AddExtraTeam("Hotel Manager", {
  90. color = Color(74, 174, 63, 255),
  91. model = {
  92. "models/player/humans/suits1/male_01.mdl",
  93. "models/player/humans/suits1/male_02.mdl",
  94. "models/player/humans/suits1/male_03.mdl",
  95. "models/player/humans/suits1/male_04.mdl"
  96. },
  97. description = [[Kill those who are close to death.]],
  98. weapons = {},
  99. command = "hotel",
  100. max = 1,
  101. salary = 80,
  102. admin = 0,
  103. vote = false,
  104. hasLicense = false
  105. })
  106.  
  107. TEAM_MOVIE = AddExtraTeam("Movie Manager", {
  108. color = Color(0, 255, 162, 255),
  109. model = {
  110. "models/player/humans/suits1/male_01.mdl",
  111. "models/player/humans/suits1/male_02.mdl",
  112. "models/player/humans/suits1/male_03.mdl",
  113. "models/player/humans/suits1/male_04.mdl"
  114. },
  115. description = [[Manage your own movie theater.]],
  116. weapons = {},
  117. command = "movie",
  118. max = 1,
  119. salary = 70,
  120. admin = 0,
  121. vote = false,
  122. hasLicense = false
  123. })
  124.  
  125. TEAM_HITMAN = AddExtraTeam("Hitman", {
  126. color = Color(100, 100, 100, 255),
  127. model = {
  128. "models/player/agent_47.mdl"
  129. },
  130. description = [[As a Hitman, you kill from a distance. Don't get caught as murder is illegal in this city.]],
  131. weapons = {"m9k_coltpython", "m9k_svu"},
  132. command = "hitman",
  133. max = 1,
  134. salary = 50,
  135. admin = 0,
  136. vote = false,
  137. hasLicense = false
  138. })
  139.  
  140. TEAM_BGUARD = AddExtraTeam("Body guard", {
  141. color = Color(200, 50, 5, 255),
  142. model = {
  143. "models/player/kuma/taliban_grunt.mdl"
  144. },
  145. description = [[You are a guard you are to guard shops and bases
  146. Warning: You can not raid!]],
  147. weapons = {"stunstick", "m9k_deagle"},
  148. command = "guard",
  149. max = 2,
  150. salary = 50,
  151. admin = 0,
  152. vote = false,
  153. hasLicense = false
  154. })
  155.  
  156. TEAM_PIMP = AddExtraTeam("Strip club owner", {
  157. color = Color(130, 30, 30, 255),
  158. model = {
  159. "models/player/eli.mdl"
  160. },
  161. description = [[Keep your Stripers safe!]],
  162. weapons = {"m9k_deagle"},
  163. command = "Pimp",
  164. max = 1,
  165. salary = 100,
  166. admin = 0,
  167. vote = false,
  168. hasLicense = false
  169. })
  170.  
  171. TEAM_HOE = AddExtraTeam("Stripper", {
  172. color = Color(130, 30, 30, 255),
  173. model = {
  174. "models/player/alyx.mdl"
  175. },
  176. description = [[Listen to your daddy]],
  177. weapons = {},
  178. command = "Hoe",
  179. max = 5,
  180. salary = 10,
  181. admin = 0,
  182. vote = false,
  183. hasLicense = false
  184. })
  185.  
  186. TEAM_CARDEALER = DarkRP.createJob("Car Dealer", {
  187. color = Color(70, 70, 70, 255),
  188. model = {
  189. "models/player/guerilla.mdl"
  190. },
  191. description = [[Sell cars to the public for a living!]],
  192. weapons = {},
  193. command = "cardealer",
  194. max = 2,
  195. salary = 60,
  196. admin = 0,
  197. vote = false,
  198. hasLicense = false
  199. })
  200.  
  201. TEAM_MGD = AddExtraTeam("M9K Gun Dealer", {
  202. color = Color(110, 35, 35, 245),
  203. model = {
  204. "models/player/riot.mdl"
  205. },
  206. description = [[Sell Military weapons]],
  207. weapons = {},
  208. command = "Mgd",
  209. max = 1,
  210. salary = 80,
  211. admin = 0,
  212. vote = false,
  213. hasLicense = false
  214. })
  215.  
  216. TEAM_PGUARD = AddExtraTeam("Riot Squad", {
  217. color = Color(20, 20, 255, 255),
  218. model = {
  219. "models/player/urban.mdl"
  220. },
  221. description = [[You are the Riot Squad you guard the town with your life
  222.  
  223. Keep a close eye on it.]],
  224. weapons = {"m9k_deagle", "stunstick"},
  225. command = "riot",
  226. max = 2,
  227. salary = 50,
  228. admin = 0,
  229. vote = true,
  230. hasLicense = true
  231. })
  232.  
  233. TEAM_SPF = AddExtraTeam("Special Forces", {
  234. color = Color(110, 35, 35, 245),
  235. model = {
  236. "models/player/gasmask.mdl"
  237. },
  238. description = [[Get called in for missions]],
  239. weapons = {"m9k_m4a1"},
  240. command = "spf",
  241. max = 3,
  242. salary = 100,
  243. admin = 0,
  244. vote = true,
  245. hasLicense = true
  246. })
  247.  
  248. TEAM_HOSF = AddExtraTeam("Head Of Special Force", {
  249. color = Color(110, 35, 35, 245),
  250. model = {
  251. "models/player/swat.mdl"
  252. },
  253. description = [[You are the head of special force]],
  254. weapons = {"m9k_m4a1", "m9k_deagle"},
  255. command = "hosf",
  256. max = 1,
  257. salary = 120,
  258. admin = 0,
  259. vote = true,
  260. hasLicense = true
  261. })
  262.  
  263. TEAM_POLICEM = AddExtraTeam("Civil Protection Medic", {
  264. color = Color(25, 25, 170, 255),
  265. model = {
  266. "models/player/dod_american.mdl"
  267. },
  268. description = [[Your job is to heal the police and the president]],
  269. weapons = {"m9k_glock", "med_kit"},
  270. command = "cpm",
  271. max = 1,
  272. salary = 90,
  273. admin = 0,
  274. vote = true,
  275. hasLicense = true
  276. })
  277.  
  278. TEAM_KHOBO = AddExtraTeam("King Hobo", {
  279. color = Color(80, 45, 0, 255),
  280. model = {
  281. "models/vortigaunt.mdl"
  282. },
  283. description = [[The lowest member of society. All people see you laugh.
  284. You have no home.
  285. Beg for your food and money
  286. Sing for everyone who passes to get money
  287. Make your own wooden home somewhere in a corner or
  288. outside someone else's door]],
  289. weapons = {"weapon_bugbait"},
  290. command = "khobo",
  291. max = 1,
  292. salary = 2,
  293. admin = 0,
  294. vote = false,
  295. hasLicense = false
  296. })
  297.  
  298.  
  299. TEAM_GHOBO = AddExtraTeam("God Hobo", {
  300. color = Color(80, 45, 0, 255),
  301. model = {
  302. "models/Combine_turrets/Floor_turret.mdl"
  303. },
  304. description = [[The lowest member of society. All people see you laugh.
  305. You have no home.
  306. Beg for your food and money
  307. Sing for everyone who passes to get money
  308. Make your own wooden home somewhere in a corner or
  309. outside someone else's door]],
  310. weapons = {"weapon_bugbait"},
  311. command = "ghobo",
  312. max = 1,
  313. salary = 10,
  314. admin = 0,
  315. vote = false,
  316. hasLicense = false
  317. })
  318.  
  319. TEAM_PET = AddExtraTeam("Pet", {
  320. color = Color(0, 0, 0, 255),
  321. model = {
  322. "models/Lamarr.mdl"
  323. },
  324. description = [[You are pet be a good one]],
  325. weapons = {},
  326. command = "pet",
  327. max = 2,
  328. salary = 15,
  329. admin = 0,
  330. vote = false,
  331. hasLicense = false
  332. })
  333.  
  334. TEAM_SPDRMN = AddExtraTeam("Spiderman", {
  335. color = Color(255, 0, 0, 255),
  336. model = {
  337. "models/player/tasm2spider.mdl"
  338. },
  339. description = [[You are a vigalanty!
  340. Swing around and try to protect the town!]],
  341.  
  342. weapons = {"weapon_fists", "spiderman's_swep"},
  343. command = "spiderman",
  344. max = 1,
  345. salary = 500,
  346. admin = 1,
  347. vote = false,
  348. hasLicense = false
  349. })
  350.  
  351. TEAM_BATMAN = AddExtraTeam("Batman", {
  352. color = Color(255, 0, 0, 255),
  353. model = {
  354. "models/player/superheroes/batman.mdl"
  355. },
  356. description = [[You are a vigalanty!
  357. Use your super money powers and tools to save the town!]],
  358.  
  359. weapons = {"weapon_fists", "grapplehook"},
  360. command = "batman",
  361. max = 1,
  362. salary = 1000,
  363. admin = 1,
  364. vote = false,
  365. hasLicense = false
  366. })
  367.  
  368. TEAM_DEADPOOL = AddExtraTeam("Deadpool", {
  369. color = Color(226, 163, 16, 255),
  370. model = {
  371. "models/apocmodels/deadpool/deadpoolultimateplayer.mdl"
  372. },
  373. description = [[You are a vigalanty!
  374.  
  375. Use your speed and deadly swords to raid and ear money!]],
  376.  
  377. weapons = {"weapon_fists", ""},
  378. command = "deadpool",
  379. max = 1,
  380. salary = 500,
  381. admin = 1,
  382. vote = false,
  383. hasLicense = false
  384. })
  385.  
  386. TEAM_AOD = AddExtraTeam("Admin On Duty", {
  387. color = Color(50, 50, 50, 255),
  388. model = {
  389. "models/player/Combine_Super_Soldier.mdl"
  390. },
  391. description = [[While in this class you are an admin.
  392. There is no fun.
  393. There is no messing around.
  394. Enforce the rules and follow them as well]],
  395. weapons = {"m9k_416"},
  396. command = "aod",
  397. max = 3,
  398. salary = 500,
  399. admin = 1,
  400. vote = false,
  401. hasLicense = false
  402. })
  403.  
  404. TEAM_SEWER = AddExtraTeam("Sewer Monster", {
  405. color = Color(250, 250, 250, 255),
  406. model = {
  407. "models/player/hellknight/hellknight.mdl"
  408. },
  409. description = [[You are a creature who lives in the dark. You thrive in the dark.
  410. You are a KOS target.
  411. You may kill anyone during the night(not at day), but stay underground during the day.]],
  412. weapons = {"weapon_chainsaw_new"},
  413. command = "sewer",
  414. max = 1,
  415. salary = 15,
  416. admin = 1,
  417. vote = false,
  418. hasLicense = false
  419. })
  420.  
  421. TEAM_CANNIBAL = AddExtraTeam("Cannibal", {
  422. color = Color(188, 9, 9, 255),
  423. model = {
  424. "models/player/Group01/Female_06.mdl"
  425. },
  426.  
  427. description = [[You kill and eat people for food. Doing this also heals you.
  428.  
  429. Try to blend in with the public and don't get caught.]],
  430. weapons = {"weapon_vampire"},
  431. command = "cannibal",
  432. max = 1,
  433. salary = 60,
  434. admin = 1,
  435. vote = false,
  436. hasLicense = false
  437. })
  438.  
  439. TEAM_FIREFIGHTER = AddExtraTeam("Fire Fighter", {
  440. color = Color(188, 9, 9, 255),
  441. model = {
  442. "models/fearless/fireman2.mdl"
  443. },
  444. description = [[Help free the city from the fires caused by the pyro!]],
  445. weapons = {"weapon_extinguisher"},
  446. command = "ffighter",
  447. max = 3,
  448. salary = 60,
  449. admin = 1,
  450. vote = false,
  451. hasLicense = false
  452. })
  453.  
  454.  
  455. TEAM_GRIM = AddExtraTeam("Grim Reaper", {
  456. color = Color(255, 255, 255, 255),
  457. model = {
  458. "models/grim.mdl"
  459. },
  460. description = [[Kill those who are close to death.]],
  461. weapons = {"weapon_rubyrose_scythe"},
  462. command = "grim",
  463. max = 1,
  464. salary = 80,
  465. admin = 1,
  466. vote = false,
  467. hasLicense = false
  468. })
  469.  
  470. TEAM_IRON = AddExtraTeam("Iron Man", {
  471. color = Color(255, 247, 0, 255),
  472. model = {
  473. "models/avengers/iron_man/mark7_player.mdl"
  474. },
  475. description = [[ Iron Man has created many military weapons, some of which,
  476. along with other technological devices of his making,
  477. have been integrated into his suit, helping him fight crime]],
  478. weapons = {"weapon_iron_man"},
  479. command = "ironman",
  480. max = 1,
  481. salary = 1000,
  482. admin = 1,
  483. vote = false,
  484. hasLicense = false
  485. })
  486.  
  487. TEAM_JOKER = AddExtraTeam("Joker", {
  488. color = Color(182, 8, 165, 255),
  489. model = {
  490. "models/player/slow/jamis/mkvsdcu/joker/slow_pub.mdl"
  491. },
  492. description = [[You are Batman's rival. Make his life hell.]],
  493. weapons = {"m9k_deagle", "m9k_m14sp", "pro_lockpick_update"},
  494. command = "joker",
  495. max = 1,
  496. salary = 500,
  497. admin = 1,
  498. vote = false,
  499. hasLicense = false
  500. })
  501.  
  502. TEAM_PYRO = AddExtraTeam("Pyro", {
  503. color = Color(255, 71, 34, 255),
  504. model = {
  505. "models/yellowlake/gh_sas_fngpos.mdl"
  506. },
  507. description = [[You CANNOT set people on fire, unless they did damage to your health in anyway.
  508. You CANNOT excessively set fire to someones home/props. Don't be annoying with it.
  509. You CAN set peoples house/property/props on fire but it is illegal..]],
  510. weapons = {"swep_flamethrower_d2k"},
  511. command = "pyro",
  512. max = 3,
  513. salary = 500,
  514. admin = 1,
  515. vote = false,
  516. hasLicense = false
  517. })
  518.  
  519.  
  520.  
  521. /*---------------------------------------------------------------------------
  522. Define which team joining players spawn into and what team you change to if demoted
  523. ---------------------------------------------------------------------------*/
  524. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  525.  
  526.  
  527. /*---------------------------------------------------------------------------
  528. Define which teams belong to civil protection
  529. Civil protection can set warrants, make people wanted and do some other police related things
  530. ---------------------------------------------------------------------------*/
  531. GAMEMODE.CivilProtection = {
  532. [TEAM_POLICE] = true,
  533. [TEAM_CHIEF] = true,
  534. [TEAM_MAYOR] = true,
  535. }
  536.  
  537. /*---------------------------------------------------------------------------
  538. Jobs that are hitmen (enables the hitman menu)
  539. ---------------------------------------------------------------------------*/
  540. DarkRP.addHitmanTeam(TEAM_HITMAN)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement