Advertisement
Guest User

swrp

a guest
Jul 21st, 2017
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 49.97 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_Jedi = DarkRP.createJob("Jedi Padawan", {
  22. color = Color(22, 10, 26, 100),
  23. model = "models/grealms/characters/padawan/padawan_02.mdl",
  24. description = [[You now are a jedi Padawan]],
  25. weapons = {"weapon_lightsaber"},
  26. command = "JediPadawan",
  27. max = 10,
  28. salary = 1000,
  29. admin = 0,
  30. vote = false,
  31. hasLicense = false,
  32. candemote = false,
  33. category = "Jedi",
  34. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) end,
  35. })
  36.  
  37. TEAM_Jedi = DarkRP.createJob("Jedi Elder", {
  38. color = Color(22, 10, 26, 100),
  39. model = "models/grealms/characters/carthonasi/carthonasi.mdl",
  40. description = [[You now are a jedi elder the most smartest and the best of the best you are 2nd highest]],
  41. weapons = {"weapon_lightsaber"},
  42. command = "JediElder",
  43. max = 1,
  44. salary = 1000,
  45. admin = 0,
  46. vote = false,
  47. hasLicense = false,
  48. candemote = false,
  49. category = "Jedi",
  50. PlayerSpawn = function(ply) ply:SetHealth(4250) ply:SetArmor(100) end,
  51. })
  52.  
  53. TEAM_Regular = DarkRP.createJob("Force Sensitive", {
  54. color = Color(22, 10, 26, 100),
  55. model = "models/grealms/characters/casualjedi/casualjedi_01.mdl",
  56. description = [[You are ForceSensitive]],
  57. weapons = {""},
  58. command = "ForceSensitive",
  59. max = 1000,
  60. salary = 55,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = false,
  64. candemote = false,
  65. category = "Default",
  66. })
  67.  
  68. TEAM_Jedi = DarkRP.createJob("Jedi Knight", {
  69. color = Color(22, 10, 26, 100),
  70. model = "models/player/x227man/mkotor_7.mdl",
  71. description = [[You now are a jedi Knight]],
  72. weapons = {"weapon_lightsaber"},
  73. command = "JediKnight",
  74. max = 10,
  75. salary = 1000,
  76. admin = 0,
  77. vote = false,
  78. hasLicense = false,
  79. candemote = false,
  80. category = "Jedi",
  81. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  82. })
  83.  
  84. TEAM_Jedi = DarkRP.createJob("Jedi Sentinel", {
  85. color = Color(22, 10, 26, 100),
  86. model = "models/jazzmcfly/jka/jtg/jtg.mdl",
  87. description = [[You now are a jedi Knight]],
  88. weapons = {"weapon_lightsaber"},
  89. command = "JediSentinal",
  90. max = 10,
  91. salary = 1000,
  92. admin = 0,
  93. vote = false,
  94. hasLicense = false,
  95. candemote = false,
  96. category = "Jedi",
  97. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  98. })
  99.  
  100. TEAM_Jedi = DarkRP.createJob("Jedi Enforcer", {
  101. color = Color(22, 10, 26, 100),
  102. model = "models/tfa/comm/gg/pm_sw_tyzen_xebec.mdl",
  103. description = [[You now are a jedi Knight]],
  104. weapons = {"weapon_lightsaber"},
  105. command = "JediEnforcer",
  106. max = 10,
  107. salary = 1000,
  108. admin = 0,
  109. vote = false,
  110. hasLicense = false,
  111. candemote = false,
  112. category = "Jedi",
  113. PlayerSpawn = function(ply) ply:SetHealth(3250) ply:SetArmor(100) end,
  114. })
  115.  
  116. TEAM_Jedi = DarkRP.createJob("Jedi Guardian", {
  117. color = Color(22, 10, 26, 100),
  118. model = "models/grealms/characters/jedirobes/jedirobes_02.mdl",
  119. description = [[You now are a jedi Guardian]],
  120. weapons = {"weapon_lightsaber"},
  121. command = "JediGaurdian",
  122. max = 10,
  123. salary = 1000,
  124. admin = 0,
  125. vote = false,
  126. hasLicense = false,
  127. candemote = false,
  128. category = "Jedi",
  129. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  130. })
  131.  
  132. TEAM_Jedi = DarkRP.createJob("Jedi Master", {
  133. color = Color(22, 10, 26, 100),
  134. model = "models/grealms/characters/jedirobes/jedirobes_02.mdl",
  135. description = [[You now are a jedi Master]],
  136. weapons = {"weapon_lightsaber"},
  137. command = "JediMaster",
  138. max = 5,
  139. salary = 1000,
  140. admin = 0,
  141. vote = false,
  142. hasLicense = false,
  143. candemote = false,
  144. category = "Jedi",
  145. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  146. })
  147.  
  148. TEAM_Jedi = DarkRP.createJob("Jedi Council Member", {
  149. color = Color(22, 10, 26, 100),
  150. model = "models/grealms/characters/jedibattlelord/jedibattlelord.mdl",
  151. description = [[You now are a jedi Council Memeber]],
  152. weapons = {"weapon_lightsaber"},
  153. command = "JediCouncilMember",
  154. max = 5,
  155. salary = 1000,
  156. admin = 0,
  157. vote = false,
  158. hasLicense = false,
  159. candemote = false,
  160. category = "Jedi",
  161. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetBodygroup(2, 1) ply:SetArmor(100) end,
  162. })
  163.  
  164. TEAM_Jedi = DarkRP.createJob("Master Of TheOrder", {
  165. color = Color(22, 10, 26, 100),
  166. model = "models/grealms/characters/jedibattlelord/jedibattlelord.mdl",
  167. description = [[You now are a Master Of The Order]],
  168. weapons = {"weapon_lightsaber"},
  169. command = "MasterOfTheOrder",
  170. max = 1,
  171. salary = 1000,
  172. admin = 0,
  173. vote = false,
  174. hasLicense = false,
  175. candemote = false,
  176. category = "Jedi",
  177. PlayerSpawn = function(ply) ply:SetHealth(4000) ply:SetBodygroup(2, 1) ply:SetArmor(100) end,
  178. })
  179.  
  180. TEAM_Jedi = DarkRP.createJob("Grand Master", {
  181. color = Color(22, 10, 26, 100),
  182. model = "models/grealms/characters/jedibattlelord/jedibattlelord.mdl",
  183. description = [[You now are a jedi GrandMaster]],
  184. weapons = {"weapon_lightsaber"},
  185. command = "GrandMaster",
  186. max = 1,
  187. salary = 10000,
  188. admin = 0,
  189. vote = false,
  190. hasLicense = false,
  191. candemote = false,
  192. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) ply:SetBodygroup(2, 1) end,
  193. category = "Jedi",
  194. })
  195.  
  196. TEAM_Sith = DarkRP.createJob("Sith Apprentice", {
  197. color = Color(22, 10, 26, 100),
  198. model = "models/grealms/characters/darkjedi/darkjedi.mdl",
  199. description = [[You now are a SithApprentic]],
  200. weapons = {"weapon_lightsaber"},
  201. command = "SithApprentic",
  202. max = 10,
  203. salary = 1000,
  204. admin = 0,
  205. vote = false,
  206. hasLicense = false,
  207. candemote = false,
  208. category = "Sith",
  209. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) end,
  210. })
  211.  
  212. TEAM_Sith = DarkRP.createJob("Sith Acolyte", {
  213. color = Color(22, 10, 26, 100),
  214. model = "models/grealms/characters/sithtrainee/sithtrainee_01.mdl",
  215. description = [[You now are a SithAcolyte]],
  216. weapons = {"weapon_lightsaber"},
  217. command = "SithAcolyte",
  218. max = 10,
  219. salary = 1000,
  220. admin = 0,
  221. vote = false,
  222. hasLicense = false,
  223. candemote = false,
  224. category = "Sith",
  225. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) end,
  226. })
  227.  
  228. TEAM_Sith = DarkRP.createJob("Sith Lord", {
  229. color = Color(22, 10, 26, 100),
  230. model = "models/grealms/characters/revan_real/revan.mdl",
  231. description = [[You now are a SithLord]],
  232. weapons = {"weapon_lightsaber"},
  233. command = "SithLord",
  234. max = 10,
  235. salary = 1000,
  236. admin = 0,
  237. vote = false,
  238. hasLicense = false,
  239. candemote = false,
  240. category = "Sith",
  241. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  242. })
  243.  
  244. TEAM_Sith = DarkRP.createJob("Dark Lord", {
  245. color = Color(22, 10, 26, 100),
  246. model = "models/grealms/characters/revan/revan.mdl",
  247. description = [[You now are a DarkLord]],
  248. weapons = {"weapon_lightsaber"},
  249. command = "DarkLord",
  250. max = 10,
  251. salary = 1000,
  252. admin = 0,
  253. vote = false,
  254. hasLicense = false,
  255. candemote = false,
  256. category = "Sith",
  257. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  258. })
  259.  
  260. TEAM_Sith = DarkRP.createJob("Dark Council", {
  261. color = Color(22, 10, 26, 100),
  262. model = "models/grealms/characters/ultimategood/ultimategood.mdl",
  263. description = [[You now are a Dark Council Member]],
  264. weapons = {"weapon_lightsaber"},
  265. command = "DarkCouncil",
  266. max = 10,
  267. salary = 1000,
  268. admin = 0,
  269. vote = false,
  270. hasLicense = false,
  271. candemote = false,
  272. category = "Sith",
  273. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  274. })
  275.  
  276. TEAM_Sith = DarkRP.createJob("Sith Body Guard", {
  277. color = Color(22, 10, 26, 100),
  278. model = "models/grealms/characters/redhonorguard/redhonorguard.mdl",
  279. description = [[Youre job is to protect the emperor with your life and other high ranking sith]],
  280. weapons = {"weapon_lightsaber"},
  281. command = "Sith Body Guard",
  282. max = 10,
  283. salary = 1000,
  284. admin = 0,
  285. vote = false,
  286. hasLicense = false,
  287. candemote = false,
  288. category = "Sith",
  289. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  290. })
  291.  
  292. TEAM_Sith = DarkRP.createJob("Sith Emperor", {
  293. color = Color(22, 10, 26, 100),
  294. model = "models/player/emperor_palpatine.mdl",
  295. description = [[You now are a Dark Council Leader]],
  296. weapons = {"weapon_lightsaber"},
  297. command = "SithEmperior",
  298. max = 1,
  299. salary = 1000,
  300. admin = 0,
  301. vote = false,
  302. hasLicense = false,
  303. candemote = false,
  304. category = "Sith",
  305. PlayerSpawn = function(ply) ply:SetHealth(4500) ply:SetArmor(100) end,
  306. })
  307.  
  308. TEAM_EnternalEmpire = DarkRP.createJob("Valkorian", {
  309. color = Color(22, 10, 26, 100),
  310. model = "models/grealms/characters/valkorian/valkorian.mdl",
  311. description = [[You now are now Vakorian]],
  312. weapons = {"weapon_lightsaber"},
  313. command = "Valkorian",
  314. max = 1,
  315. salary = 1000,
  316. admin = 0,
  317. vote = false,
  318. hasLicense = false,
  319. candemote = false,
  320. category = "EnternalEmpire",
  321. PlayerSpawn = function(ply) ply:SetHealth(4500) ply:SetArmor(100) end,
  322. })
  323.  
  324. TEAM_EnternalEmpire = DarkRP.createJob("Vaylin", {
  325. color = Color(22, 10, 26, 100),
  326. model = "models/grealms/characters/vaylin/vaylin.mdl",
  327. description = [[You now are not Vaylin]],
  328. weapons = {"weapon_lightsaber"},
  329. command = "Vaylin",
  330. max = 1,
  331. salary = 1000,
  332. admin = 0,
  333. vote = false,
  334. hasLicense = false,
  335. candemote = false,
  336. category = "EnternalEmpire",
  337. PlayerSpawn = function(ply) ply:SetHealth(4000) ply:SetArmor(100) end,
  338. })
  339.  
  340. TEAM_EnternalEmpire = DarkRP.createJob("Arcann", {
  341. color = Color(22, 10, 26, 100),
  342. model = "models/grealms/twins/twins.mdl",
  343. description = [[You now are now Arcann]],
  344. weapons = {"weapon_lightsaber"},
  345. command = "Arcane",
  346. max = 1,
  347. salary = 1000,
  348. admin = 0,
  349. vote = false,
  350. hasLicense = false,
  351. candemote = false,
  352. category = "EnternalEmpire",
  353. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  354. })
  355.  
  356. TEAM_EnternalEmpire = DarkRP.createJob("Thexan", {
  357. color = Color(22, 10, 26, 100),
  358. model = "models/grealms/twins/twins_black/twins_black.mdl",
  359. description = [[You now are now Thexan]],
  360. weapons = {"weapon_lightsaber"},
  361. command = "Thexan",
  362. max = 1,
  363. salary = 1000,
  364. admin = 0,
  365. vote = false,
  366. hasLicense = false,
  367. candemote = false,
  368. category = "EnternalEmpire",
  369. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  370. })
  371.  
  372. TEAM_EnternalEmpire = DarkRP.createJob("Zakuul Knight", {
  373. color = Color(22, 10, 26, 100),
  374. model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
  375. description = [[You now are now ZakuulKnight]],
  376. weapons = {"weapon_lightsaber"},
  377. command = "ZakuulKnight",
  378. max = 10,
  379. salary = 1000,
  380. admin = 0,
  381. vote = false,
  382. hasLicense = false,
  383. candemote = false,
  384. category = "EnternalEmpire",
  385. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  386. })
  387.  
  388. TEAM_EnternalEmpire = DarkRP.createJob("Grand Marshal", {
  389. color = Color(22, 10, 26, 100),
  390. model = "models/grealms/characters/knighttroopergen/knighttroopergen.mdl",
  391. description = [[You now are now GrandMarshall]],
  392. weapons = {"weapon_lightsaber"},
  393. command = "GrandMarshall",
  394. max = 10,
  395. salary = 1000,
  396. admin = 0,
  397. vote = false,
  398. hasLicense = false,
  399. candemote = false,
  400. category = "EnternalEmpire",
  401. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  402. })
  403.  
  404. TEAM_EnternalEmpire = DarkRP.createJob("Squire", {
  405. color = Color(22, 10, 26, 100),
  406. model = "models/grealms/characters/knighttrooper/knighttrooper.mdl",
  407. description = [[You now are now Squire]],
  408. weapons = {"weapon_lightsaber"},
  409. command = "Squire",
  410. max = 10,
  411. salary = 1000,
  412. admin = 0,
  413. vote = false,
  414. hasLicense = false,
  415. candemote = false,
  416. category = "EnternalEmpire",
  417. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  418. })
  419.  
  420. TEAM_Sith = DarkRP.createJob("Sith Assassin", {
  421. color = Color(22, 10, 26, 100),
  422. model = "models/syntheticgaming/characters/sithassassin/sithassassin.mdl",
  423. description = [[You now are a SithLord]],
  424. weapons = {"weapon_lightsaber","weapon_camo"},
  425. command = "SithAssasin",
  426. max = 5,
  427. salary = 1000,
  428. admin = 0,
  429. vote = false,
  430. hasLicense = false,
  431. candemote = false,
  432. category = "Sith",
  433. PlayerSpawn = function(ply) ply:SetHealth(3300) ply:SetArmor(100) end,
  434. })
  435.  
  436. TEAM_Sith = DarkRP.createJob("Sith Warrior", {
  437. color = Color(22, 10, 26, 100),
  438. model = "models/imperial/guard/blackguard.mdl",
  439. description = [[You now are a SithLord]],
  440. weapons = {"weapon_lightsaber"},
  441. command = "SithWarrior",
  442. max = 10,
  443. salary = 1000,
  444. admin = 0,
  445. vote = false,
  446. hasLicense = false,
  447. candemote = false,
  448. category = "Sith",
  449. PlayerSpawn = function(ply) ply:SetHealth(3800) ply:SetArmor(100) end,
  450. })
  451.  
  452. TEAM_Sith = DarkRP.createJob("Sith Sorcerer", {
  453. color = Color(22, 10, 26, 100),
  454. model = "models/grealms/characters/revan/revan.mdl",
  455. description = [[You now are a SithLord]],
  456. weapons = {"weapon_lightsaber"},
  457. command = "SithSorcerer",
  458. max = 10,
  459. salary = 1500,
  460. admin = 0,
  461. vote = false,
  462. hasLicense = false,
  463. candemote = false,
  464. category = "Sith",
  465. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  466. })
  467.  
  468. TEAM_Jango = DarkRP.createJob("Jango Fett", {
  469. color = Color(22, 10, 26, 100),
  470. model = "models/player/deckboy/jango_pm/jango_pm.mdl",
  471. description = [[You Are JangoFett]],
  472. weapons = {"tfa_sw_westardual","weapon_avpflamer","weapon_752_e60r","weapon_camo","weapon_752_ee3","repair_tool","weapon_752_ihr","dc15agrapple","weapon_752bf3_e11","weapon_752bf3_rt97c","weapon_752bf3_se14c"},
  473. command = "JangoFett",
  474. max = 1,
  475. salary = 1000,
  476. admin = 0,
  477. vote = false,
  478. hasLicense = false,
  479. candemote = false,
  480. category = "BountyHunters",
  481. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(250) end,
  482.  
  483. })
  484.  
  485. TEAM_Jango = DarkRP.createJob("Extro The Extract", {
  486. color = Color(22, 10, 26, 100),
  487. model = "models/player/gm/starwars/kel.mdl",
  488. description = [[You Are The Best of The Best When People Hire You Its A Sign of Joy Knowing You Will Complete The Job]],
  489. weapons = {"weapon_752bf3_e11","weapon_752bf3_rt97c","weapon_752bf3_se14c","weapon_avpflamer","weapon_camo"},
  490. command = "ExtroTheExtract",
  491. max = 1,
  492. salary = 1000,
  493. admin = 0,
  494. vote = false,
  495. hasLicense = false,
  496. candemote = false,
  497. category = "BountyHunters",
  498. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(250) end,
  499. })
  500.  
  501. TEAM_Boba = DarkRP.createJob("Boba Fett", {
  502. color = Color(22, 10, 26, 100),
  503. model = "models/player/deckboy/boba_pm/boba_pm.mdl",
  504. description = [[You Are Boba Fett And You The Son Of Jango Fett]],
  505. weapons = {"weapon_752bf3_e11","weapon_752bf3_rt97c","weapon_752bf3_se14c","weapon_avpflamer","weapon_camo","weapon_752bf3_ee3","tfa_sparks_wristred"},
  506. command = "Bobo Fett",
  507. max = 1,
  508. salary = 1000,
  509. admin = 0,
  510. vote = false,
  511. hasLicense = false,
  512. candemote = false,
  513. category = "BountyHunters",
  514. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(250) end,
  515. })
  516.  
  517.  
  518. TEAM_Exvoid = DarkRP.createJob("Exvoid Bazar", {
  519. color = Color(90, 0, 0, 255),
  520. model = {"models/byan7259/bodian_player/segular_rodian_player.mdl"},
  521. description = [[You were once a proud Rodian, now you are a bounty hunter.]],
  522. weapons = {"tfa_swch_de10","tfa_swch_ee3","tfa_sw_repsnip","tfa_sparks_wristyellow","weapon_752bf3_ee3","weapon_752bf3_a280"},
  523. command = "Exvoid Bazar",
  524. max = 1,
  525. salary = 1500,
  526. admin = 0,
  527. vote = false,
  528. hasLicense = false,
  529. candemote = false,
  530. category = "BountyHunters",
  531. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(250) end,
  532. })
  533.  
  534. TEAM_Jedi = DarkRP.createJob("Yoda", {
  535. color = Color(20, 150, 20, 255),
  536. model = "models/player/b4p/b4p_yoda.mdl",
  537. description = [[Grand Master Yoda ]],
  538. weapons = {"weapon_camo","weapon_lightsaber"},
  539. command = "Yoda",
  540. modelScale = 0.6,
  541. max = 1,
  542. salary = 55,
  543. admin = 0,
  544. vote = false,
  545. hasLicense = false,
  546. category = "Custom",
  547. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  548. CustomCheckFailMsg = "You are not in the withelist!",
  549. })
  550.  
  551. TEAM_MaceWindu = DarkRP.createJob("Mace Windu", {
  552. color = Color(175, 122, 41, 255),
  553. model = "models/player/mace/mace.mdl",
  554. description = [[You are Mace Windu]],
  555. weapons = {"weapon_lightsaber"},
  556. command = "MaceWindu",
  557. max = 1,
  558. salary = 55,
  559. admin = 0,
  560. vote = false,
  561. hasLicense = false,
  562. category = "Custom",
  563. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  564. })
  565.  
  566. TEAM_AhsokaTano= DarkRP.createJob("Ahsoka Tano", {
  567. color = Color(175, 122, 41, 255),
  568. model = "models/tfa/comm/gg/pm_sw_ahsoka_v1.mdl",
  569. description = [[You are Ahsoka Tano]],
  570. weapons = {"weapon_lightsaber"},
  571. command = "Ahsoka Tano",
  572. max = 1,
  573. salary = 55,
  574. admin = 0,
  575. vote = false,
  576. hasLicense = false,
  577. category = "Custom",
  578. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  579. })
  580.  
  581. TEAM_Jedi = DarkRP.createJob("Obi Wan Kenobi", {
  582. color = Color(206, 152, 13, 255),
  583. model = "models/player/generalkenobi/cgikenobi.mdl",
  584. description = [[You are Obi-Wan]],
  585. weapons = {"weapon_lightsaber"},
  586. command = "ObiWanKenobi",
  587. max = 1,
  588. salary = 55,
  589. admin = 0,
  590. vote = false,
  591. hasLicense = false,
  592. category = "Custom",
  593. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  594. })
  595.  
  596. TEAM_PloKoon = DarkRP.createJob("Plo Koon", {
  597. color = Color(232, 204, 61, 255),
  598. model = "models/player/plokoon/plokoon.mdl",
  599. description = [[You are now Plo Koon]],
  600. weapons = {"weapon_lightsaber"},
  601. command = "PloKoon",
  602. max = 1,
  603. salary = 55,
  604. admin = 0,
  605. vote = false,
  606. hasLicense = false,
  607. category = "Custom",
  608. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  609. })
  610.  
  611. TEAM_Jedi = DarkRP.createJob("Ki-Adi-Mundi", {
  612. color = Color(255, 141, 230, 255),
  613. model = "models/player/nav/mundi.mdl",
  614. description = [[You are now Jedi Master Mundi]],
  615. weapons = {"weapon_lightsaber"},
  616. command = "Ki-Adi-Mundi",
  617. max = 1,
  618. salary = 55,
  619. admin = 0,
  620. vote = false,
  621. hasLicense = false,
  622. category = "Custom",
  623. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  624. })
  625.  
  626. TEAM_Jedi = DarkRP.createJob("Kit Fisto", {
  627. color = Color(242, 251, 239, 90),
  628. model = "models/player/nav/kitfisto.mdl",
  629. description = [[You are now Kit Fisto]],
  630. weapons = {"weapon_lightsaber"},
  631. command = "KitFisto",
  632. max = 1,
  633. salary = 55,
  634. admin = 0,
  635. vote = false,
  636. hasLicense = false,
  637. category = "Custom",
  638. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  639. })
  640.  
  641. TEAM_Jedi = DarkRP.createJob("Aayla Secura", {
  642. color = Color(234, 213, 24, 255),
  643. model = "models/player/nav/aayla.mdl",
  644. description = [[You are now Aayla Secura]],
  645. weapons = {"weapon_lightsaber"},
  646. command = "AylaSecura",
  647. max = 1,
  648. salary = 55,
  649. admin = 0,
  650. vote = false,
  651. hasLicense = false,
  652. category = "Custom",
  653. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  654. })
  655.  
  656. TEAM_Jedi = DarkRP.createJob("Anakin Skywalker", {
  657. color = Color(13, 137, 206, 255),
  658. model = "models/tfa/comm/pm_sw_anakin_skywalker.mdl",
  659. description = [[You are now Anakin]],
  660. weapons = {"weapon_lightsaber",},
  661. command = "Anakin skywalker",
  662. max = 1,
  663. salary = 55,
  664. admin = 0,
  665. vote = false,
  666. hasLicense = false,
  667. category = "Custom",
  668. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  669. })
  670.  
  671. TEAM_Revan = DarkRP.createJob("Darth Revan", {
  672. color = Color(255, 0, 0, 255),
  673. model = "models/grealms/characters/revan/revan.mdl",
  674. description = [[You are now Darth Revan]],
  675. weapons = {"weapon_lightsaber","keys","Pocket"},
  676. command = "Revan",
  677. max = 1,
  678. salary = 55,
  679. admin = 0,
  680. vote = false,
  681. hasLicense = false,
  682. candemote = false,
  683. category = "SithCustomJobs",
  684. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  685. })
  686.  
  687. TEAM_dooku = DarkRP.createJob("Count Dooku", {
  688. color = Color(255, 0, 0, 255),
  689. model = "models/kriegsyntax/sw_752/dooku_est.mdl",
  690. description = [[You are now Count Dooku]],
  691. weapons = {"weapon_lightsaber","keys","Pocket"},
  692. command = "Countdooku",
  693. max = 1,
  694. salary = 55,
  695. admin = 0,
  696. vote = false,
  697. hasLicense = false,
  698. candemote = false,
  699. category = "SithCustomJobs",
  700. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  701. })
  702.  
  703. TEAM_DNIHILUS = DarkRP.createJob("Darth Nihilus", {
  704. color = Color(25, 25, 170, 255),
  705. model = {"models/grealms/characters/darthnihilus/darthnihilus.mdl"},
  706. description = [[You are Nihilus, go kill some Jedi!]],
  707. weapons = {"keys", "weapon_lightsaber"},
  708. command = "DarthNihilus",
  709. max = 1,
  710. salary = 1000,
  711. admin = 0,
  712. hasLicense = true,
  713. sortOrder = 3,
  714. category = "SithCustomJobs",
  715. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  716. })
  717.  
  718. TEAM_DJADUS = DarkRP.createJob("Darth Jadus", {
  719. color = Color(25, 25, 170, 255),
  720. model = {"models/grealms/characters/darthjadus/darthjadus.mdl"},
  721. description = [[You are Darth Jadus, go kill some jedi!]],
  722. weapons = {"keys", "weapon_lightsaber"},
  723. command = "Darth Jadus",
  724. max = 1,
  725. salary = 1,
  726. admin = 0,
  727. hasLicense = true,
  728. sortOrder = 3,
  729. category = "SithCustomJobs",
  730. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  731. })
  732.  
  733. TEAM_DMALGUS = DarkRP.createJob("Darth Malgus", {
  734. color = Color(25, 25, 170, 255),
  735. model = {"models/grealms/characters/malgus/malgus.mdl"},
  736. description = [[You are Malgus, go kill some Jedi!]],
  737. weapons = {"keys", "weapon_lightsaber"},
  738. command = "Darth Malgus",
  739. max = 1,
  740. salary = 1,
  741. admin = 0,
  742. hasLicense = true,
  743. sortOrder = 3,
  744. category = "SithCustomJobs",
  745. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  746. })
  747.  
  748. TEAM_DMARR = DarkRP.createJob("Darth Marr", {
  749. color = Color(25, 25, 170, 255),
  750. model = {"models/grealms/characters/darthmarr/darthmarr.mdl"},
  751. description = [[You are Marr, go kill some Jedi!]],
  752. weapons = {"keys", "weapon_lightsaber"},
  753. command = "Darth Marr",
  754. max = 1,
  755. salary = 1,
  756. admin = 0,
  757. hasLicense = true,
  758. sortOrder = 3,
  759. category = "SithCustomJobs",
  760. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  761. })
  762.  
  763. TEAM_DSION = DarkRP.createJob("Darth Sion", {
  764. color = Color(25, 25, 170, 255),
  765. model = {"models/grealms/characters/darthsion/sion.mdl"},
  766. description = [[You are Sion, go kill some Jedi!]],
  767. weapons = {"keys","weapon_lightsaber"},
  768. command = "Darth Sion",
  769. max = 1,
  770. salary = 1,
  771. admin = 0,
  772. hasLicense = true,
  773. sortOrder = 3,
  774. category = "SithCustomJobs",
  775. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  776. })
  777.  
  778. TEAM_Deathwatch = DarkRP.createJob("Death Watch Trooper", {
  779. color = Color(0, 56, 255, 255),
  780. model = {"models/grealms/characters/deathwatch/deathwatch_infantry.mdl"},
  781. description = [[The Death Watch was a Mandalorian splinter group that opposed the pacifist ... Star Wars: The Clone Wars – "A War on Two Fronts"]],
  782. weapons = {"weapon_752_ihr"},
  783. command = "DeathWatchTrooper",
  784. max = 5,
  785. salary = 50,
  786. admin = 0,
  787. vote = false,
  788. hasLicense = true,
  789. category = "DeathWatch",
  790. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(100) end,
  791. })
  792.  
  793. TEAM_Deathwatch = DarkRP.createJob("Death watch Heavy Trooper", {
  794. color = Color(0, 56, 255, 255),
  795. model = {"models/grealms/characters/deathwatch/deathwatch_infantry.mdl"},
  796. description = [[The Death Watch was a Mandalorian splinter group that opposed the pacifist ... Star Wars: The Clone Wars – "A War on Two Fronts"]],
  797. weapons = {"weapon_752_e60r","weapon_752_ihr"},
  798. command = "DeathwatchHeavyTrooper",
  799. max = 4,
  800. salary = 50,
  801. admin = 0,
  802. vote = false,
  803. hasLicense = true,
  804. category = "DeathWatch",
  805. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) end,
  806. })
  807.  
  808. TEAM_Deathwatch = DarkRP.createJob("Death watch Medic", {
  809. color = Color(0, 56, 255, 255),
  810. model = {"models/grealms/characters/deathwatch/deathwatch_infantry.mdl"},
  811. description = [[The Death Watch was a Mandalorian splinter group that opposed the pacifist ... Star Wars: The Clone Wars – "A War on Two Fronts"]],
  812. weapons = {"weapon_752_westar34","weapon_medkit"},
  813. command = "DeathwatchMedic",
  814. max = 3,
  815. salary = 50,
  816. admin = 0,
  817. vote = false,
  818. hasLicense = true,
  819. category = "DeathWatch",
  820. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(200) end,
  821. })
  822.  
  823. TEAM_Deathwatch = DarkRP.createJob("Death watch Captain", {
  824. color = Color(0, 56, 255, 255),
  825. model = {"models/grealms/characters/deathwatch/deathwatch_infantry.mdl"},
  826. description = [[The Death Watch was a Mandalorian splinter group that opposed the pacifist ... Star Wars: The Clone Wars – "A War on Two Fronts"]],
  827. weapons = {"climb_swep2","weapon_752_westar34","weapon_752_kyd21"},
  828. command = "DeathwatchCaptain",
  829. max = 2,
  830. salary = 100,
  831. admin = 0,
  832. vote = false,
  833. hasLicense = true,
  834. category = "DeathWatch",
  835. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(100) end,
  836. })
  837.  
  838. TEAM_Deathwatch = DarkRP.createJob("Pre Vizla", {
  839. color = Color(0, 56, 255, 255),
  840. model = {"models/grealms/characters/deathwatch/deathwatch_previszla.mdl"},
  841. description = [[The Death Watch was a Mandalorian splinter group that opposed the pacifist ... Star Wars: The Clone Wars – "A War on Two Fronts"]],
  842. weapons = {"weapon_lightsaber"},
  843. command = "PreVizsla",
  844. max = 1,
  845. salary = 250,
  846. admin = 0,
  847. vote = false,
  848. hasLicense = true,
  849. candemote = false,
  850. category = "DeathWatch",
  851. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(100) end,
  852. })
  853.  
  854. TEAM_CadBane = DarkRP.createJob("Cad Bane", {
  855. color = Color(0, 56, 255, 255),
  856. model = {"models/grealms/characters/cadbane/cadbane.mdl"},
  857. description = [[You Are CadBane]],
  858. weapons = {"tfa_sw_westardual","weapon_752bf3_scoutblaster","weapon_752bf3_ee3"},
  859. command = "CadBane",
  860. max = 1,
  861. salary = 250,
  862. admin = 0,
  863. vote = false,
  864. hasLicense = true,
  865. candemote = false,
  866. category = "BountyHunters",
  867. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(100) end,
  868. })
  869.  
  870. TEAM_BlackScar = DarkRP.createJob("Black Scar", {
  871. color = Color(0, 56, 255, 255),
  872. model = {"models/tfa/comm/gg/pm_sw_captain_breaker_v1.mdl"},
  873. description = [[You Are Black Scar]],
  874. weapons = {"tfa_sw_westardual","weapon_752bf3_scoutblaster","weapon_752bf3_ee3"},
  875. command = "Black Scar",
  876. max = 1,
  877. salary = 250,
  878. admin = 0,
  879. vote = false,
  880. hasLicense = true,
  881. candemote = false,
  882. category = "BountyHunters",
  883. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(100) end,
  884. })
  885.  
  886. TEAM_Zakuul = DarkRP.createJob("Zakuul Sergeant", {
  887. color = Color(0, 56, 255, 255),
  888. model = {"models/grealms/characters/seargeant/seargeant.mdl"},
  889. description = [[ZakuulSergeant]],
  890. weapons = {"weapon_lightsaber"},
  891. command = "ZakuulSergeant",
  892. max = 1,
  893. salary = 250,
  894. admin = 0,
  895. vote = false,
  896. hasLicense = true,
  897. candemote = false,
  898. category = "EnternalEmpire",
  899. PlayerSpawn = function(ply) ply:SetHealth(2700) ply:SetArmor(00) end,
  900. })
  901.  
  902. TEAM_Zakuul = DarkRP.createJob("Zakuul Honor Gaurd", {
  903. color = Color(0, 56, 255, 255),
  904. model = {"models/grealms/characters/knighttrooperhg/knighttrooperhg.mdl"},
  905. description = [[ZakuulHonorGaurd]],
  906. weapons = {"weapon_lightsaber"},
  907. command = "ZakuulHonorGaurd",
  908. max = 1,
  909. salary = 250,
  910. admin = 0,
  911. vote = false,
  912. hasLicense = true,
  913. candemote = false,
  914. category = "EnternalEmpire",
  915. PlayerSpawn = function(ply) ply:SetHealth(2850) ply:SetArmor(100) end,
  916. })
  917.  
  918. TEAM_Zakuul = DarkRP.createJob("Zakuul Honor Gaurd Captain", {
  919. color = Color(0, 56, 255, 255),
  920. model = {"models/grealms/characters/redhonorguard/redhonorguard.mdl"},
  921. description = [[ZakuulHonorGaurdCaptain]],
  922. weapons = {"weapon_lightsaber"},
  923. command = "ZakuulHonorGaurdCaptain",
  924. max = 1,
  925. salary = 250,
  926. admin = 0,
  927. vote = false,
  928. hasLicense = true,
  929. candemote = false,
  930. category = "EnternalEmpire",
  931. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  932. })
  933.  
  934. TEAM_Zakuul = DarkRP.createJob("Zakuul Champion", {
  935. color = Color(0, 56, 255, 255),
  936. model = {"models/grealms/characters/darktrooper/darktrooper.mdl"},
  937. description = [[ZakuulChampion]],
  938. weapons = {"weapon_lightsaber"},
  939. command = "ZakuulChampion",
  940. max = 1,
  941. salary = 250,
  942. admin = 0,
  943. vote = false,
  944. hasLicense = true,
  945. candemote = false,
  946. category = "EnternalEmpire",
  947. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(00) end,
  948. })
  949.  
  950. TEAM_Jedi = DarkRP.createJob("Ima-Gun-Di", {
  951. color = Color(0, 56, 255, 255),
  952. model = {"models/tfa/comm/gg/pm_sw_imagundi.mdl"},
  953. description = [[Ama-Gun-Di]],
  954. weapons = {"weapon_lightsaber"},
  955. command = "Ama-Gun-Di",
  956. max = 1,
  957. salary = 250,
  958. admin = 0,
  959. vote = false,
  960. hasLicense = true,
  961. candemote = false,
  962. category = "Custom",
  963. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(00) end,
  964. })
  965.  
  966. TEAM_Jedi = DarkRP.createJob("Quinlan Vos", {
  967. color = Color(0, 56, 255, 255),
  968. model = {"models/tfa/comm/gg/pm_sw_quinlanvos.mdl"},
  969. description = [[Quinlanvos]],
  970. weapons = {"weapon_lightsaber"},
  971. command = "Quinlanvos",
  972. max = 1,
  973. salary = 250,
  974. admin = 0,
  975. vote = false,
  976. hasLicense = true,
  977. candemote = false,
  978. category = "Custom",
  979. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(00) end,
  980. })
  981.  
  982. TEAM_Jedi = DarkRP.createJob("Luminara", {
  983. color = Color(0, 56, 255, 255),
  984. model = {"models/tfa/comm/gg/pm_sw_luminara.mdl"},
  985. description = [[luminara]],
  986. weapons = {"weapon_lightsaber"},
  987. command = "luminara",
  988. max = 1,
  989. salary = 250,
  990. admin = 0,
  991. vote = false,
  992. hasLicense = true,
  993. candemote = false,
  994. category = "Custom",
  995. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(00) end,
  996. })
  997.  
  998. TEAM_Jedi = DarkRP.createJob("Shaak Ti", {
  999. color = Color(0, 56, 255, 255),
  1000. model = {"models/tfa/comm/gg/pm_sw_shaakti.mdl"},
  1001. description = [[shaakti]],
  1002. weapons = {"weapon_lightsaber"},
  1003. command = "shaakti",
  1004. max = 1,
  1005. salary = 250,
  1006. admin = 0,
  1007. vote = false,
  1008. hasLicense = true,
  1009. candemote = false,
  1010. category = "Custom",
  1011. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(00) end,
  1012. })
  1013.  
  1014. TEAM_Jedi = DarkRP.createJob("Galactic Patrol Officer", {
  1015. color = Color(0, 56, 255, 255),
  1016. model = {"models/kriegsyntax/sw_752/meleetrooper_est.mdl"},
  1017. description = [[You job is to potroll and arrest bad people the are doing bounty shooting and stabbing people so do it wright]],
  1018. weapons = {"weapon_cuff_elastic","realrbn_tazer_mr","weapon_jew_dc17m_at","weapon_chatterbox_minigun"},
  1019. command = "Galactic Patroll Officer",
  1020. max = 5,
  1021. salary = 2500,
  1022. admin = 0,
  1023. vote = false,
  1024. hasLicense = true,
  1025. candemote = false,
  1026. category = "Galactic Patroll",
  1027. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  1028. })
  1029.  
  1030. TEAM_Jedi = DarkRP.createJob("Galactic Patrol Sergeant", {
  1031. color = Color(0, 56, 255, 255),
  1032. model = {"models/grealms/characters/triumvirate/triumvirate.mdl"},
  1033. description = [[You job is to potroll and arrest bad people the are doing bounty shooting and stabbing people so do it wright]],
  1034. weapons = {"weapon_cuff_elastic","realrbn_tazer_mr","weapon_jew_dc17m_at","weapon_752bf3_dl44"},
  1035. command = "Galactic Patroll Sergeant",
  1036. max = 2,
  1037. salary = 2500,
  1038. admin = 0,
  1039. vote = false,
  1040. hasLicense = true,
  1041. candemote = false,
  1042. category = "Galactic Patroll",
  1043. PlayerSpawn = function(ply) ply:SetHealth(3200) ply:SetArmor(100) end,
  1044. })
  1045.  
  1046. TEAM_Jedi = DarkRP.createJob("Galactic Patrol Captain", {
  1047. color = Color(0, 56, 255, 255),
  1048. model = {"models/grealms/characters/skytrooper/skytrooper.mdl"},
  1049. description = [[You job is to potroll and arrest bad people the are doing bounty shooting and stabbing people so do it wright]],
  1050. weapons = {"weapon_cuff_elastic","realrbn_tazer_mr","weapon_jew_dc17m_at","voice_amplifier"},
  1051. command = "Galactic Patroll Captain",
  1052. max = 1,
  1053. salary = 2500,
  1054. admin = 0,
  1055. vote = false,
  1056. hasLicense = true,
  1057. candemote = false,
  1058. category = "Galactic Patroll",
  1059. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  1060. })
  1061.  
  1062. TEAM_Jedi = DarkRP.createJob("Galactic Patrol Cheif", {
  1063. color = Color(0, 56, 255, 255),
  1064. model = {"models/syntheticgaming/characters/cyberneticstarkiller/starkiller.mdl"},
  1065. description = [[You job is to potroll and arrest bad people the are doing bounty shooting and stabbing people so do it wright]],
  1066. weapons = {"weapon_cuff_elastic","realrbn_tazer_mr","weapon_jew_dc17m_at","voice_amplifier","weapon_chatterbox_minigun"},
  1067. command = "Galactic Patroll Cheif",
  1068. max = 1,
  1069. salary = 2500,
  1070. admin = 0,
  1071. vote = false,
  1072. hasLicense = true,
  1073. candemote = false,
  1074. category = "Galactic Patroll",
  1075. PlayerSpawn = function(ply) ply:SetHealth(4000) ply:SetArmor(100) end,
  1076. })
  1077.  
  1078. TEAM_BountyHunter = DarkRP.createJob("HK-51", {
  1079. color = Color(0, 56, 255, 255),
  1080. model = {"models/nikout/swtor/npc/hk51.mdl"},
  1081. description = [[You are t]],
  1082. weapons = {"weapon_752bf3_rt97c","weapon_camo"},
  1083. command = "hk51",
  1084. max = 1,
  1085. salary = 2500,
  1086. admin = 0,
  1087. vote = false,
  1088. hasLicense = true,
  1089. candemote = false,
  1090. category = "BountyHunters",
  1091. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1092. })
  1093.  
  1094. TEAM_BountyHunter = DarkRP.createJob("HK-47", {
  1095. color = Color(0, 56, 255, 255),
  1096. model = {"models/nikout/swtor/npc/hk47.mdl"},
  1097. description = [[You are hk47]],
  1098. weapons = {"weapon_752bf3_dlt20a"},
  1099. command = "hk47",
  1100. max = 1,
  1101. salary = 2500,
  1102. admin = 0,
  1103. vote = false,
  1104. hasLicense = true,
  1105. candemote = false,
  1106. category = "BountyHunters",
  1107. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1108. })
  1109.  
  1110. TEAM_BountyHunter = DarkRP.createJob("Bounty Hunter", {
  1111. color = Color(0, 56, 255, 255),
  1112. model = {"models/grealms/characters/mandalorian/mandalorian_player.mdl"},
  1113. description = [[BountyHunter]],
  1114. weapons = {"weapon_752bf3_dlt20a"},
  1115. command = "BountyHunter",
  1116. max = 10,
  1117. salary = 2500,
  1118. admin = 0,
  1119. vote = false,
  1120. hasLicense = true,
  1121. candemote = false,
  1122. category = "Vip",
  1123. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1124. })
  1125.  
  1126. TEAM_BountyHunter = DarkRP.createJob("Wookie", {
  1127. color = Color(0, 56, 255, 255),
  1128. model = {"models/tfa/comm/gg/pm_sw_chewbacca.mdl"},
  1129. description = [[Wookie]],
  1130. weapons = {"weapon_752_bowcaster"},
  1131. command = "Wookie",
  1132. max = 10,
  1133. salary = 2500,
  1134. admin = 0,
  1135. vote = false,
  1136. hasLicense = true,
  1137. candemote = false,
  1138. category = "Vip",
  1139. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1140. })
  1141.  
  1142. TEAM_EVENT_JOBS = DarkRP.createJob("Jawa", {
  1143. color = Color(94, 34, 34, 255),
  1144. model = {"models/player/b4p/b4p_jawa.mdl"},
  1145. description = [[You are a Jawa]],
  1146. weapons = {"weapon_752bf3_dl44"},
  1147. command = "Jawa",
  1148. max = 10,
  1149. salary = 500,
  1150. admin = 0,
  1151. vote = false,
  1152. hasLicense = false,
  1153. candemote = false,
  1154. modelScale = 0.6,
  1155. category = "Vip",
  1156. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1157. })
  1158.  
  1159. TEAM_EVENT_JOBS = DarkRP.createJob("Gungan", {
  1160. color = Color(145, 94, 66, 255),
  1161. model = {"models/player/techknow/jarjar.mdl"},
  1162. description = [[You are a Gungan]],
  1163. weapons = {"weapon_752_elg3a"},
  1164. command = "Gungan",
  1165. max = 10,
  1166. salary = 500,
  1167. admin = 0,
  1168. vote = false,
  1169. hasLicense = false,
  1170. candemote = false,
  1171. category = "Vip",
  1172. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1173. })
  1174.  
  1175. TEAM_EVENT_JOBS = DarkRP.createJob("Magna Guard", {
  1176. color = Color(145, 94, 66, 255),
  1177. model = {"models/player/deckboy/magna_droid_pm/magna_droid_pm.mdl"},
  1178. description = [[You are a Magna Gaurd]],
  1179. weapons = {"weapon_lightsaber"},
  1180. command = "Magna Gaurd",
  1181. max = 10,
  1182. salary = 500,
  1183. admin = 0,
  1184. vote = false,
  1185. hasLicense = false,
  1186. candemote = false,
  1187. category = "Vip",
  1188. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1189. })
  1190.  
  1191. TEAM_EVENT_JOBS = DarkRP.createJob("Jedi Hunter Droid", {
  1192. color = Color(145, 94, 66, 255),
  1193. model = {"models/jazzmcfly/jka/eg5/noflicker/jka_eg5.mdl"},
  1194. description = [[You are a Jedi Hunter Droid]],
  1195. weapons = {"weapon_lightsaber","weapon_camo"},
  1196. command = "Jedi Hunter Droid",
  1197. max = 10,
  1198. salary = 500,
  1199. admin = 0,
  1200. vote = false,
  1201. hasLicense = false,
  1202. candemote = false,
  1203. category = "Vip",
  1204. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(200) end,
  1205. })
  1206.  
  1207. TEAM_Staff = DarkRP.createJob("Staff On Duty", {
  1208. color = Color(145, 94, 66, 255),
  1209. model = {"models/excalibur/excaliburprotoarmor.mdl"},
  1210. description = [[You are staff on duty,you job is to stop rule breakers and do sits if nessary,you may noclip and use admin abilities,but dont get in the way of people Role-Playing]],
  1211. weapons = {"keys","weapon_physgun","gmod_tool"},
  1212. command = "Staff On Duty",
  1213. max = 10,
  1214. salary = 500,
  1215. admin = 0,
  1216. vote = false,
  1217. hasLicense = false,
  1218. candemote = false,
  1219. category = "Staff",
  1220. PlayerSpawn = function(ply) ply:SetHealth(99999999) ply:SetArmor(200) end,
  1221. })
  1222.  
  1223. TEAM_Sith = DarkRP.createJob("Darth Vader", {
  1224. color = Color(94, 34, 34, 255),
  1225. model = {"models/jazzmcfly/jka/vader/jka_vader.mdl"},
  1226. description = [[You are darth vader,and once known as anakin skywalker]],
  1227. weapons = {"weapon_lightsaber"},
  1228. command = "Darth Vader",
  1229. max = 10,
  1230. salary = 500,
  1231. admin = 0,
  1232. vote = false,
  1233. hasLicense = false,
  1234. candemote = false,
  1235. category = "SithCustomJobs",
  1236. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  1237. })
  1238.  
  1239. TEAM_Sith = DarkRP.createJob("KyloRen", {
  1240. color = Color(70, 169, 211, 255),
  1241. model = "models/grealms/characters/kyloren/kyloren.mdl",
  1242. description = [[You are now kylo ren,once know as ben solo]],
  1243. weapons = {"weapon_lightsaber"},
  1244. command = "KyloRen",
  1245. max = 1,
  1246. salary = 55,
  1247. admin = 0,
  1248. vote = false,
  1249. hasLicense = false,
  1250. category = "SithCustomJobs",
  1251. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  1252. })
  1253.  
  1254.  
  1255. TEAM_Sith = DarkRP.createJob("Savage Opress", {
  1256. color = Color(70, 169, 211, 255),
  1257. model = "models/syntheticgaming/characters/savageopress/savageopress.mdl",
  1258. description = [[You are now Savage Opress,One of the most famous in the clone wars,you teamed up with you brother darth maul]],
  1259. weapons = {"weapon_lightsaber"},
  1260. command = "Savage Opress",
  1261. max = 1,
  1262. salary = 55,
  1263. admin = 0,
  1264. vote = false,
  1265. hasLicense = false,
  1266. category = "SithCustomJobs",
  1267. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  1268. })
  1269.  
  1270. TEAM_Sith = DarkRP.createJob("Darth Maul", {
  1271. color = Color(70, 169, 211, 255),
  1272. model = "models/player/darth/maul.mdl",
  1273. description = [[You are now Darth Maul,One of the most famous in the clone wars,you teamed up with you brother Savage Opress]],
  1274. weapons = {"weapon_lightsaber"},
  1275. command = "Darth Maul",
  1276. max = 1,
  1277. salary = 55,
  1278. admin = 0,
  1279. vote = false,
  1280. hasLicense = false,
  1281. category = "SithCustomJobs",
  1282. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  1283. })
  1284.  
  1285. TEAM_Jedi = DarkRP.createJob("Jedi Younling", {
  1286. color = Color(70, 169, 211, 255),
  1287. model = "models/jazzmcfly/jka/younglings/jka_young_anikan.mdl",
  1288. description = [[You are the future jedi]],
  1289. weapons = {"weapon_lightsaber"},
  1290. command = "Jedi Youngling",
  1291. max = 1000,
  1292. salary = 55,
  1293. admin = 0,
  1294. vote = false,
  1295. hasLicense = false,
  1296. category = "Jedi",
  1297. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(100) end,
  1298. })
  1299.  
  1300. TEAM_Jedi = DarkRP.createJob("Jedi Temple Guard", {
  1301. color = Color(162, 0, 132, 255),
  1302. model = {"models/jazzmcfly/jka/jtg/jtg.mdl"},
  1303. description = [[You are a Temple Guard of the Jedi Order]],
  1304. weapons = {"weapon_lightsaber","climb_swep2","pocket","arrest_stick","unarrest_stick","weaponchecker"},
  1305. command = "Jedi Temple Guard",
  1306. max = 2,
  1307. salary = 2000,
  1308. admin = 1,
  1309. vote = false,
  1310. hasLicense = false,
  1311. candemote = false,
  1312. modelScale = 1.1,
  1313. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  1314. category = "Jedi",
  1315. })
  1316.  
  1317. TEAM_SIth = DarkRP.createJob("Asajj Ventress", {
  1318. color = Color(0, 25, 255, 255),
  1319. model = {"models/jellik/asajj/asajj.mdl"},
  1320. description = [[You are Asajj Ventress]],
  1321. weapons = {"pocket","climb_swep2","weapon_lightsaber"},
  1322. command = "Asajj Ventress",
  1323. max = 1,
  1324. salary = 1500,
  1325. admin = 0,
  1326. vote = false,
  1327. hasLicense = false,
  1328. candemote = false,
  1329. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(100) end,
  1330. category = "SithCustomJobs",
  1331. })
  1332.  
  1333. TEAM_Sith = DarkRP.createJob("Corrupt Sith Assassin", {
  1334. color = Color(0, 25, 255, 255),
  1335. model = {"models/tfa/comm/gg/pm_sw_captain_breaker_v1.mdl"},
  1336. description = [[You're a corrupt sith,you once were a sith assasin and got sick and tired of the sith so you joined the corrupt sith and you are evil]],
  1337. weapons = {"weapon_lightsaber","weapon_camo","weapon_752_dc17m_sn"},
  1338. command = "Corrupt Sith Assassin",
  1339. max = 5,
  1340. salary = 1500,
  1341. admin = 0,
  1342. vote = false,
  1343. hasLicense = false,
  1344. candemote = false,
  1345. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1346. category = "Corrupt Sith",
  1347. })
  1348.  
  1349.  
  1350. TEAM_Sith = DarkRP.createJob("Corrupt Sith Advanced Assassin", {
  1351. color = Color(0, 25, 255, 255),
  1352. model = {"models/tfa/comm/gg/pm_sw_captain_breaker_v1.mdl"},
  1353. description = [[You're a corrupt sith,you once were a sith Advanced assasin and got sick and tired of the sith so you joined the corrupt sith and you are evil]],
  1354. weapons = {"weapon_lightsaber","weapon_camo","weapon_752_dc17m_sn"},
  1355. command = "Corrupt Sith Advanced Assassin",
  1356. max = 5,
  1357. salary = 1500,
  1358. admin = 0,
  1359. vote = false,
  1360. hasLicense = false,
  1361. candemote = false,
  1362. PlayerSpawn = function(ply) ply:SetHealth(3000) ply:SetArmor(100) end,
  1363. category = "Corrupt Sith",
  1364. })
  1365.  
  1366.  
  1367. TEAM_Sith = DarkRP.createJob("Corrupt Sith Bounty Hunter", {
  1368. color = Color(0, 25, 255, 255),
  1369. model = {"models/grealms/characters/redhonorguard/redhonorguard.mdl"},
  1370. description = [[You're a corrupt sith,you once were a sith Bounty Hunter and got sick and tired of the sith so you joined the corrupt sith and you are evil]],
  1371. weapons = {"weapon_lightsaber","weapon_jew_emp_rifle","weapon_shadowvirus_grenade"},
  1372. command = "Corrupt Sith Bounty Hunter",
  1373. max = 5,
  1374. salary = 1500,
  1375. admin = 0,
  1376. vote = false,
  1377. hasLicense = false,
  1378. candemote = false,
  1379. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  1380. category = "Corrupt Sith",
  1381. })
  1382.  
  1383. TEAM_Sith = DarkRP.createJob("Corrupt Sith WarLord", {
  1384. color = Color(0, 25, 255, 255),
  1385. model = {"models/tfa/comm/gg/pm_sw_super_trooper.mdl"},
  1386. description = [[You're a corrupt sith,you once were a sith Warlord and got sick and tired of the sith so you joined the corrupt sith and you are evil]],
  1387. weapons = {"weapon_lightsaber","weapon_chatterbox_minigun","weapon_jew_emp_rifle","weapon_shadowvirus_grenade"},
  1388. command = "Corrupt Sith Warlord",
  1389. max = 5,
  1390. salary = 1500,
  1391. admin = 0,
  1392. vote = false,
  1393. hasLicense = false,
  1394. candemote = false,
  1395. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  1396. category = "Corrupt Sith",
  1397. })
  1398.  
  1399. TEAM_Sith = DarkRP.createJob("Corrupt Sith Emperor Razor", {
  1400. color = Color(0, 25, 255, 255),
  1401. model = {"models/nikout/warframe/stalker.mdl"},
  1402. description = [[You're a corrupt sith,you once were a sith Warlord and got sick and tired of the sith so you joined the corrupt sith and you are evil]],
  1403. weapons = {"weapon_lightsaber","dc17grapple","weapon_lasermgun","weapon_camo","tfa_sw_pestardual","pewpew","weapon_avpflamer","weapon_cuff_elastic","realrbn_tazer_mr"},
  1404. command = "Corrupt Sith Emperor Razor",
  1405. max = 5,
  1406. salary = 1500,
  1407. admin = 0,
  1408. vote = false,
  1409. hasLicense = false,
  1410. candemote = false,
  1411. PlayerSpawn = function(ply) ply:SetHealth(3500) ply:SetArmor(100) end,
  1412. category = "Corrupt Sith",
  1413. })
  1414.  
  1415. TEAM_Sith = DarkRP.createJob("Merc", {
  1416. color = Color(0, 25, 255, 255),
  1417. model = {"models/imperial/guard/blackguard.mdl"},
  1418. description = [[You're a merc and your job is to follow your leader Zeta/Doodle]],
  1419. weapons = {"weapon_lightsaber"},
  1420. command = "Merc",
  1421. max = 5,
  1422. salary = 1500,
  1423. admin = 0,
  1424. vote = false,
  1425. hasLicense = false,
  1426. candemote = false,
  1427. PlayerSpawn = function(ply) ply:SetHealth(1500) ply:SetArmor(100) end,
  1428. category = "Mercs",
  1429. })
  1430.  
  1431. TEAM_Sith = DarkRP.createJob("Merc Agent", {
  1432. color = Color(0, 25, 255, 255),
  1433. model = {"models/imperial/guard/blackguard.mdl"},
  1434. description = [[You're a merc and your job is to follow your leader Zeta/Doodle]],
  1435. weapons = {"tfa_752_ihr","weapon_lightsaber","weapon_752bf3_se14c","weapon_752bf3_dlt20a"},
  1436. command = "Merc Agent",
  1437. max = 5,
  1438. salary = 2500,
  1439. admin = 0,
  1440. vote = false,
  1441. hasLicense = false,
  1442. candemote = false,
  1443. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1444. category = "Mercs",
  1445. })
  1446.  
  1447. TEAM_Sith = DarkRP.createJob("Merc Raider", {
  1448. color = Color(0, 25, 255, 255),
  1449. model = {"models/imperial/guard/blackguard.mdl"},
  1450. description = [[You're a merc and your job is to follow your leader Zeta/Doodle]],
  1451. weapons = {"weapon_lightsaber","weapon_752bf3_dlt19","tfa_752_ihr",},
  1452. command = "Merc Raider",
  1453. max = 5,
  1454. salary = 2500,
  1455. admin = 0,
  1456. vote = false,
  1457. hasLicense = false,
  1458. candemote = false,
  1459. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1460. category = "Mercs",
  1461. })
  1462.  
  1463. TEAM_Sith = DarkRP.createJob("Merc Warrior", {
  1464. color = Color(0, 25, 255, 255),
  1465. model = {"models/imperial/guard/blackguard.mdl"},
  1466. description = [[You're a merc and your job is to follow your leader Zeta/Doodle]],
  1467. weapons = {"weapon_752bf3_rt97c","weapon_lightsaber","tfa_752_ihr"},
  1468. command = "Merc Warrior",
  1469. max = 5,
  1470. salary = 2500,
  1471. admin = 0,
  1472. vote = false,
  1473. hasLicense = false,
  1474. candemote = false,
  1475. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1476. category = "Mercs",
  1477. })
  1478.  
  1479. TEAM_Sith = DarkRP.createJob("Merc OverLord", {
  1480. color = Color(0, 25, 255, 255),
  1481. model = {"models/imperial/guard/blackguard.mdl"},
  1482. description = [[You're a merc and your job is to follow your leader Zeta/Doodle]],
  1483. weapons = {"weapon_752bf3_rt97c","weapon_752bf3_dlt19","weapon_752bf3_t21","tfa_752_ihr","weapon_lightsaber"},
  1484. command = "Merc OverLord",
  1485. max = 1,
  1486. salary = 2500,
  1487. admin = 0,
  1488. vote = false,
  1489. hasLicense = false,
  1490. candemote = false,
  1491. PlayerSpawn = function(ply) ply:SetHealth(2500) ply:SetArmor(100) end,
  1492. category = "Mercs",
  1493. })
  1494.  
  1495. TEAM_CustomClasss = DarkRP.createJob("Zrosut", {
  1496. color = Color(0, 25, 255, 255),
  1497. model = {"models/grealms/characters/experimentaljedi/experimentaljedi.mdl"},
  1498. description = [[a rouge bountyhunter that quit his job of needles blood shed to studythe ways of the force]],
  1499. weapons = {"tfa_752_ihr","weapon_lightsaber","weapon_camo","weapon_752bf3_ee3"},
  1500. command = "Zrosut",
  1501. max = 1,
  1502. salary = 2500,
  1503. admin = 0,
  1504. vote = false,
  1505. hasLicense = false,
  1506. candemote = false,
  1507. PlayerSpawn = function(ply) ply:SetHealth(4000) ply:SetArmor(100) end,
  1508. category = "CustomClasses",
  1509. })
  1510.  
  1511. --[[---------------------------------------------------------------------------
  1512. Define which team joining players spawn into and what team you change to if demoted
  1513. ---------------------------------------------------------------------------]]
  1514. GAMEMODE.DefaultTeam = TEAM_Regular
  1515.  
  1516.  
  1517. --[[---------------------------------------------------------------------------
  1518. Define which teams belong to civil protection
  1519. Civil protection can set warrants, make people wanted and do some other police related things
  1520. ---------------------------------------------------------------------------]]
  1521. GAMEMODE.CivilProtection = {
  1522. [TEAM_POLICE] = true,
  1523. [TEAM_CHIEF] = true,
  1524. [TEAM_MAYOR] = true,
  1525. }
  1526.  
  1527. --[[---------------------------------------------------------------------------
  1528. Jobs that are hitmen (enables the hitman menu)
  1529. ---------------------------------------------------------------------------]]
  1530. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement