Advertisement
Guest User

Untitled

a guest
May 3rd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 43.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. -----Police Force ---------------------------------------------------------
  22. TEAM_COP = DarkRP.createJob("Police Officer", {
  23. color = Color(0, 102, 255, 255),
  24. model = {"models/player/police.mdl", "models/player/police_fem.mdl"},
  25. description = [[The protector of every citizen that lives in the city.
  26. You have the power to arrest criminals and protect innocents.
  27. Bash(mouse1) a player with the police button to 3 times stun.
  28. Hit(mouse2) a player with your arrest baton to deal 10 damage to them.
  29. Reload to arrest/unarrest/wanted/warrent a player or the owners door
  30. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  31. The Battering Ram can also unfreeze frozen props.
  32. Type /wanted <name> to alert the public to the presence of a criminal.]],
  33. weapons = {"weapon_policebaton","door_ram", "weaponchecker", "m9k_colt1911"},
  34. command = "cop",
  35. max = 5,
  36. salary = 50,
  37. admin = 0,
  38. vote = true,
  39. hasLicense = true,
  40. candemote = true,
  41. -- CustomCheck
  42. medic = false,
  43. chief = false,
  44. mayor = false,
  45. hobo = false,
  46. cook = false,
  47. category = "Police Force",
  48. })
  49.  
  50. TEAM_COP = DarkRP.createJob("Police Sergeant", {
  51. color = Color(0, 102, 255, 255),
  52. model = {"models/player/barney.mdl"},
  53. description = [[The protector of every citizen that lives in the city.
  54. You have the power to arrest criminals and protect innocents.
  55. Bash(mouse1) a player with the police button to 3 times stun.
  56. Hit(mouse2) a player with your arrest baton to deal 10 damage to them.
  57. Reload to arrest/unarrest/wanted/warrent a player or the owners door
  58. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  59. The Battering Ram can also unfreeze frozen props.
  60. Type /wanted <name> to alert the public to the presence of a criminal.]],
  61. weapons = {"weapon_policebaton","door_ram", "weaponchecker", "m9k_colt1911","m9k_mp5"},
  62. command = "sergeant",
  63. max = 2,
  64. salary = 63,
  65. admin = 0,
  66. vote = true,
  67. hasLicense = true,
  68. candemote = true,
  69. -- CustomCheck
  70. medic = false,
  71. chief = false,
  72. mayor = false,
  73. hobo = false,
  74. cook = false,
  75. category = "Police Force",
  76. })
  77.  
  78. TEAM_CHIEF = DarkRP.createJob("Police Commissioner", {
  79. color = Color(0, 102, 255, 255),
  80. model = {"models/player/bobert/AOCG.mdl"},
  81. description = [[The protector of every citizen that lives in the city.
  82. You have the power to arrest criminals and protect innocents.
  83. Bash(mouse1) a player with the police button to 3 times stun.
  84. Hit(mouse2) a player with your arrest baton to deal 10 damage to them.
  85. Reload to arrest/unarrest/wanted/warrent a player or the owners door
  86. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  87. The Battering Ram can also unfreeze frozen props.
  88. Type /wanted <name> to alert the public to the presence of a criminal.]],
  89. weapons = {"weapon_policebaton","door_ram", "weaponchecker", "m9k_colt1911", "m9k_m3"},
  90. command = "commissioner",
  91. max = 1,
  92. salary = 75,
  93. admin = 0,
  94. vote = true,
  95. hasLicense = true,
  96. candemote = true,
  97. -- CustomCheck
  98. medic = false,
  99. chief = true,
  100. mayor = false,
  101. hobo = false,
  102. cook = false,
  103. category = "Police Force",
  104. })
  105.  
  106.  
  107. -----Special Weapons Attack Team(S.W.A.T.)-------------------------------------------
  108.  
  109. TEAM_SWAT = DarkRP.createJob("S.W.A.T. Recruit", {
  110. color = Color(0, 51, 204, 255),
  111. model = {"models/player/swat.mdl"},
  112. description = [[You are a SWAT Recruit. The highest level of the Police force next to the Chief.
  113. Help raid with the PD, MUST HAVE A WARRENT.]],
  114. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  115. command = "swatre",
  116. max = 5,
  117. salary = 75,
  118. admin = 0,
  119. vote = true,
  120. hasLicense = true,
  121. candemote = true,
  122. -- CustomCheck
  123. medic = false,
  124. chief = false,
  125. mayor = false,
  126. hobo = false,
  127. cook = false,
  128. category = "Special Weapons Attack Team",
  129. })
  130.  
  131. TEAM_SWAT = DarkRP.createJob("S.W.A.T. Tactical", {
  132. color = Color(0, 51, 204, 255),
  133. model = {
  134. "models/player/gasmask.mdl",
  135. "models/player/urban.mdl"},
  136. description = [[You are a SWAT Tactical. The highest level of the Police force next to the Chief.
  137. Help raid with the PD, MUST HAVE A WARRENT]],
  138. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  139. command = "swatta",
  140. max = 5,
  141. salary = 75,
  142. admin = 0,
  143. vote = false,
  144. hasLicense = true,
  145. candemote = true,
  146. -- CustomCheck
  147. medic = false,
  148. chief = false,
  149. mayor = false,
  150. hobo = false,
  151. cook = false,
  152. category = "Special Weapons Attack Team",
  153. })
  154.  
  155. TEAM_SWAT = DarkRP.createJob("S.W.A.T. Medic", {
  156. color = Color(0, 51, 204, 255),
  157. model = {
  158. "models/player/gasmask.mdl",
  159. "models/player/urban.mdl"},
  160. description = [[You are a SWAT Medic. The highest level of the Police force next to the Chief.
  161. Help raid with the PD, MUST HAVE A WARRENT]],
  162. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  163. command = "swatmed",
  164. max = 5,
  165. salary = 75,
  166. admin = 0,
  167. vote = false,
  168. hasLicense = true,
  169. candemote = true,
  170. -- CustomCheck
  171. medic = false,
  172. chief = false,
  173. mayor = false,
  174. hobo = false,
  175. cook = false,
  176. category = "Special Weapons Attack Team",
  177. })
  178.  
  179. TEAM_SWAT = DarkRP.createJob("S.W.A.T. Sniper", {
  180. color = Color(0, 51, 204, 255),
  181. model = {
  182. "models/player/gasmask.mdl",
  183. "models/player/urban.mdl"},
  184. description = [[]],
  185. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  186. command = "swatsnip",
  187. max = 2,
  188. salary = 75,
  189. admin = 0,
  190. vote = false,
  191. hasLicense = true,
  192. candemote = true,
  193. -- CustomCheck
  194. medic = false,
  195. chief = false,
  196. mayor = false,
  197. hobo = false,
  198. cook = false,
  199. category = "Special Weapons Attack Team",
  200. })
  201.  
  202. TEAM_SWAT = DarkRP.createJob("S.W.A.T. Heavy", {
  203. color = Color(0, 51, 204, 255),
  204. model = {
  205. "models/player/gasmask.mdl",
  206. "models/player/urban.mdl"},
  207. description = [[]],
  208. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  209. command = "swathev",
  210. max = 200,
  211. salary = 75,
  212. admin = 0,
  213. vote = false,
  214. hasLicense = true,
  215. candemote = true,
  216. -- CustomCheck
  217. medic = false,
  218. chief = false,
  219. mayor = false,
  220. hobo = false,
  221. cook = false,
  222. category = "Special Weapons Attack Team",
  223. })
  224.  
  225. TEAM_COMMANDER= DarkRP.createJob("Swat Commander", {
  226. color = Color(0, 51, 204, 255),
  227. model = {"models/player/riot.mdl"},
  228. description = [[You are the commandor in chief of your SWAT Team, command where to raid
  229. and where to go, and protect the city from criminals. You still take orders from the Mayor,
  230. but you command the SWATs what to do and where to go if the Mayor does not specify.]],
  231. weapons = {"m9k_usp","weapon_policebaton", "door_ram", "weaponchecker"},
  232. command = "swatcom",
  233. max = 1,
  234. salary = 75,
  235. admin = 0,
  236. vote = false,
  237. hasLicense = true,
  238. candemote = true,
  239. -- CustomCheck
  240. medic = false,
  241. chief = false,
  242. mayor = false,
  243. hobo = false,
  244. cook = false,
  245. category = "Special Weapons Attack Team",
  246. })
  247.  
  248. -----Goverment-------------------------------------------------------
  249.  
  250. TEAM_GOV = DarkRP.createJob("Secret Service", {
  251. color = Color(255, 26, 26, 255),
  252. model = {"models/player/riot.mdl"},
  253. description = [[You are Secret Service. You must protect Mayor.
  254. You must also follow all the laws]],
  255. weapons = {"m9k_usp", "m9k_mp5sd","weapon_policebaton", "door_ram", "weaponchecker"},
  256. command = "secretservice",
  257. max = 3,
  258. salary = 75,
  259. admin = 0,
  260. vote = true,
  261. hasLicense = true,
  262. candemote = true,
  263. -- CustomCheck
  264. medic = false,
  265. chief = false,
  266. mayor = false,
  267. hobo = false,
  268. cook = false,
  269. category = "Government Personnel",
  270. })
  271.  
  272. TEAM_MAYOR = DarkRP.createJob("President", {
  273. color = Color(255, 26, 26, 255),
  274. model = {"models/obama/obama.mdl"},
  275. description = [[You are the president of the city creates laws to govern the city.
  276. If you are the president you may create and accept warrants.
  277. Type /wanted <name> to warrant a player.
  278. Type /lockdown initiate a lockdown of the city.
  279. Everyone must be inside during a lockdown.
  280. The cops patrol the area.
  281. /unlockdown to end a lockdown]],
  282. weapons = {"m9k_usp", "m9k_mp5sd","weapon_policebaton", "door_ram", "weaponchecker"},
  283. command = "president",
  284. max = 1,
  285. salary = 100,
  286. admin = 0,
  287. vote = true,
  288. hasLicense = true,
  289. candemote = true,
  290. -- CustomCheck
  291. medic = false,
  292. chief = false,
  293. mayor = false,
  294. hobo = false,
  295. cook = false,
  296. category = "Government Personnel",
  297. })
  298.  
  299.  
  300. -----Bank--------------------------------------------------------------
  301. TEAM_BANK = DarkRP.createJob("Bank Teller", {
  302. color = Color(51, 51, 51, 255),
  303. model = {"models/player/Group01/Female_01.mdl",
  304. "models/player/Group01/Female_02.mdl",
  305. "models/player/Group01/Female_03.mdl",
  306. "models/player/Group01/Female_04.mdl",
  307. "models/player/Group01/Female_06.mdl",
  308. "models/player/group01/male_01.mdl",
  309. "models/player/Group01/Male_02.mdl",
  310. "models/player/Group01/male_03.mdl",
  311. "models/player/Group01/Male_04.mdl",
  312. "models/player/Group01/Male_05.mdl",
  313. "models/player/Group01/Male_06.mdl",
  314. "models/player/Group01/Male_07.mdl",
  315. "models/player/Group01/Male_08.mdl",
  316. "models/player/Group01/Male_09.mdl"},
  317. description = [[You help the banker and folloe his commands. Help him take in money and distribute loans]],
  318. weapons = {},
  319. command = "teller",
  320. max = 2,
  321. salary = 5,
  322. admin = 0,
  323. vote = true,
  324. hasLicense = false,
  325. candemote = false,
  326. -- CustomCheck
  327. medic = false,
  328. chief = false,
  329. mayor = false,
  330. hobo = false,
  331. cook = false,
  332. category = "Bank Staff",
  333. })
  334.  
  335. TEAM_BANK = DarkRP.createJob("Bank Guard", {
  336. color = Color(51, 51, 51, 255),
  337. model = {"models/player/Group03/Female_01.mdl",
  338. "models/player/Group03/Female_02.mdl",
  339. "models/player/Group03/Female_03.mdl",
  340. "models/player/Group03/Female_04.mdl",
  341. "models/player/Group03/Female_06.mdl",
  342. "models/player/group03/male_01.mdl",
  343. "models/player/Group03/Male_02.mdl",
  344. "models/player/Group03/male_03.mdl",
  345. "models/player/Group03/Male_04.mdl",
  346. "models/player/Group03/Male_05.mdl",
  347. "models/player/Group03/Male_06.mdl",
  348. "models/player/Group03/Male_07.mdl",
  349. "models/player/Group03/Male_08.mdl",
  350. "models/player/Group03/Male_09.mdl"},
  351. description = [[You protect the bank, and you also protect the banker.
  352. You can protect the vault, or protect the bank itself.]],
  353. weapons = {"stunstick", "m9k_colt1911"},
  354. command = "bankgaurd",
  355. max = 2,
  356. salary = 35,
  357. admin = 0,
  358. vote = true,
  359. hasLicense = true,
  360. candemote = true,
  361. -- CustomCheck
  362. medic = false,
  363. chief = false,
  364. mayor = false,
  365. hobo = false,
  366. cook = false,
  367. category = "Bank Staff",
  368. })
  369.  
  370. TEAM_OWNER = DarkRP.createJob("Bank Owner", {
  371. color = Color(51, 51, 51, 255),
  372. model = {"models/player/gman_high.mdl",\
  373. "models/player/kleiner.mdl",
  374. "models/player/magnusson.mdl",
  375. "models/player/breen.mdl"},
  376. description = [[You watch the bank and protect the vault. You get bank guards to do the same.
  377. You can also allow players to keep their printers in safely and legally. You can make loans,
  378. or allow players to make deposits.]],
  379. weapons = {},
  380. command = "banler",
  381. max = 1,
  382. salary = 75,
  383. admin = 0,
  384. vote = true,
  385. hasLicense = false,
  386. candemote = false,
  387. -- CustomCheck
  388. medic = false,
  389. chief = false,
  390. mayor = false,
  391. hobo = false,
  392. cook = false,
  393. category = "Bank Staff",
  394. })
  395.  
  396. -----Dealer-----------------------------------------------------------
  397.  
  398. TEAM_GUN = DarkRP.createJob("Firearms Dealer", {
  399. color = Color(0, 153, 0, 255),
  400. model = {"models/player/hostage/hostage_01.mdl",
  401. "models/player/hostage/hostage_01.mdl",
  402. "models/player/hostage/hostage_01.mdl",
  403. "models/player/hostage/hostage_01.mdl"},
  404. description = [[Sell guns to the public.]],
  405. weapons = {},
  406. command = "firearm",
  407. max = 3,
  408. salary = 30,
  409. admin = 0,
  410. vote = true,
  411. hasLicense = false,
  412. candemote = true,
  413. -- CustomCheck
  414. medic = false,
  415. chief = false,
  416. mayor = false,
  417. hobo = false,
  418. cook = false,
  419. category = "Dealers",
  420. })
  421.  
  422. TEAM_GUN = DarkRP.createJob("Ultra Gun Dealer", {
  423. color = Color(0, 153, 0, 255),
  424. model = {"models/player/hostage/hostage_01.mdl",
  425. "models/player/hostage/hostage_01.mdl",
  426. "models/player/hostage/hostage_01.mdl",
  427. "models/player/hostage/hostage_01.mdl"},
  428. description = [[Sell Better guns to the public.]],
  429. weapons = {},
  430. command = "ultragun",
  431. max = 2,
  432. salary = 75,
  433. admin = 0,
  434. vote = false,
  435. hasLicense = false,
  436. candemote = true,
  437. -- CustomCheck
  438. medic = false,
  439. chief = false,
  440. mayor = false,
  441. hobo = false,
  442. cook = false,
  443. category = "Dealers",
  444. })
  445.  
  446. TEAM_ARM = DarkRP.createJob("Armorer", {
  447. color = Color(0, 153, 0, 255),
  448. model = {"models/player/guerilla.mdl",
  449. "models/player/phoenix.mdl"},
  450. description = [[Sell Armor, lockpicks, ect. to the public]],
  451. weapons = {},
  452. command = "",
  453. max = ,
  454. salary = ,
  455. admin = 0,
  456. vote = true,
  457. hasLicense = true,
  458. candemote = true,
  459. -- CustomCheck
  460. medic = false,
  461. chief = false,
  462. mayor = false,
  463. hobo = false,
  464. cook = false,
  465. category = "Dealers",
  466. })
  467.  
  468. TEAM_BOMB = DarkRP.createJob("Demolition Expert", {
  469. color = Color(0, 153, 0, 255),
  470. model = {"models/player/guerilla.mdl",
  471. "models/player/guerilla.mdl",
  472. "models/player/phoenix.mdl"},
  473. description = [[Sell exslosives to the public.]],
  474. weapons = {},
  475. command = "demolition",
  476. max = 2,
  477. salary = 20,
  478. admin = 0,
  479. vote = false,
  480. hasLicense = false,
  481. candemote = true,
  482. -- CustomCheck
  483. medic = false,
  484. chief = false,
  485. mayor = false,
  486. hobo = false,
  487. cook = false,
  488. category = "Dealers",
  489. })
  490.  
  491. TEAM_DRUG = DarkRP.createJob("Drug Dealer", {
  492. color = Color(0, 153, 0, 255),
  493. model = {"models/player/eli.mdl",
  494. "models/player/soldier_stripped.mdl"},
  495. description = [[sell]],
  496. weapons = {},
  497. command = "drugdealer",
  498. max = 4,
  499. salary = 20,
  500. admin = 0,
  501. vote = true,
  502. hasLicense = true,
  503. candemote = true,
  504. -- CustomCheck
  505. medic = false,
  506. chief = false,
  507. mayor = false,
  508. hobo = false,
  509. cook = false,
  510. category = "Dealers",
  511. })
  512.  
  513. TEAM_DRUG = DarkRP.createJob("Bartender", {
  514. color = Color(0, 153, 0, 255),
  515. model = {""},
  516. description = [[]],
  517. weapons = {},
  518. command = "",
  519. max = ,
  520. salary = ,
  521. admin = 0,
  522. vote = true,
  523. hasLicense = true,
  524. candemote = true,
  525. -- CustomCheck
  526. medic = false,
  527. chief = false,
  528. mayor = false,
  529. hobo = false,
  530. cook = false,
  531. category = "Dealers",
  532. })
  533.  
  534. -----Hitmen-----------------------------------------------------------
  535.  
  536. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  537. color = Color(255, 255, 0, 255),
  538. model = {""},
  539. description = [[]],
  540. weapons = {},
  541. command = "hitman",
  542. max = 4,
  543. salary = 50,
  544. admin = 0,
  545. vote = true,
  546. hasLicense = true,
  547. candemote = true,
  548. -- CustomCheck
  549. medic = false,
  550. chief = false,
  551. mayor = false,
  552. hobo = false,
  553. cook = false,
  554. category = "Hitmen",
  555. })
  556.  
  557. TEAM_HITMAN = DarkRP.createJob("Mercenary", {
  558. color = Color(255, 255, 0, 255),
  559. model = {""},
  560. description = [[]],
  561. weapons = {},
  562. command = "",
  563. max = 4,
  564. salary = 50,
  565. admin = 0,
  566. vote = false,
  567. hasLicense = true,
  568. candemote = true,
  569. -- CustomCheck
  570. medic = false,
  571. chief = false,
  572. mayor = false,
  573. hobo = false,
  574. cook = false,
  575. category = "Hitmen",
  576. })
  577.  
  578. TEAM_HITMAN = DarkRP.createJob("Agent 47", {
  579. color = Color(255, 255, 0, 255),
  580. model = {""},
  581. description = [[]],
  582. weapons = {},
  583. command = "",
  584. max = 4,
  585. salary = 50,
  586. admin = 0,
  587. vote = false,
  588. hasLicense = true,
  589. candemote = true,
  590. -- CustomCheck
  591. medic = false,
  592. chief = false,
  593. mayor = false,
  594. hobo = false,
  595. cook = false,
  596. category = "Hitmen",
  597. })
  598.  
  599. ----- Thieves---------------------------------------------------------
  600.  
  601. TEAM_THIEF = DarkRP.createJob("Pickpocketer", {
  602. color = Color(204, 204, 204, 255),
  603. model = {""},
  604. description = [[]],
  605. weapons = {},
  606. command = "Pickpocketer",
  607. max = 4,
  608. salary = 25,
  609. admin = 0,
  610. vote = true,
  611. hasLicense = true,
  612. candemote = true,
  613. -- CustomCheck
  614. medic = false,
  615. chief = false,
  616. mayor = false,
  617. hobo = false,
  618. cook = false,
  619. category = "Thieves",
  620. })
  621.  
  622. TEAM_THIEF = DarkRP.createJob("Thief", {
  623. color = Color(204, 204, 204, 255),
  624. model = {""},
  625. description = [[]],
  626. weapons = {},
  627. command = "Theif",
  628. max = 4,
  629. salary = 25,
  630. admin = 0,
  631. vote = true,
  632. hasLicense = true,
  633. candemote = true,
  634. -- CustomCheck
  635. medic = false,
  636. chief = false,
  637. mayor = false,
  638. hobo = false,
  639. cook = false,
  640. category = "Thieves",
  641. })
  642.  
  643. TEAM_THIEF = DarkRP.createJob("Professional Thief", {
  644. color = Color(204, 204, 204, 255),
  645. model = {""},
  646. description = [[]],
  647. weapons = {},
  648. command = "ProTheif",
  649. max = 4,
  650. salary = 35,
  651. admin = 0,
  652. vote = false,
  653. hasLicense = true,
  654. candemote = true,
  655. -- CustomCheck
  656. medic = false,
  657. chief = false,
  658. mayor = false,
  659. hobo = false,
  660. cook = false,
  661. category = "Thieves",
  662. })
  663.  
  664. ----- Private Military Company(P.M.C.)--------------------------------------
  665.  
  666. TEAM_PMC = DarkRP.createJob("PMC Infantry", {
  667. color = Color(230, 184, 0, 255),
  668. model = {""},
  669. description = [[]],
  670. weapons = {},
  671. command = "PMCInfantry",
  672. max = 4,
  673. salary = 25,
  674. admin = 0,
  675. vote = true,
  676. hasLicense = true,
  677. candemote = true,
  678. -- CustomCheck
  679. medic = false,
  680. chief = false,
  681. mayor = false,
  682. hobo = false,
  683. cook = false,
  684. category = "Private Military Company",
  685. })
  686.  
  687. TEAM_PMC = DarkRP.createJob("PMC Operator", {
  688. color = Color(230, 184, 0, 255),
  689. model = {""},
  690. description = [[]],
  691. weapons = {},
  692. command = "PMCOperator",
  693. max = 4,
  694. salary = 35,
  695. admin = 0,
  696. vote = false,
  697. hasLicense = true,
  698. candemote = true,
  699. -- CustomCheck
  700. medic = false,
  701. chief = false,
  702. mayor = false,
  703. hobo = false,
  704. cook = false,
  705. category = "Private Military Company",
  706. })
  707.  
  708. TEAM_PMC = DarkRP.createJob("PMC Medic", {
  709. color = Color(230, 184, 0, 255),
  710. model = {""},
  711. description = [[]],
  712. weapons = {},
  713. command = "PMCMedic",
  714. max = 4,
  715. salary = 35,
  716. admin = 0,
  717. vote = false,
  718. hasLicense = true,
  719. candemote = true,
  720. -- CustomCheck
  721. medic = false,
  722. chief = false,
  723. mayor = false,
  724. hobo = false,
  725. cook = false,
  726. category = "Private Military Company",
  727. })
  728.  
  729. TEAM_PMC = DarkRP.createJob("PMC Sniper", {
  730. color = Color(230, 184, 0, 255),
  731. model = {""},
  732. description = [[]],
  733. weapons = {},
  734. command = "PMCSniper",
  735. max = 4,
  736. salary = 35,
  737. admin = 0,
  738. vote = false,
  739. hasLicense = true,
  740. candemote = true,
  741. -- CustomCheck
  742. medic = false,
  743. chief = false,
  744. mayor = false,
  745. hobo = false,
  746. cook = false,
  747. category = "Private Military Company",
  748. })
  749.  
  750. TEAM_PMC = DarkRP.createJob("PMC Heavy", {
  751. color = Color(230, 184, 0, 255),
  752. model = {""},
  753. description = [[]],
  754. weapons = {},
  755. command = "PMCHeavy",
  756. max = 4,
  757. salary = 35,
  758. admin = 0,
  759. vote = false,
  760. hasLicense = true,
  761. candemote = true,
  762. -- CustomCheck
  763. medic = false,
  764. chief = false,
  765. mayor = false,
  766. hobo = false,
  767. cook = false,
  768. category = "Private Military Company",
  769. })
  770.  
  771. TEAM_PMC = DarkRP.createJob("PMC Lieutenant", {
  772. color = Color(230, 184, 0, 255),
  773. model = {""},
  774. description = [[]],
  775. weapons = {},
  776. command = "PMCLieutenant",
  777. max = 4,
  778. salary = 35,
  779. admin = 0,
  780. vote = false,
  781. hasLicense = true,
  782. candemote = true,
  783. -- CustomCheck
  784. medic = false,
  785. chief = false,
  786. mayor = false,
  787. hobo = false,
  788. cook = false,
  789. category = "Private Military Company",
  790. })
  791.  
  792. TEAM_PMCLEADER = DarkRP.createJob("PMC Leader", {
  793. color = Color(230, 184, 0, 255,
  794. model = {""},
  795. description = [[]],
  796. weapons = {},
  797. command = "PMCLeader",
  798. max = 4,
  799. salary = 55,
  800. admin = 0,
  801. vote = false,
  802. hasLicense = true,
  803. candemote = true,
  804. -- CustomCheck
  805. medic = false,
  806. chief = false,
  807. mayor = false,
  808. hobo = false,
  809. cook = false,
  810. category = "Private Military Company",
  811. })
  812.  
  813. -----Gangsters--------------------------------------------------------
  814.  
  815. TEAM_RED = DarkRP.createJob("Red-Handed Gangster", {
  816. color = Color(153, 0, 0, 255),
  817. model = {""},
  818. description = [[]],
  819. weapons = {},
  820. command = "RHanded",
  821. max = 4,
  822. salary = 25,
  823. admin = 0,
  824. vote = true,
  825. hasLicense = true,
  826. candemote = true,
  827. -- CustomCheck
  828. medic = false,
  829. chief = false,
  830. mayor = false,
  831. hobo = false,
  832. cook = false,
  833. category = "Red-Handed Gangsters",
  834. })
  835.  
  836. TEAM_RED = DarkRP.createJob("Red-Handed OG", {
  837. color = Color(153, 0, 0, 255),
  838. model = {""},
  839. description = [[]],
  840. weapons = {},
  841. command = "RHandedOG",
  842. max = 4,
  843. salary = 35,
  844. admin = 0,
  845. vote = false,
  846. hasLicense = true,
  847. candemote = true,
  848. -- CustomCheck
  849. medic = false,
  850. chief = false,
  851. mayor = false,
  852. hobo = false,
  853. cook = false,
  854. category = "Red-Handed Gangsters",
  855. })
  856.  
  857. TEAM_REDBOSS = DarkRP.createJob("Red-Handed Mob Boss", {
  858. color = Color(153, 0, 0, 255),
  859. model = {""},
  860. description = [[]],
  861. weapons = {},
  862. command = "RHandedBoss",
  863. max = 4,
  864. salary = 55,
  865. admin = 0,
  866. vote = true,
  867. hasLicense = true,
  868. candemote = true,
  869. -- CustomCheck
  870. medic = false,
  871. chief = false,
  872. mayor = false,
  873. hobo = false,
  874. cook = false,
  875. category = "Red-Handed Gangsters",
  876. })
  877.  
  878. TEAM_BLUE = DarkRP.createJob("Blue-Handed Gangster", {
  879. color = Color(0, 0, 179, 255),
  880. model = {""},
  881. description = [[]],
  882. weapons = {},
  883. command = "BHanded",
  884. max = 4,
  885. salary = 25,
  886. admin = 0,
  887. vote = true,
  888. hasLicense = true,
  889. candemote = true,
  890. -- CustomCheck
  891. medic = false,
  892. chief = false,
  893. mayor = false,
  894. hobo = false,
  895. cook = false,
  896. category = "Blue-Handed Gangsters",
  897. })
  898.  
  899. TEAM_BLUE = DarkRP.createJob("Blue-Handed OG", {
  900. color = Color(0, 0, 179, 255),
  901. model = {""},
  902. description = [[]],
  903. weapons = {},
  904. command = "BHandedOG",
  905. max = ,
  906. salary = ,
  907. admin = 0,
  908. vote = false,
  909. hasLicense = true,
  910. candemote = true,
  911. -- CustomCheck
  912. medic = false,
  913. chief = false,
  914. mayor = false,
  915. hobo = false,
  916. cook = false,
  917. category = "Blue-Handed Gangsters",
  918. })
  919.  
  920. TEAM_BLUEBOSS = DarkRP.createJob("Blue-Handed Mob Boss", {
  921. color = Color(0, 0, 179, 255),
  922. model = {""},
  923. description = [[]],
  924. weapons = {},
  925. command = "BHandedBoss",
  926. max = ,
  927. salary = ,
  928. admin = 0,
  929. vote = true,
  930. hasLicense = true,
  931. candemote = true,
  932. -- CustomCheck
  933. medic = false,
  934. chief = false,
  935. mayor = false,
  936. hobo = false,
  937. cook = false,
  938. category = "Blue-Handed Gangsters",
  939. })
  940.  
  941. -----German Military-------------------------------------------------------------
  942.  
  943. TEAM_GERMAN = DarkRP.createJob("German Infantry", {
  944. color = Color(255, 153, 0, 255),
  945. model = {""},
  946. description = [[]],
  947. weapons = {},
  948. command = "GermInfantry",
  949. max = 4,
  950. salary = 25,
  951. admin = 0,
  952. vote = true,
  953. hasLicense = true,
  954. candemote = true,
  955. -- CustomCheck
  956. medic = false,
  957. chief = false,
  958. mayor = false,
  959. hobo = false,
  960. cook = false,
  961. category = "German Nationalsozialist",
  962. })
  963.  
  964. TEAM_GERMAN = DarkRP.createJob("German Operator", {
  965. color = Color(255, 153, 0, 255),
  966. model = {""},
  967. description = [[]],
  968. weapons = {},
  969. command = "GermOperator",
  970. max = 4,
  971. salary = 35,
  972. admin = 0,
  973. vote = false,
  974. hasLicense = true,
  975. candemote = true,
  976. -- CustomCheck
  977. medic = false,
  978. chief = false,
  979. mayor = false,
  980. hobo = false,
  981. cook = false,
  982. category = "German Nationalsozialist",
  983. })
  984.  
  985. TEAM_GERMAN = DarkRP.createJob("German Medic", {
  986. color = Color(255, 153, 0, 255),
  987. model = {""},
  988. description = [[]],
  989. weapons = {},
  990. command = "GermMedic",
  991. max = 4,
  992. salary = ,
  993. admin = 0,
  994. vote = false,
  995. hasLicense = true,
  996. candemote = true,
  997. -- CustomCheck
  998. medic = false,
  999. chief = false,
  1000. mayor = false,
  1001. hobo = false,
  1002. cook = false,
  1003. category = "German Nationalsozialist",
  1004. })
  1005.  
  1006. TEAM_GERMAN = DarkRP.createJob("German Sniper", {
  1007. color = Color(255, 153, 0, 255),
  1008. model = {""},
  1009. description = [[]],
  1010. weapons = {},
  1011. command = "GermSniper",
  1012. max = 4,
  1013. salary = 35,
  1014. admin = 0,
  1015. vote = false,
  1016. hasLicense = true,
  1017. candemote = true,
  1018. -- CustomCheck
  1019. medic = false,
  1020. chief = false,
  1021. mayor = false,
  1022. hobo = false,
  1023. cook = false,
  1024. category = "German Nationalsozialist",
  1025. })
  1026.  
  1027. TEAM_GERMAN = DarkRP.createJob("German Heavy", {
  1028. color = Color(255, 153, 0, 255),
  1029. model = {""},
  1030. description = [[]],
  1031. weapons = {},
  1032. command = "GermHeavy",
  1033. max = 4,
  1034. salary = 40,
  1035. admin = 0,
  1036. vote = false,
  1037. hasLicense = true,
  1038. candemote = true,
  1039. -- CustomCheck
  1040. medic = false,
  1041. chief = false,
  1042. mayor = false,
  1043. hobo = false,
  1044. cook = false,
  1045. category = "German Nationalsozialist",
  1046. })
  1047.  
  1048. TEAM_GERMAN = DarkRP.createJob("German Lieutenant", {
  1049. color = Color(255, 153, 0, 255),
  1050. model = {""},
  1051. description = [[]],
  1052. weapons = {},
  1053. command = "GermLieutenant",
  1054. max = 4,
  1055. salary = 45,
  1056. admin = 0,
  1057. vote = false,
  1058. hasLicense = true,
  1059. candemote = true,
  1060. -- CustomCheck
  1061. medic = false,
  1062. chief = false,
  1063. mayor = false,
  1064. hobo = false,
  1065. cook = false,
  1066. category = "German Nationalsozialist",
  1067. })
  1068.  
  1069. TEAM_GERMANLEADER = DarkRP.createJob("The Great Fuhrer", {
  1070. color = Color(255, 153, 0, 255),
  1071. model = {""},
  1072. description = [[]],
  1073. weapons = {},
  1074. command = "Hitler",
  1075. max = 4,
  1076. salary = 75,
  1077. admin = 0,
  1078. vote = false,
  1079. hasLicense = true,
  1080. candemote = true,
  1081. -- CustomCheck
  1082. medic = false,
  1083. chief = false,
  1084. mayor = false,
  1085. hobo = false,
  1086. cook = false,
  1087. category = "German Nationalsozialist",
  1088. })
  1089.  
  1090. -----Resistance Job--------------------------------------------------------
  1091.  
  1092. TEAM_RES = DarkRP.createJob("Resistance Infantry", {
  1093. color = Color(102, 153, 153, 255),
  1094. model = {""},
  1095. description = [[]],
  1096. weapons = {},
  1097. command = "ResInfantry",
  1098. max = 4,
  1099. salary = 25,
  1100. admin = 0,
  1101. vote = true,
  1102. hasLicense = true,
  1103. candemote = true,
  1104. -- CustomCheck
  1105. medic = false,
  1106. chief = false,
  1107. mayor = false,
  1108. hobo = false,
  1109. cook = false,
  1110. category = "The Resitance",
  1111. })
  1112.  
  1113. TEAM_RES = DarkRP.createJob("Resistance Medic", {
  1114. color = Color(102, 153, 153, 255),
  1115. model = {""},
  1116. description = [[]],
  1117. weapons = {},
  1118. command = "ResMedic",
  1119. max = 4,
  1120. salary = 35,
  1121. admin = 0,
  1122. vote = false,
  1123. hasLicense = true,
  1124. candemote = true,
  1125. -- CustomCheck
  1126. medic = false,
  1127. chief = false,
  1128. mayor = false,
  1129. hobo = false,
  1130. cook = false,
  1131. category = "The Resitance",
  1132. })
  1133.  
  1134. TEAM_RES = DarkRP.createJob("Resistance Sniper", {
  1135. color = Color(102, 153, 153, 255),
  1136. model = {""},
  1137. description = [[]],
  1138. weapons = {},
  1139. command = "ResSniper",
  1140. max = 4,
  1141. salary = 35,
  1142. admin = 0,
  1143. vote = false,
  1144. hasLicense = true,
  1145. candemote = true,
  1146. -- CustomCheck
  1147. medic = false,
  1148. chief = false,
  1149. mayor = false,
  1150. hobo = false,
  1151. cook = false,
  1152. category = "The Resitance",
  1153. })
  1154.  
  1155. TEAM_RES = DarkRP.createJob("Resistance Heavy", {
  1156. color = Color(102, 153, 153, 255),
  1157. model = {""},
  1158. description = [[]],
  1159. weapons = {},
  1160. command = "RedHeavy",
  1161. max = 4,
  1162. salary = 40,
  1163. admin = 0,
  1164. vote = false,
  1165. hasLicense = true,
  1166. candemote = true,
  1167. -- CustomCheck
  1168. medic = false,
  1169. chief = false,
  1170. mayor = false,
  1171. hobo = false,
  1172. cook = false,
  1173. category = "The Resitance",
  1174. })
  1175.  
  1176. TEAM_RES = DarkRP.createJob("Resistance Lieutenant", {
  1177. color = Color(102, 153, 153, 255),
  1178. model = {""},
  1179. description = [[]],
  1180. weapons = {},
  1181. command = "ResLieutenant",
  1182. max = 4,
  1183. salary = 45,
  1184. admin = 0,
  1185. vote = false,
  1186. hasLicense = true,
  1187. candemote = true,
  1188. -- CustomCheck
  1189. medic = false,
  1190. chief = false,
  1191. mayor = false,
  1192. hobo = false,
  1193. cook = false,
  1194. category = "The Resitance",
  1195. })
  1196.  
  1197. TEAM_RESLEADER = DarkRP.createJob("Resistance Leader", {
  1198. color = Color(102, 153, 153, 255),
  1199. model = {""},
  1200. description = [[]],
  1201. weapons = {},
  1202. command = "ResLeader",
  1203. max = 4,
  1204. salary = 75,
  1205. admin = 0,
  1206. vote = true,
  1207. hasLicense = true,
  1208. candemote = true,
  1209. -- CustomCheck
  1210. medic = false,
  1211. chief = false,
  1212. mayor = false,
  1213. hobo = false,
  1214. cook = false,
  1215. category = "The Resitance",
  1216. })
  1217.  
  1218. -----Hobo true-------------------------------------------------------------
  1219.  
  1220. TEAM_HOBO = DarkRP.createJob("Hobo", {
  1221. color = (153, 102, 0, 255),
  1222. model = {""},
  1223. description = [[]],
  1224. weapons = {},
  1225. command = "Hobo",
  1226. max = 4,
  1227. salary = 0,
  1228. admin = 0,
  1229. vote = false,
  1230. hasLicense = true,
  1231. candemote = true,
  1232. -- CustomCheck
  1233. medic = false,
  1234. chief = false,
  1235. mayor = false,
  1236. hobo = false,
  1237. cook = false,
  1238. category = "Homeless",
  1239. })
  1240.  
  1241. TEAM_HOBO = DarkRP.createJob("Enraged Hobo", {
  1242. color = (153, 102, 0, 255),
  1243. model = {""},
  1244. description = [[]],
  1245. weapons = {},
  1246. command = "EnragedHobo",
  1247. max = 4,
  1248. salary = 0,
  1249. admin = 0,
  1250. vote = false,
  1251. hasLicense = true,
  1252. candemote = true,
  1253. -- CustomCheck
  1254. medic = false,
  1255. chief = false,
  1256. mayor = false,
  1257. hobo = false,
  1258. cook = false,
  1259. category = "Homeless",
  1260. })
  1261.  
  1262. TEAM_HOBOLEADER = DarkRP.createJob("King Hobo", {
  1263. color = (153, 102, 0, 255),
  1264. model = {""},
  1265. description = [[]],
  1266. weapons = {},
  1267. command = "KingHobo",
  1268. max = 1,
  1269. salary = 0,
  1270. admin = 0,
  1271. vote = false,
  1272. hasLicense = true,
  1273. candemote = true,
  1274. -- CustomCheck
  1275. medic = false,
  1276. chief = false,
  1277. mayor = false,
  1278. hobo = false,
  1279. cook = false,
  1280. category = "Homeless",
  1281. })
  1282.  
  1283. -----Terrorist Jobs--------------------------------------------------------
  1284.  
  1285. TEAM_TERROR = DarkRP.createJob("Al-Qaeda", {
  1286. color = (255, 255, 255, 255),
  1287. model = {""},
  1288. description = [[]],
  1289. weapons = {},
  1290. command = "AlQaeda",
  1291. max = 4,
  1292. salary = 25,
  1293. admin = 0,
  1294. vote = true,
  1295. hasLicense = true,
  1296. candemote = true,
  1297. -- CustomCheck
  1298. medic = false,
  1299. chief = false,
  1300. mayor = false,
  1301. hobo = false,
  1302. cook = false,
  1303. category = "",
  1304. })
  1305.  
  1306. TEAM_TERROR = DarkRP.createJob("Terrorist Operator", {
  1307. color = (255, 255, 255, 255),
  1308. model = {""},
  1309. description = [[]],
  1310. weapons = {},
  1311. command = "TerroristOperator",
  1312. max = 4,
  1313. salary = 35,
  1314. admin = 0,
  1315. vote = true,
  1316. hasLicense = true,
  1317. candemote = true,
  1318. -- CustomCheck
  1319. medic = false,
  1320. chief = false,
  1321. mayor = false,
  1322. hobo = false,
  1323. cook = false,
  1324. category = "",
  1325. })
  1326.  
  1327. TEAM_TERRORLEADER = DarkRP.createJob("Terrorist Leader", {
  1328. color = (255, 255, 255, 255),
  1329. model = {"models/code_gs/osama/osamaplayer.mdl"},
  1330. description = [[]],
  1331. weapons = {},
  1332. command = "",
  1333. max = 1,
  1334. salary = 75,
  1335. admin = 0,
  1336. vote = true,
  1337. hasLicense = true,
  1338. candemote = true,
  1339. -- CustomCheck
  1340. medic = false,
  1341. chief = false,
  1342. mayor = false,
  1343. hobo = false,
  1344. cook = false,
  1345. category = "",
  1346. })
  1347.  
  1348. -----Civilains-------------------------------------------------------------
  1349.  
  1350. TEAM_CITIZEN = DarkRP.createJob("Citizen", {
  1351. color = (128, 255, 128, 255),
  1352. model = {"models/player/Group01/Female_01.mdl",
  1353. "models/player/Group01/Female_02.mdl",
  1354. "models/player/Group01/Female_03.mdl",
  1355. "models/player/Group01/Female_04.mdl",
  1356. "models/player/Group01/Female_06.mdl",
  1357. "models/player/group01/male_01.mdl",
  1358. "models/player/Group01/Male_02.mdl",
  1359. "models/player/Group01/male_03.mdl",
  1360. "models/player/Group01/Male_04.mdl",
  1361. "models/player/Group01/Male_05.mdl",
  1362. "models/player/Group01/Male_06.mdl",
  1363. "models/player/Group01/Male_07.mdl",
  1364. "models/player/Group01/Male_08.mdl",
  1365. "models/player/Group01/Male_09.mdl"},
  1366. description = [[]],
  1367. weapons = {},
  1368. command = "Citizen",
  1369. max = 0,
  1370. salary = 0,
  1371. admin = 0,
  1372. vote = false,
  1373. hasLicense = true,
  1374. candemote = true,
  1375. -- CustomCheck
  1376. medic = false,
  1377. chief = false,
  1378. mayor = false,
  1379. hobo = false,
  1380. cook = false,
  1381. category = "Civilian",
  1382. })
  1383.  
  1384. TEAM_CITIZEN = DarkRP.createJob("Pet", {
  1385. color = (128, 255, 128, 255),
  1386. model = {"models/player/tiger/tiger.mdl"},
  1387. description = [[]],
  1388. weapons = {},
  1389. command = "Pet",
  1390. max = 4,
  1391. salary = 0,
  1392. admin = 0,
  1393. vote = false,
  1394. hasLicense = true,
  1395. candemote = true,
  1396. -- CustomCheck
  1397. medic = false,
  1398. chief = false,
  1399. mayor = false,
  1400. hobo = false,
  1401. cook = false,
  1402. category = "Civilian",
  1403. })
  1404.  
  1405. TEAM_CITIZEN = DarkRP.createJob("Prostitute", {
  1406. color = (128, 255, 128, 255),
  1407. model = {"models/player/alyx.mdl", "models/player/p2_chell.mdl"},
  1408. description = [[]],
  1409. weapons = {},
  1410. command = "Prostitute",
  1411. max = 4,
  1412. salary = 5,
  1413. admin = 0,
  1414. vote = false,
  1415. hasLicense = true,
  1416. candemote = true,
  1417. -- CustomCheck
  1418. medic = false,
  1419. chief = false,
  1420. mayor = false,
  1421. hobo = false,
  1422. cook = false,
  1423. category = "Civilian",
  1424. })
  1425.  
  1426. TEAM_CITIZEN = DarkRP.createJob("Security Guard", {
  1427. color = (128, 255, 128, 255),
  1428. model = {"models/player/Group03/Female_01.mdl",
  1429. "models/player/Group03/Female_02.mdl",
  1430. "models/player/Group03/Female_03.mdl",
  1431. "models/player/Group03/Female_04.mdl",
  1432. "models/player/Group03/Female_06.mdl",
  1433. "models/player/group03/male_01.mdl",
  1434. "models/player/Group03/Male_02.mdl",
  1435. "models/player/Group03/male_03.mdl",
  1436. "models/player/Group03/Male_04.mdl",
  1437. "models/player/Group03/Male_05.mdl",
  1438. "models/player/Group03/Male_06.mdl",
  1439. "models/player/Group03/Male_07.mdl",
  1440. "models/player/Group03/Male_08.mdl",
  1441. "models/player/Group03/Male_09.mdl"},
  1442. description = [[]],
  1443. weapons = {},
  1444. command = "Guard",
  1445. max = 4,
  1446. salary = 25,
  1447. admin = 0,
  1448. vote = false,
  1449. hasLicense = true,
  1450. candemote = true,
  1451. -- CustomCheck
  1452. medic = false,
  1453. chief = false,
  1454. mayor = false,
  1455. hobo = false,
  1456. cook = false,
  1457. category = "Civilian",
  1458. })
  1459.  
  1460. TEAM_CITIZEN = DarkRP.createJob("Fight Club Owner", {
  1461. color = (128, 255, 128, 255),
  1462. model = {"models/player/hostage/hostage_01.mdl",
  1463. "models/player/hostage/hostage_02.mdl",
  1464. "models/player/hostage/hostage_03.mdl",
  1465. "models/player/hostage/hostage_04.mdl"},
  1466. description = [[]],
  1467. weapons = {},
  1468. command = "FClubOwner",
  1469. max = 1,
  1470. salary = 10,
  1471. admin = 0,
  1472. vote = false,
  1473. hasLicense = true,
  1474. candemote = true,
  1475. -- CustomCheck
  1476. medic = false,
  1477. chief = false,
  1478. mayor = false,
  1479. hobo = false,
  1480. cook = false,
  1481. category = "Civilian",
  1482. })
  1483.  
  1484. TEAM_CITIZEN = DarkRP.createJob("Fighter", {
  1485. color = (128, 255, 128, 255),
  1486. model = {"models/player/arctic.mdl","models/player/leet.mdl"},
  1487. description = [[]],
  1488. weapons = {},
  1489. command = "Fighter",
  1490. max = 4,
  1491. salary = 15,
  1492. admin = 0,
  1493. vote = false,
  1494. hasLicense = true,
  1495. candemote = true,
  1496. -- CustomCheck
  1497. medic = false,
  1498. chief = false,
  1499. mayor = false,
  1500. hobo = false,
  1501. cook = false,
  1502. category = "Civilian",
  1503. })
  1504.  
  1505. TEAM_CITIZEN = DarkRP.createJob("Rap Battle Host", {
  1506. color = (128, 255, 128, 255),
  1507. model = {"models/player/hostage/hostage_01.mdl",
  1508. "models/player/hostage/hostage_02.mdl",
  1509. "models/player/hostage/hostage_03.mdl",
  1510. "models/player/hostage/hostage_04.mdl"},
  1511. description = [[]],
  1512. weapons = {},
  1513. command = "RapBattleHost",
  1514. max = 1,
  1515. salary = 25,
  1516. admin = 0,
  1517. vote = false,
  1518. hasLicense = true,
  1519. candemote = true,
  1520. -- CustomCheck
  1521. medic = false,
  1522. chief = false,
  1523. mayor = false,
  1524. hobo = false,
  1525. cook = false,
  1526. category = "Civilian",
  1527. })
  1528.  
  1529. TEAM_CITIZEN = DarkRP.createJob("Rapper", {
  1530. color = (128, 255, 128, 255),
  1531. model = {"models/player/soldier_stripped.mdl"},
  1532. description = [[]],
  1533. weapons = {},
  1534. command = "Rapper",
  1535. max = 5,
  1536. salary = 10,
  1537. admin = 0,
  1538. vote = false,
  1539. hasLicense = true,
  1540. candemote = true,
  1541. -- CustomCheck
  1542. medic = false,
  1543. chief = false,
  1544. mayor = false,
  1545. hobo = false,
  1546. cook = false,
  1547. category = "Civilian",
  1548. })
  1549. --Not Ready yet
  1550. --[[
  1551. TEAM_CITIZEN = DarkRP.createJob("DeeJay", {
  1552. color = ,
  1553. model = {""},
  1554. description = [[]],
  1555. weapons = {},
  1556. command = "",
  1557. max = ,
  1558. salary = ,
  1559. admin = 0,
  1560. vote = true,
  1561. hasLicense = true,
  1562. candemote = true,
  1563. -- CustomCheck
  1564. medic = false,
  1565. chief = false,
  1566. mayor = false,
  1567. hobo = false,
  1568. cook = false,
  1569. category = "",
  1570. })
  1571.  
  1572. TEAM_CITIZEN = DarkRP.createJob("Bus Driver", {
  1573. color = ,
  1574. model = {""},
  1575. description = [[]],
  1576. weapons = {},
  1577. command = "",
  1578. max = ,
  1579. salary = ,
  1580. admin = 0,
  1581. vote = false,
  1582. hasLicense = true,
  1583. candemote = true,
  1584. -- CustomCheck
  1585. medic = false,
  1586. chief = false,
  1587. mayor = false,
  1588. hobo = false,
  1589. cook = false,
  1590. category = "",
  1591. })
  1592. ]]
  1593.  
  1594. TEAM_CITIZEN = DarkRP.createJob("Hotel Owner", {
  1595. color = ,
  1596. model = {"models/player/hostage/hostage_01.mdl",
  1597. "models/player/hostage/hostage_02.mdl",
  1598. "models/player/hostage/hostage_03.mdl",
  1599. "models/player/hostage/hostage_04.mdl"},
  1600. description = [[]],
  1601. weapons = {},
  1602. command = "",
  1603. max = ,
  1604. salary = ,
  1605. admin = 0,
  1606. vote = false,
  1607. hasLicense = true,
  1608. candemote = true,
  1609. -- CustomCheck
  1610. medic = false,
  1611. chief = false,
  1612. mayor = false,
  1613. hobo = false,
  1614. cook = false,
  1615. category = "Civilian",
  1616. })
  1617. -----Staff Jobs------------------------------------------------------------
  1618.  
  1619. TEAM_STAFF = DarkRP.createJob("Owner On Duty", {
  1620. color = Color(0, 0, 255, 255),
  1621. model = {"models/player/combine_super_soldier.mdl"},
  1622. description = [[]],
  1623. weapons = {"adminstick"},
  1624. command = "sadmin",
  1625. max = 1,
  1626. salary = 100,
  1627. admin = 1,
  1628. vote = false,
  1629. hasLicense = true,
  1630. candemote = true,
  1631. -- CustomCheck
  1632. medic = false,
  1633. chief = false,
  1634. mayor = false,
  1635. hobo = false,
  1636. cook = false,
  1637. category = "Staff",
  1638. sortOrder = 3,
  1639. customCheck = function(ply) return
  1640. table.HasValue({"superadmin"}, ply:GetNWString("usergroup"))
  1641. end,
  1642. CustomCheckFailMsg = "This is a Job for Staff only",
  1643. })
  1644.  
  1645. TEAM_STAFF = DarkRP.createJob("Headadmin On Duty", {
  1646. color = Color(0, 0, 255, 255),
  1647. model = {"models/player/combine_super_soldier.mdl"},
  1648. description = [[]],
  1649. weapons = {"adminstick"},
  1650. command = "hadmin",
  1651. max = 1,
  1652. salary = 100,
  1653. admin = 1,
  1654. vote = false,
  1655. hasLicense = true,
  1656. candemote = true,
  1657. -- CustomCheck
  1658. medic = false,
  1659. chief = false,
  1660. mayor = false,
  1661. hobo = false,
  1662. cook = false,
  1663. category = "Staff",
  1664. sortOrder = 4,
  1665. customCheck = function(ply) return
  1666. table.HasValue({"superadmin","headadmin"}, ply:GetNWString("usergroup"))
  1667. end,
  1668. CustomCheckFailMsg = "This is a Job for Staff only",
  1669. })
  1670.  
  1671. TEAM_STAFF = DarkRP.createJob("Admin On Duty", {
  1672. color = Color(0, 0, 255, 255),
  1673. model = {"models/player/combine_super_soldier.mdl"},
  1674. description = [[]],
  1675. weapons = {"adminstick"},
  1676. command = "admin",
  1677. max = 10,
  1678. salary = 100,
  1679. admin = 1,
  1680. vote = false,
  1681. hasLicense = true,
  1682. candemote = true,
  1683. -- CustomCheck
  1684. medic = false,
  1685. chief = false,
  1686. mayor = false,
  1687. hobo = false,
  1688. cook = false,
  1689. category = "Staff",
  1690. sortOrder = 5,
  1691. customCheck = function(ply) return
  1692. table.HasValue({"superadmin","headadmin","admin"}, ply:GetNWString("usergroup"))
  1693. end,
  1694. CustomCheckFailMsg = "This is a Job for Staff only",
  1695. })
  1696.  
  1697. TEAM_STAFF = DarkRP.createJob("Moderator On Duty", {
  1698. color = Color(0, 0, 255, 255),
  1699. model = {"models/player/combine_super_soldier.mdl"},
  1700. description = [[]],
  1701. weapons = {"adminstick"},
  1702. command = "moderator",
  1703. max = 10,
  1704. salary = 100,
  1705. admin = 0,
  1706. vote = false,
  1707. hasLicense = true,
  1708. candemote = true,
  1709. -- CustomCheck
  1710. medic = false,
  1711. chief = false,
  1712. mayor = false,
  1713. hobo = false,
  1714. cook = false,
  1715. category = "Staff",
  1716. sortOrder = 6,
  1717. customCheck = function(ply) return
  1718. table.HasValue({"superadmin","headadmin","admin", "moderator"}, ply:GetNWString("usergroup"))
  1719. end,
  1720. CustomCheckFailMsg = "This is a Job for Staff only",
  1721. })
  1722.  
  1723. TEAM_TSTAFF = DarkRP.createJob("Trial Mod On Duty", {
  1724. color = Color(0, 0, 255, 255),
  1725. model = {"models/player/combine_super_soldier.mdl"},
  1726. description = [[]],
  1727. weapons = {"adminstick"},
  1728. command = "tmod",
  1729. max = 5,
  1730. salary = 100,
  1731. admin = 0,
  1732. vote = false,
  1733. hasLicense = true,
  1734. candemote = true,
  1735. -- CustomCheck
  1736. medic = false,
  1737. chief = false,
  1738. mayor = false,
  1739. hobo = false,
  1740. cook = false,
  1741. category = "Staff",
  1742. sortOrder = 7,
  1743. customCheck = function(ply) return
  1744. table.HasValue({"superadmin","headadmin","admin", "moderator","trialmod"}, ply:GetNWString("usergroup"))
  1745. end,
  1746. CustomCheckFailMsg = "This is a Job for Staff only",
  1747. })
  1748.  
  1749. --[[---------------------------------------------------------------------------
  1750. Define which team joining players spawn into and what team you change to if demoted
  1751. ---------------------------------------------------------------------------]]
  1752. GAMEMODE.DefaultTeam = TEAM_CITIZENo
  1753.  
  1754.  
  1755. --[[---------------------------------------------------------------------------
  1756. Define which teams belong to civil protection
  1757. Civil protection can set warrants, make people wanted and do some other police related things
  1758. ---------------------------------------------------------------------------]]
  1759. GAMEMODE.CivilProtection = {
  1760. [TEAM_COP] = true,
  1761. [TEAM_CHIEF] = true,
  1762. [TEAM_MAYOR] = true,
  1763. }
  1764.  
  1765. --[[---------------------------------------------------------------------------
  1766. true that are hitmen (enables the hitman menu)
  1767. ---------------------------------------------------------------------------]]
  1768. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement