Advertisement
KimonK

Untitled

Oct 25th, 2017
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 67.40 KB | None | 0 0
  1. TEAM_UNITIATED = DarkRP.createJob("Uninitiated", {
  2. color = Color(0, 153, 0),
  3. model = {"models/player/Group01/Male_01.mdl", "models/player/Group01/Male_02.mdl", "models/player/Group01/Male_03.mdl", "models/player/Group01/Male_04.mdl", "models/player/Group01/Male_05.mdl", "models/player/Group01/Male_06.mdl", "models/player/Group01/Male_07.mdl", "models/player/Group01/Male_08.mdl", "models/player/Group01/Male_09.mdl", "models/player/Group01/Female_01.mdl", "models/player/Group01/Female_02.mdl", "models/player/Group01/Female_03.mdl", "models/player/Group01/Female_04.mdl", "models/player/Group01/Female_05.mdl", "models/player/Group01/Female_06.mdl"},
  4. description = [[You are a citizen,ask an admin to be whitelisted.]],
  5. weapons = {},
  6. command = "Uninitiated",
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category= "Uninitiated"
  13. })
  14. TEAM_JEDIYOUNGLING = DarkRP.createJob("Jedi Youngling", {
  15. color = Color(51, 51, 255),
  16. model = {"models/jazzmcfly/jka/younglings/jka_young_male.mdl"},
  17. description = [[You are a Jedi Youngling.]],
  18. weapons = {""},
  19. command = "JediYoungling",
  20. max = 0,
  21. salary = 0,
  22. admin = 0,
  23. vote = false,
  24. hasLicense = true,
  25. candemote = false,
  26. category = "Jedis",
  27. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  28. ply:SetHealth(450)
  29. ply:SetMaxHealth(450)
  30. end,
  31. })
  32. TEAM_JEDIPADAWAN = DarkRP.createJob("Jedi Padawan", {
  33. color = Color(51, 51, 255),
  34. model = {"models/grealms/characters/padawan/padawan_01.mdl", "models/grealms/characters/padawan/padawan_02.mdl", "models/grealms/characters/padawan/padawan_03.mdl", "models/grealms/characters/padawan/padawan_04.mdl", "models/grealms/characters/padawan/padawan_05.mdl", "models/grealms/characters/padawan/padawan_06.mdl", "models/grealms/characters/padawan/padawan_07.mdl", "models/grealms/characters/padawan/padawan_08.mdl", "models/grealms/characters/padawan/padawan_09.mdl"},
  35. description = [[You are a Jedi Padawan.]],
  36. weapons = {"weapon_lightsaber_dls_padawanapprentice"},
  37. command = "JediPadawan",
  38. max = 0,
  39. salary = 0,
  40. admin = 0,
  41. vote = false,
  42. hasLicense = true,
  43. candemote = false,
  44. category = "Jedis",
  45. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  46. ply:SetHealth(600)
  47. ply:SetMaxHealth(600)
  48. end,
  49. })
  50. TEAM_JEDIKNIGHT = DarkRP.createJob("Jedi Knight", {
  51. color = Color(51, 51, 255),
  52. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  53. description = [[You are a Jedi Knight.]],
  54. weapons = {"weapon_lightsaber_dls_knightsith"},
  55. command = "JediKnight",
  56. max = 0,
  57. salary = 0,
  58. admin = 0,
  59. vote = false,
  60. hasLicense = true,
  61. candemote = false,
  62. category = "Jedis",
  63. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  64. ply:SetHealth(750)
  65. ply:SetMaxHealth(750)
  66. end,
  67. })
  68.  
  69. TEAM_JEDIBATTLEMASTER = DarkRP.createJob("Jedi General", {
  70. color = Color(51, 51, 255),
  71. model = {"models/hammerfall/lordtylerslyfox/v2_casualjedi_01.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_02.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_03.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_04.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_05.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_06.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_07.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_08.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_09.mdl"},
  72. description = [[You are a Jedi Battlemaster.]],
  73. weapons = {"weapon_lightsaber_dls_jedigeneral"},
  74. command = "JediBattlemaster",
  75. max = 0,
  76. salary = 0,
  77. admin = 0,
  78. vote = false,
  79. hasLicense = true,
  80. candemote = false,
  81. category = "Jedis",
  82. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  83. ply:SetHealth(1200)
  84. ply:SetMaxHealth(1200)
  85. end,
  86. })
  87. TEAM_JEDICOUNCIL = DarkRP.createJob("Jedi Council Member", {
  88. color = Color(51, 51, 255, 255),
  89. model = {"models/grealms/characters/jedibattlelord/jedibattlelord_04.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_03.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_02.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_05.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_06.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_09.mdl"},
  90. description = [[You are a Jedi Council Member.]],
  91. weapons = {"weapon_lightsaber_dls_council", "gmod_tool", "weapon_lightsaber_dls_dual_council"},
  92. command = "JEDICOUNCIL",
  93. max = 0,
  94. salary = 0,
  95. admin = 0,
  96. vote = false,
  97. hasLicense = true,
  98. candemote = false,
  99. -- CustomCheck
  100. medic = false,
  101. chief = false,
  102. mayor = false,
  103. hobo = false,
  104. cook = false,
  105. category = "Jedis",
  106. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  107. ply:SetHealth(1400)
  108. ply:SetMaxHealth(1400)
  109. end,
  110. })
  111. TEAM_KITFISTO = DarkRP.createJob("Jedi Master Kit Fisto", {
  112. color = Color(51, 51, 255),
  113. model = {"models/grealms/characters/kitfisto/fisto.mdl"},
  114. description = [[You are Kit Fisto.]],
  115. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  116. command = "KitFisto",
  117. max = 1,
  118. salary = 0,
  119. admin = 0,
  120. vote = false,
  121. hasLicense = true,
  122. candemote = false,
  123. category = "Jedis",
  124. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  125. ply:SetHealth(1550)
  126. ply:SetMaxHealth(1550)
  127. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  128. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  129. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  130. end,
  131. })
  132. TEAM_AHSOKA = DarkRP.createJob("Ahsoka Tano", {
  133. color = Color(51, 51, 255),
  134. model = {"models/jazzmcfly/jka/ashoka/jka_ashoka.mdl"},
  135. description = [[You are Ahsoka Tano.]],
  136. weapons = {"weapon_lightsaber_dls_dual_lowdonator"},
  137. command = "Ahsoka",
  138. max = 1,
  139. salary = 0,
  140. admin = 0,
  141. vote = false,
  142. hasLicense = true,
  143. candemote = false,
  144. category = "Jedis",
  145. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  146. ply:SetHealth(1150)
  147. ply:SetMaxHealth(1150)
  148. end,
  149. })
  150. TEAM_SAESEE = DarkRP.createJob("Jedi Master Saesee Tiin", {
  151. color = Color(51, 51, 255),
  152. model = {"models/cultist_kun/sw/saesee_tiin.mdl"},
  153. description = [[You are Saesee Tiin.]],
  154. weapons = {"weapon_lightsaber_dls_lowdonator"},
  155. command = "Saesee",
  156. max = 1,
  157. salary = 0,
  158. admin = 0,
  159. vote = false,
  160. hasLicense = true,
  161. candemote = false,
  162. category = "Jedis",
  163. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  164. ply:SetHealth(1450)
  165. ply:SetMaxHealth(1450)
  166. end,
  167. })
  168. TEAM_COLEMANN = DarkRP.createJob("Jedi Master Colemann Trebor", {
  169. color = Color(51, 51, 255),
  170. model = {"models/cultist_kun/sw/coleman.mdl"},
  171. description = [[You are Colemann Trebor.]],
  172. weapons = {"weapon_lightsaber_dls_lowdonator"},
  173. command = "Colemann",
  174. max = 1,
  175. salary = 0,
  176. admin = 0,
  177. vote = false,
  178. hasLicense = true,
  179. candemote = false,
  180. category = "Jedis",
  181. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  182. ply:SetHealth(1450)
  183. ply:SetMaxHealth(1450)
  184. end,
  185. })
  186. TEAM_MUNDI = DarkRP.createJob("Jedi Master Ki-Adi-Mundi", {
  187. color = Color(51, 51, 255),
  188. model = {"models/cultist_kun/sw/mm.mdl"},
  189. description = [[You are Ki-Adi-Mundi.]],
  190. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  191. command = "Mundi",
  192. max = 1,
  193. salary = 0,
  194. admin = 0,
  195. vote = false,
  196. hasLicense = true,
  197. candemote = false,
  198. category = "Jedis",
  199. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  200. ply:SetHealth(1550)
  201. ply:SetMaxHealth(1550)
  202. end,
  203. })
  204. TEAM_KOON = DarkRP.createJob("Jedi Master Plo Koon", {
  205. color = Color(51, 51, 255),
  206. model = {"models/kriegsyntax/sw_752/plokoon_est.mdl"},
  207. description = [[You are Plo Koon.]],
  208. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  209. command = "Koon",
  210. max = 1,
  211. salary = 0,
  212. admin = 0,
  213. vote = false,
  214. hasLicense = true,
  215. candemote = false,
  216. category = "Jedis",
  217. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  218. ply:SetHealth(1550)
  219. ply:SetMaxHealth(1550)
  220. end,
  221. })
  222. TEAM_KOTH = DarkRP.createJob("Jedi Master Eeth Koth", {
  223. color = Color(51, 51, 255),
  224. model = {"models/tfa/comm/gg/pm_sw_eeth_koth.mdl"},
  225. description = [[You are Eeth Koth.]],
  226. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  227. command = "Koth",
  228. max = 1,
  229. salary = 0,
  230. admin = 0,
  231. vote = false,
  232. hasLicense = true,
  233. candemote = false,
  234. category = "Jedis",
  235. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  236. ply:SetHealth(1550)
  237. ply:SetMaxHealth(1550)
  238. end,
  239. })
  240. TEAM_SATELESHAN = DarkRP.createJob("Jedi Grand Master Satele Shan", {
  241. color = Color(51, 51, 255),
  242. model = {"models/grealms/characters/satele/satele.mdl"},
  243. description = [[You are Satele Shan.]],
  244. weapons = {"weapon_lightsaber_dls_highdonator"},
  245. command = "Satele",
  246. max = 1,
  247. salary = 0,
  248. admin = 0,
  249. vote = false,
  250. hasLicense = true,
  251. candemote = false,
  252. category = "Jedis",
  253. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  254. ply:SetHealth(1650)
  255. ply:SetMaxHealth(1650)
  256. end,
  257. })
  258. TEAM_BASTILASHAN = DarkRP.createJob("Jedi Master Bastila Shan", {
  259. color = Color(51, 51, 255),
  260. model = {"weapon_lightsaber_dls_highdonator"},
  261. description = [[You are Bastila Shan.]],
  262. weapons = {"weapon_lightsaber"},
  263. command = "Bastila",
  264. max = 1,
  265. salary = 0,
  266. admin = 0,
  267. vote = false,
  268. hasLicense = true,
  269. candemote = false,
  270. category = "Jedis",
  271. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  272. ply:SetHealth(1650)
  273. ply:SetMaxHealth(1650)
  274. end,
  275. })
  276. TEAM_MACEWINDU = DarkRP.createJob("Jedi Master Mace Windu", {
  277. color = Color(51, 51, 255),
  278. model = {"models/ryan7259/mace_windu/mace_windu_player.mdl"},
  279. description = [[You are Mace Windu.]],
  280. weapons = {"weapon_lightsaber_dls_highdonator"},
  281. command = "Mace",
  282. max = 1,
  283. salary = 0,
  284. admin = 0,
  285. vote = false,
  286. hasLicense = true,
  287. candemote = false,
  288. category = "Jedis",
  289. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  290. ply:SetHealth(1700)
  291. ply:SetMaxHealth(1700)
  292. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  293. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  294. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  295. end,
  296. })
  297. TEAM_YARAELPOOF = DarkRP.createJob("Jedi Master Yarael Poof", {
  298. color = Color(51, 51, 255),
  299. model = {"models/cultist_kun/sw/yarael_poof.mdl"},
  300. description = [[You are Yarael Poof.]],
  301. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  302. command = "Yarael",
  303. max = 1,
  304. salary = 0,
  305. admin = 0,
  306. vote = false,
  307. hasLicense = true,
  308. candemote = false,
  309. category = "Jedis",
  310. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  311. ply:SetHealth(1550)
  312. ply:SetMaxHealth(1550)
  313. end,
  314. })
  315. TEAM_OBIWAN = DarkRP.createJob("Jedi Master Obi Wan Kenobi", {
  316. color = Color(51, 51, 255),
  317. model = {"models/kriegsyntax/sw_752/obiwan_est.mdl"},
  318. description = [[You are Obi Wan Kenobi.]],
  319. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  320. command = "Obi",
  321. max = 1,
  322. salary = 0,
  323. admin = 0,
  324. vote = false,
  325. hasLicense = true,
  326. candemote = false,
  327. category = "Jedis",
  328. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  329. ply:SetHealth(1550)
  330. ply:SetMaxHealth(1550)
  331. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  332. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  333. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  334. end,
  335. })
  336. TEAM_YODA = DarkRP.createJob("Jedi Grand Master Luke Skywalker", {
  337. color = Color(0, 102, 51),
  338. model = {"models/player/b4p/b4p_yoda.mdl"},
  339. description = [[You are Luke Skywalker.]],
  340. weapons = {"weapon_lightsaber_dls_highdonator"},
  341. command = "Yoda",
  342. max = 1,
  343. salary = 0,
  344. admin = 0,
  345. vote = false,
  346. hasLicense = true,
  347. candemote = false,
  348. category = "Jedis",
  349. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  350. ply:SetHealth(1700)
  351. ply:SetMaxHealth(1700)
  352. ply:SetRunSpeed(ply:GetRunSpeed() * 1.05)
  353. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.05)
  354. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.05)
  355. end,
  356. })
  357. TEAM_JEDIGUARDIAN = DarkRP.createJob("Jedi Guardian", {
  358. color = Color(51, 51, 255),
  359. model = {"models/player/light_revan.mdl"},
  360. description = [[You are a Jedi Guardian [CLASS]. Jedi guardians focus on combat training and masterful use of the lightsaber.]],
  361. weapons = {"weapon_lightsaber_dls_guardianwarrior"},
  362. command = "JediGuardian",
  363. max = 0,
  364. salary = 0,
  365. admin = 0,
  366. vote = false,
  367. hasLicense = true,
  368. candemote = false,
  369. category = "Jedi Classes",
  370. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  371. ply:SetHealth(1000)
  372. ply:SetMaxHealth(1000)
  373. end,
  374. })
  375. TEAM_JEDICONSULAR = DarkRP.createJob("Jedi Consular", {
  376. color = Color(51, 51, 255),
  377. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  378. description = [[You are a Jedi Consular [CLASS]. Jedi Consulars tend to focus less on physical combat and more on mental disciplines in order to augment force mastery.]],
  379. weapons = {"weapon_lightsaber_dls_consularinquisitor"},
  380. command = "JediConsular",
  381. max = 0,
  382. salary = 0,
  383. admin = 0,
  384. vote = false,
  385. hasLicense = true,
  386. candemote = false,
  387. category = "Jedi Classes",
  388. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  389. ply:SetHealth(750)
  390. ply:SetMaxHealth(750)
  391. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  392. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  393. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  394. end,
  395. })
  396.  
  397. TEAM_JEDIKSAGE = DarkRP.createJob("Jedi Knight Sage", {
  398. color = Color(51, 51, 255),
  399. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  400. description = [[You are a Jedi Knight Sage.]],
  401. weapons = {"weapon_lightsaber_dls_knightsage"},
  402. command = "JediKSage",
  403. max = 0,
  404. salary = 0,
  405. admin = 0,
  406. vote = false,
  407. hasLicense = true,
  408. candemote = false,
  409. category = "Jedi Knight Classes",
  410. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  411. ply:SetHealth(750)
  412. ply:SetMaxHealth(750)
  413. end,
  414. })
  415. TEAM_JEDIKSHADOW = DarkRP.createJob("Jedi Knight Shadow", {
  416. color = Color(51, 51, 255),
  417. model = {"models/hammerfall/lordtylerslyfox/v2_casualjedi_01.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_02.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_03.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_04.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_05.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_06.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_07.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_08.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_09.mdl"},
  418. description = [[You are a Jedi Knight Shadow.]],
  419. weapons = {"weapon_lightsaber_dls_knightshadow"},
  420. command = "JediKShadow",
  421. max = 0,
  422. salary = 0,
  423. admin = 0,
  424. vote = false,
  425. hasLicense = true,
  426. candemote = false,
  427. category = "Jedi Knight Classes",
  428. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  429. ply:SetHealth(850)
  430. ply:SetMaxHealth(850)
  431. end,
  432. })
  433. TEAM_JEDIKSENTINEL = DarkRP.createJob("Jedi Knight Sentinel", {
  434. color = Color(51, 51, 255),
  435. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  436. description = [[You are a Jedi Knight Sentinel.]],
  437. weapons = {"weapon_lightsaber_dls_knightsentinel"},
  438. command = "JediKSentinel",
  439. max = 0,
  440. salary = 0,
  441. admin = 0,
  442. vote = false,
  443. hasLicense = true,
  444. candemote = false,
  445. category = "Jedi Knight Classes",
  446. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  447. ply:SetHealth(750)
  448. ply:SetMaxHealth(750)
  449. end,
  450. })
  451. TEAM_JEDIMGUARDIAN = DarkRP.createJob("Jedi Master Guardian", {
  452. color = Color(51, 51, 255),
  453. model = {"models/player/light_revan.mdl"},
  454. description = [[You are a Jedi Master Guardian.]],
  455. weapons = {"weapon_lightsaber_dls_mguardianlwarrior"},
  456. command = "JediMGuardian",
  457. max = 0,
  458. salary = 0,
  459. admin = 0,
  460. vote = false,
  461. hasLicense = true,
  462. candemote = false,
  463. category = "Jedi Master Classes",
  464. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  465. ply:SetHealth(1300)
  466. ply:SetMaxHealth(1300)
  467. end,
  468. })
  469. TEAM_JEDIMCONSULAR = DarkRP.createJob("Jedi Master Consular", {
  470. color = Color(51, 51, 255),
  471. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  472. description = [[You are a Jedi Consular. ]],
  473. weapons = {"weapon_lightsaber_dls_mconsularlinquisitor"},
  474. command = "JediMConsular",
  475. max = 0,
  476. salary = 0,
  477. admin = 0,
  478. vote = false,
  479. hasLicense = true,
  480. candemote = false,
  481. category = "Jedi Master Classes",
  482. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  483. ply:SetHealth(1000)
  484. ply:SetMaxHealth(1000)
  485. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  486. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  487. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  488. end,
  489. })
  490. TEAM_JEDIMSAGE = DarkRP.createJob("Jedi Master Sage", {
  491. color = Color(51, 51, 255),
  492. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  493. description = [[You are a Jedi Knight Sage.]],
  494. weapons = {"weapon_lightsaber_dls_mastersage"},
  495. command = "JediMSage",
  496. max = 0,
  497. salary = 0,
  498. admin = 0,
  499. vote = false,
  500. hasLicense = true,
  501. candemote = false,
  502. category = "Jedi Master Classes",
  503. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  504. ply:SetHealth(1000)
  505. ply:SetMaxHealth(1000)
  506. end,
  507. })
  508. TEAM_JEDIMSHADOW = DarkRP.createJob("Jedi Master Shadow", {
  509. color = Color(51, 51, 255),
  510. model = {"models/hammerfall/lordtylerslyfox/v2_casualjedi_01.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_02.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_03.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_04.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_05.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_06.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_07.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_08.mdl", "models/hammerfall/lordtylerslyfox/v2_casualjedi_09.mdl"},
  511. description = [[You are a Jedi Master Shadow.]],
  512. weapons = {"weapon_lightsaber_dls_mshadowlassassin"},
  513. command = "JediMShadow",
  514. max = 0,
  515. salary = 0,
  516. admin = 0,
  517. vote = false,
  518. hasLicense = true,
  519. candemote = false,
  520. category = "Jedi Master Classes",
  521. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  522. ply:SetHealth(1150)
  523. ply:SetMaxHealth(1150)
  524. end,
  525. })
  526. TEAM_JEDIMSENTINEL = DarkRP.createJob("Jedi Master Sentinel", {
  527. color = Color(51, 51, 255),
  528. model = {"models/grealms/characters/jedirobes/jedirobes_01.mdl", "models/grealms/characters/jedirobes/jedirobes_02.mdl", "models/grealms/characters/jedirobes/jedirobes_03.mdl", "models/grealms/characters/jedirobes/jedirobes_04.mdl", "models/grealms/characters/jedirobes/jedirobes_05.mdl", "models/grealms/characters/jedirobes/jedirobes_06.mdl", "models/grealms/characters/jedirobes/jedirobes_07.mdl", "models/grealms/characters/jedirobes/jedirobes_08.mdl", "models/grealms/characters/jedirobes/jedirobes_09.mdl"},
  529. description = [[You are a Jedi Master Sentinel.]],
  530. weapons = {"weapon_lightsaber_dls_msentinellmarauder"},
  531. command = "JediMSentinel",
  532. max = 0,
  533. salary = 0,
  534. admin = 0,
  535. vote = false,
  536. hasLicense = true,
  537. candemote = false,
  538. category = "Jedi Master Classes",
  539. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  540. ply:SetHealth(1000)
  541. ply:SetMaxHealth(1000)
  542. end,
  543. })
  544.  
  545. TEAM_JEDITEMPLEGUARD = DarkRP.createJob("Jedi Temple Guard", {
  546. color = Color(96, 96, 96),
  547. model = {"models/jazzmcfly/jka/jtg/jtg.mdl"},
  548. description = [[You are a Jedi Temple Guard.]],
  549. weapons = {"weapon_lightsaber_dls_msentinellmarauder", "weapon_cuff_elastic"},
  550. command = "JTG",
  551. max = 4,
  552. salary = 0,
  553. admin = 0,
  554. vote = false,
  555. hasLicense = true,
  556. candemote = false,
  557. category = "Jedi Guards",
  558. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  559. ply:SetHealth(1300)
  560. ply:SetMaxHealth(1300)
  561. end,
  562. })
  563. TEAM_JEDITEMPLEGUARDMASTER = DarkRP.createJob("Jedi Temple Guard Master", {
  564. color = Color(96, 96, 96),
  565. model = {"models/jazzmcfly/jka/jtg/jtg.mdl"},
  566. description = [[You are the Jedi Temple Guard Master.]],
  567. weapons = {"weapon_lightsaber_dls_msentinellmarauder", "weapon_cuff_elastic"},
  568. command = "JTGM",
  569. max = 1,
  570. salary = 0,
  571. admin = 0,
  572. vote = false,
  573. hasLicense = true,
  574. candemote = false,
  575. category = "Jedi Guards",
  576. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  577. ply:SetHealth(1400)
  578. ply:SetMaxHealth(1400)
  579. end,
  580. })
  581. TEAM_RT = DarkRP.createJob("Republic Trooper", {
  582. color = Color(96, 96, 96),
  583. model = {"models/grealms/characters/republicforestcamo/republicforestcamo.mdl", "models/grealms/characters/republicdesertcamo/republicdesertcamo.mdl", "models/grealms/characters/republicfrostcamo/republicfrostcamo.mdl"},
  584. description = [[You are a Republic Trooper.]],
  585. weapons = {"tfa_swch_dc15a", "tfa_sw_repsnip", "tfa_sw_repshot", "realistic_hook", "weapon_policeshield"},
  586. command = "REPTRP",
  587. max = 0,
  588. salary = 0,
  589. admin = 0,
  590. vote = false,
  591. hasLicense = true,
  592. candemote = false,
  593. category = "Republic Troops",
  594. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  595. ply:SetHealth(500)
  596. ply:SetMaxHealth(500)
  597. end,
  598. ammo = {
  599. ["pistol"] = 300000,
  600. ["ar2"] = 300000,
  601. ["357"] = 300000,
  602. ["smg"] = 300000,
  603. },
  604. })
  605. TEAM_RCOMM = DarkRP.createJob("Republic Commander", {
  606. color = Color(96, 96, 96),
  607. model = {"models/grealms/characters/republicurbancamo/republicurbancamo.mdl"},
  608. description = [[You are the Republic Commander.]],
  609. weapons = {"tfa_swch_dc15a", "tfa_sw_repsnip", "tfa_sw_repshot", "realistic_hook", "weapon_policeshield"},
  610. command = "REPCOMM",
  611. max = 1,
  612. salary = 0,
  613. admin = 0,
  614. vote = false,
  615. hasLicense = true,
  616. candemote = false,
  617. category = "Republic Troops",
  618. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  619. ply:SetHealth(700)
  620. ply:SetMaxHealth(700)
  621. end,
  622. ammo = {
  623. ["pistol"] = 300000,
  624. ["ar2"] = 300000,
  625. ["357"] = 300000,
  626. ["smg"] = 300000,
  627. },
  628. })
  629. TEAM_SITHACOLYTE = DarkRP.createJob("Sith Acolyte", {
  630. color = Color(255, 0, 0, 255),
  631. model = {"models/grealms/characters/darkjedi/darkjedi.mdl"},
  632. description = [[You are a sith acolyte.]],
  633. weapons = {},
  634. command = "Acolyte",
  635. max = 0,
  636. salary = 0,
  637. admin = 0,
  638. vote = false,
  639. hasLicense = true,
  640. candemote = false,
  641. -- CustomCheck
  642. medic = false,
  643. chief = false,
  644. mayor = false,
  645. hobo = false,
  646. cook = false,
  647. category = "Siths",
  648. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  649. ply:SetHealth(450)
  650. ply:SetMaxHealth(450)
  651. end,
  652. })
  653. TEAM_SITHAPPRENTICE = DarkRP.createJob("Sith Apprentice", {
  654. color = Color(255, 0, 0, 255),
  655. model = {"models/syntheticgaming/characters/sithassassin/sithassassin.mdl"},
  656. description = [[You are a sith apprentice.]],
  657. weapons = {"weapon_lightsaber_dls_padawanapprentice"},
  658. command = "Apprentice",
  659. max = 0,
  660. salary = 0,
  661. admin = 0,
  662. vote = false,
  663. hasLicense = true,
  664. candemote = false,
  665. -- CustomCheck
  666. medic = false,
  667. chief = false,
  668. mayor = false,
  669. hobo = false,
  670. cook = false,
  671. category = "Siths",
  672. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  673. ply:SetHealth(600)
  674. ply:SetMaxHealth(600)
  675. end,
  676. })
  677. TEAM_SITH = DarkRP.createJob("Sith", {
  678. color = Color(255, 0, 0, 255),
  679. model = {"models/jazzmcfly/jka/darth_savet/jka_savet.mdl"},
  680. description = [[You are a Sith.]],
  681. weapons = {"weapon_lightsaber_dls_knightsith"},
  682. command = "Sith",
  683. max = 0,
  684. salary = 0,
  685. admin = 0,
  686. vote = false,
  687. hasLicense = true,
  688. candemote = false,
  689. -- CustomCheck
  690. medic = false,
  691. chief = false,
  692. mayor = false,
  693. hobo = false,
  694. cook = false,
  695. category = "Siths",
  696. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  697. ply:SetHealth(750)
  698. ply:SetMaxHealth(750)
  699. end,
  700. })
  701.  
  702. TEAM_DARTH = DarkRP.createJob("Darth", {
  703. color = Color(255, 0, 0, 255),
  704. model = {"models/player/sw/revan/revan.mdl"},
  705. description = [[You are a Darth.]],
  706. weapons = {"weapon_lightsaber_dls_jedigeneral"},
  707. command = "Darth",
  708. max = 0,
  709. salary = 0,
  710. admin = 0,
  711. vote = false,
  712. hasLicense = true,
  713. candemote = false,
  714. -- CustomCheck
  715. medic = false,
  716. chief = false,
  717. mayor = false,
  718. hobo = false,
  719. cook = false,
  720. category = "Siths",
  721. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  722. ply:SetHealth(1200)
  723. ply:SetMaxHealth(1200)
  724. end,
  725. })
  726. TEAM_SITHCOUNCIL = DarkRP.createJob("Sith Council Member", {
  727. color = Color(255, 0, 0, 255),
  728. model = {"models/grealms/characters/jedibattlelord/jedibattlelord_04.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl"},
  729. description = [[You are a Sith Council Member.]],
  730. weapons = {"weapon_lightsaber_dls_council", "gmod_tool", "weapon_lightsaber_dls_dual_council"},
  731. command = "SITHCOUNCIL",
  732. max = 0,
  733. salary = 0,
  734. admin = 0,
  735. vote = false,
  736. hasLicense = true,
  737. candemote = false,
  738. -- CustomCheck
  739. medic = false,
  740. chief = false,
  741. mayor = false,
  742. hobo = false,
  743. cook = false,
  744. category = "Siths",
  745. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  746. ply:SetHealth(1400)
  747. ply:SetMaxHealth(1400)
  748. end,
  749. })
  750. TEAM_DARTHNIHILUS = DarkRP.createJob("Darth Nihilus", {
  751. color = Color(255, 0, 0, 255),
  752. model = {"models/grealms/characters/darthnihilus/darthnihilus.mdl"},
  753. description = [[You are Darth Nihilus.]],
  754. weapons = {"weapon_lightsaber_dls_highdonator"},
  755. command = "Nihilus",
  756. max = 1,
  757. salary = 0,
  758. admin = 0,
  759. vote = false,
  760. hasLicense = true,
  761. candemote = false,
  762. -- CustomCheck
  763. medic = false,
  764. chief = false,
  765. mayor = false,
  766. hobo = false,
  767. cook = false,
  768. category = "Siths",
  769. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  770. ply:SetHealth(1700)
  771. ply:SetMaxHealth(1700)
  772. end,
  773. })
  774. TEAM_DM = DarkRP.createJob("Darth Malgus", {
  775. color = Color(255, 0, 0, 255),
  776. model = {"models/grealms/characters/malgus/malgus.mdl"},
  777. description = [[You are Darth Malgus.]],
  778. weapons = {"weapon_lightsaber_dls_highdonator"},
  779. command = "DM",
  780. max = 1,
  781. salary = 0,
  782. admin = 0,
  783. vote = false,
  784. hasLicense = true,
  785. candemote = false,
  786. -- CustomCheck
  787. medic = false,
  788. chief = false,
  789. mayor = false,
  790. hobo = false,
  791. cook = false,
  792. category = "Siths",
  793. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  794. ply:SetHealth(1650)
  795. ply:SetMaxHealth(1650)
  796. end,
  797. })
  798. TEAM_DARTHREVAN = DarkRP.createJob("Darth Revan", {
  799. color = Color(255, 0, 0, 255),
  800. model = {"models/grealms/characters/revan_real/revan.mdl"},
  801. description = [[You are Darth Revan.]],
  802. weapons = {"weapon_lightsaber_dls_highdonator"},
  803. command = "Revan",
  804. max = 1,
  805. salary = 0,
  806. admin = 0,
  807. vote = false,
  808. hasLicense = true,
  809. candemote = false,
  810. -- CustomCheck
  811. medic = false,
  812. chief = false,
  813. mayor = false,
  814. hobo = false,
  815. cook = false,
  816. category = "Siths",
  817. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  818. ply:SetHealth(1700)
  819. ply:SetMaxHealth(1700)
  820. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  821. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  822. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  823. end,
  824. })
  825.  
  826. TEAM_DARTHMARR = DarkRP.createJob("Darth Marr", {
  827. color = Color(255, 0, 0, 255),
  828. model = {"models/grealms/characters/darthmarr/darthmarr.mdl"},
  829. description = [[You are Darth Marr.]],
  830. weapons = {"weapon_lightsaber_dls_highdonator"},
  831. command = "Marr",
  832. max = 1,
  833. salary = 0,
  834. admin = 0,
  835. vote = false,
  836. hasLicense = true,
  837. candemote = false,
  838. -- CustomCheck
  839. medic = false,
  840. chief = false,
  841. mayor = false,
  842. hobo = false,
  843. cook = false,
  844. category = "Siths",
  845. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  846. ply:SetHealth(1650)
  847. ply:SetMaxHealth(1650)
  848. end,
  849. })
  850.  
  851. TEAM_DARTHMALAK = DarkRP.createJob("Darth Malak", {
  852. color = Color(255, 0, 0, 255),
  853. model = {"models/grealms/characters/malak/malak.mdl"},
  854. description = [[You are Darth Malak.]],
  855. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  856. command = "Malak",
  857. max = 1,
  858. salary = 0,
  859. admin = 0,
  860. vote = false,
  861. hasLicense = true,
  862. candemote = false,
  863. -- CustomCheck
  864. medic = false,
  865. chief = false,
  866. mayor = false,
  867. hobo = false,
  868. cook = false,
  869. category = "Siths",
  870. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  871. ply:SetHealth(1550)
  872. ply:SetMaxHealth(1550)
  873. end,
  874. })
  875.  
  876. TEAM_DARTHMAUL = DarkRP.createJob("Darth Maul", {
  877. color = Color(255, 0, 0, 255),
  878. model = {"models/player/darth/maul.mdl"},
  879. description = [[You are Darth Maul.]],
  880. weapons = {"weapon_lightsaber_dls_lowdonator"},
  881. command = "Maul",
  882. max = 1,
  883. salary = 0,
  884. admin = 0,
  885. vote = false,
  886. hasLicense = true,
  887. candemote = false,
  888. -- CustomCheck
  889. medic = false,
  890. chief = false,
  891. mayor = false,
  892. hobo = false,
  893. cook = false,
  894. category = "Siths",
  895. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  896. ply:SetHealth(1400)
  897. ply:SetMaxHealth(1400)
  898. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  899. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  900. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  901. end,
  902. })
  903.  
  904. TEAM_DARTHJADUS = DarkRP.createJob("Darth Jadus", {
  905. color = Color(255, 0, 0, 255),
  906. model = {"models/grealms/characters/darthjadus/darthjadus.mdl"},
  907. description = [[You are Darth Jadus.]],
  908. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  909. command = "Jadus",
  910. max = 1,
  911. salary = 0,
  912. admin = 0,
  913. vote = false,
  914. hasLicense = true,
  915. candemote = false,
  916. -- CustomCheck
  917. medic = false,
  918. chief = false,
  919. mayor = false,
  920. hobo = false,
  921. cook = false,
  922. category = "Siths",
  923. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  924. ply:SetHealth(1550)
  925. ply:SetMaxHealth(1550)
  926. end,
  927. })
  928.  
  929. TEAM_DARTHSIDIOUS = DarkRP.createJob("Darth Sidious", {
  930. color = Color(255, 0, 0, 255),
  931. model = {"models/player/emperor_palpatine.mdl"},
  932. description = [[You are Darth Sidious.]],
  933. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  934. command = "Sidious",
  935. max = 1,
  936. salary = 0,
  937. admin = 0,
  938. vote = false,
  939. hasLicense = true,
  940. candemote = false,
  941. -- CustomCheck
  942. medic = false,
  943. chief = false,
  944. mayor = false,
  945. hobo = false,
  946. cook = false,
  947. category = "Siths",
  948. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  949. ply:SetHealth(1500)
  950. ply:SetMaxHealth(1500)
  951. ply:SetRunSpeed(ply:GetRunSpeed() * 1.2)
  952. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.2)
  953. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.2)
  954. end,
  955. })
  956.  
  957. TEAM_DARTHTYRANNUS = DarkRP.createJob("Darth Tyrannus", {
  958. color = Color(255, 0, 0, 255),
  959. model = {"models/kriegsyntax/sw_752/dooku_est.mdl"},
  960. description = [[You are Darth Tyrannus.]],
  961. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  962. command = "Dooku",
  963. max = 1,
  964. salary = 0,
  965. admin = 0,
  966. vote = false,
  967. hasLicense = true,
  968. candemote = false,
  969. -- CustomCheck
  970. medic = false,
  971. chief = false,
  972. mayor = false,
  973. hobo = false,
  974. cook = false,
  975. category = "Siths",
  976. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  977. ply:SetHealth(1550)
  978. ply:SetMaxHealth(1550)
  979. end,
  980. })
  981. TEAM_GRIEVOUS = DarkRP.createJob("General Grievous", {
  982. color = Color(255, 0, 0, 255),
  983. model = {"models/tfa/comm/gg/pm_sw_grievous.mdl"},
  984. description = [[You are General Grievous.]],
  985. weapons = {"weapon_lightsaber_dls_dual_mediumdonator"},
  986. command = "Grievous",
  987. max = 1,
  988. salary = 0,
  989. admin = 0,
  990. vote = false,
  991. hasLicense = true,
  992. candemote = false,
  993. -- CustomCheck
  994. medic = false,
  995. chief = false,
  996. mayor = false,
  997. hobo = false,
  998. cook = false,
  999. category = "Siths",
  1000. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1001. ply:SetHealth(1500)
  1002. ply:SetMaxHealth(1500)
  1003. end,
  1004. })
  1005. TEAM_DARTHSION = DarkRP.createJob("Darth Sion", {
  1006. color = Color(255, 0, 0, 255),
  1007. model = {"models/grealms/characters/darthsion/sion.mdl"},
  1008. description = [[You are Darth Sion.]],
  1009. weapons = {"weapon_lightsaber_dls_lowdonator"},
  1010. command = "Sion",
  1011. max = 1,
  1012. salary = 0,
  1013. admin = 0,
  1014. vote = false,
  1015. hasLicense = true,
  1016. candemote = false,
  1017. -- CustomCheck
  1018. medic = false,
  1019. chief = false,
  1020. mayor = false,
  1021. hobo = false,
  1022. cook = false,
  1023. category = "Siths",
  1024. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1025. ply:SetHealth(1450)
  1026. ply:SetMaxHealth(1450)
  1027. end,
  1028. })
  1029.  
  1030. TEAM_DARTHVADER = DarkRP.createJob("Darth Vader", {
  1031. color = Color(255, 0, 0, 255),
  1032. model = {"models/nate159/swbf/hero/player/hero_sith_vader_player.mdl"},
  1033. description = [[You are Darth Vader.]],
  1034. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  1035. command = "Vader",
  1036. max = 1,
  1037. salary = 0,
  1038. admin = 0,
  1039. vote = false,
  1040. hasLicense = true,
  1041. candemote = false,
  1042. -- CustomCheck
  1043. medic = false,
  1044. chief = false,
  1045. mayor = false,
  1046. hobo = false,
  1047. cook = false,
  1048. category = "Siths",
  1049. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1050. ply:SetHealth(1600)
  1051. ply:SetMaxHealth(1600)
  1052. ply:SetRunSpeed(ply:GetRunSpeed() * 0.8)
  1053. ply:SetWalkSpeed(ply:GetWalkSpeed() * 0.8)
  1054. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 0.8)
  1055. end,
  1056. })
  1057.  
  1058. TEAM_SAVAGEOPRESS = DarkRP.createJob("Savage Opress", {
  1059. color = Color(255, 0, 0, 255),
  1060. model = {"models/syntheticgaming/characters/savageopress/savageopress.mdl"},
  1061. description = [[You are Savage Opress.]],
  1062. weapons = {"weapon_lightsaber_dls_lowdonator"},
  1063. command = "Opress",
  1064. max = 1,
  1065. salary = 0,
  1066. admin = 0,
  1067. vote = false,
  1068. hasLicense = true,
  1069. candemote = false,
  1070. -- CustomCheck
  1071. medic = false,
  1072. chief = false,
  1073. mayor = false,
  1074. hobo = false,
  1075. cook = false,
  1076. category = "Siths",
  1077. modelScale = 1.05,
  1078. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1079. ply:SetHealth(1400)
  1080. ply:SetMaxHealth(1400)
  1081. end,
  1082. })
  1083. TEAM_SITHWARRIOR = DarkRP.createJob("Sith Warrior", {
  1084. color = Color(255, 0, 0, 255),
  1085. model = {"models/player/sitharmor/sitharmor_pm.mdl"},
  1086. description = [[You are a Sith Warrior [CLASS]. Sith Warriors are known to focus more on melee combat and Lightsaber skills.]],
  1087. weapons = {"weapon_lightsaber_dls_guardianwarrior"},
  1088. command = "SithWarrior",
  1089. max = 0,
  1090. salary = 0,
  1091. admin = 0,
  1092. vote = false,
  1093. hasLicense = true,
  1094. candemote = false,
  1095. -- CustomCheck
  1096. medic = false,
  1097. chief = false,
  1098. mayor = false,
  1099. hobo = false,
  1100. cook = false,
  1101. category = "Sith Classes",
  1102. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1103. ply:SetHealth(1000)
  1104. ply:SetMaxHealth(1000)
  1105. end,
  1106. })
  1107. TEAM_SITHINQUISITOR = DarkRP.createJob("Sith Inquisitor", {
  1108. color = Color(255, 0, 0, 255),
  1109. model = {"models/morganicism/swtor/morganis/morganis.mdl"},
  1110. description = [[You are a Sith Inquisitor [CLASS]. Sith Inquisitors specialize in Force abilities as opposed to martial might.]],
  1111. weapons = {"weapon_lightsaber_dls_consularinquisitor"},
  1112. command = "SithInquisitor",
  1113. max = 0,
  1114. salary = 0,
  1115. admin = 0,
  1116. vote = false,
  1117. hasLicense = true,
  1118. candemote = false,
  1119. -- CustomCheck
  1120. medic = false,
  1121. chief = false,
  1122. mayor = false,
  1123. hobo = false,
  1124. cook = false,
  1125. category = "Sith Classes",
  1126. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1127. ply:SetHealth(750)
  1128. ply:SetMaxHealth(750)
  1129. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  1130. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  1131. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  1132. end,
  1133. })
  1134.  
  1135. TEAM_SITHSORCERER = DarkRP.createJob("Sith Sorcerer", {
  1136. color = Color(255, 0, 0, 255),
  1137. model = {"models/morganicism/swtor/morganis/morganis.mdl"},
  1138. description = [[You are a Sith Sorcerer.]],
  1139. weapons = {"weapon_lightsaber_dls_sithsorcerer"},
  1140. command = "SithSorcerer",
  1141. max = 0,
  1142. salary = 0,
  1143. admin = 0,
  1144. vote = false,
  1145. hasLicense = true,
  1146. candemote = false,
  1147. -- CustomCheck
  1148. medic = false,
  1149. chief = false,
  1150. mayor = false,
  1151. hobo = false,
  1152. cook = false,
  1153. category = "Sith Classes",
  1154. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1155. ply:SetHealth(750)
  1156. ply:SetMaxHealth(750)
  1157. end,
  1158. })
  1159. TEAM_SITHASSASSIN = DarkRP.createJob("Sith Assassin", {
  1160. color = Color(255, 0, 0, 255),
  1161. model = {"models/player/darth_revan.mdl"},
  1162. description = [[You are a Sith Assassin.]],
  1163. weapons = {"weapon_lightsaber_dls_shadowassassin"},
  1164. command = "SithAssassin",
  1165. max = 0,
  1166. salary = 0,
  1167. admin = 0,
  1168. vote = false,
  1169. hasLicense = true,
  1170. candemote = false,
  1171. -- CustomCheck
  1172. medic = false,
  1173. chief = false,
  1174. mayor = false,
  1175. hobo = false,
  1176. cook = false,
  1177. category = "Sith Classes",
  1178. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1179. ply:SetHealth(850)
  1180. ply:SetMaxHealth(850)
  1181. end,
  1182. })
  1183. TEAM_SITHMARAUDER = DarkRP.createJob("Sith Marauder", {
  1184. color = Color(255, 0, 0, 255),
  1185. model = {"models/nate159/req/swtfu/malecdeathstar.mdl"},
  1186. description = [[You are a Sith Marauder.]],
  1187. weapons = {"weapon_lightsaber_dls_sentinelmarauder"},
  1188. command = "SithMarauder",
  1189. max = 0,
  1190. salary = 0,
  1191. admin = 0,
  1192. vote = false,
  1193. hasLicense = true,
  1194. candemote = false,
  1195. -- CustomCheck
  1196. medic = false,
  1197. chief = false,
  1198. mayor = false,
  1199. hobo = false,
  1200. cook = false,
  1201. category = "Sith Classes",
  1202. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1203. ply:SetHealth(750)
  1204. ply:SetMaxHealth(750)
  1205. end,
  1206. })
  1207. TEAM_SITHLWARRIOR = DarkRP.createJob("Sith Lord Warrior", {
  1208. color = Color(255, 0, 0, 255),
  1209. model = {"models/player/darth_revan.mdl"},
  1210. description = [[You are a Sith Lord Warrior.]],
  1211. weapons = {"weapon_lightsaber_dls_mguardianlwarrior"},
  1212. command = "SithLWarrior",
  1213. max = 0,
  1214. salary = 0,
  1215. admin = 0,
  1216. vote = false,
  1217. hasLicense = true,
  1218. candemote = false,
  1219. -- CustomCheck
  1220. medic = false,
  1221. chief = false,
  1222. mayor = false,
  1223. hobo = false,
  1224. cook = false,
  1225. category = "Sith Lord Classes",
  1226. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1227. ply:SetHealth(1300)
  1228. ply:SetMaxHealth(1300)
  1229. end,
  1230. })
  1231. TEAM_SITHLINQUISITOR = DarkRP.createJob("Sith Lord Inquisitor", {
  1232. color = Color(255, 0, 0, 255),
  1233. model = {"models/morganicism/swtor/morganis/morganis.mdl"},
  1234. description = [[You are a Sith Inquisitor.]],
  1235. weapons = {"weapon_lightsaber_dls_mconsularlinquisitor"},
  1236. command = "SithLInquisitor",
  1237. max = 0,
  1238. salary = 0,
  1239. admin = 0,
  1240. vote = false,
  1241. hasLicense = true,
  1242. candemote = false,
  1243. -- CustomCheck
  1244. medic = false,
  1245. chief = false,
  1246. mayor = false,
  1247. hobo = false,
  1248. cook = false,
  1249. category = "Sith Lord Classes",
  1250. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1251. ply:SetHealth(1000)
  1252. ply:SetMaxHealth(1000)
  1253. ply:SetRunSpeed(ply:GetRunSpeed() * 1.1)
  1254. ply:SetWalkSpeed(ply:GetWalkSpeed() * 1.1)
  1255. ply:SetCrouchedWalkSpeed(ply:GetCrouchedWalkSpeed() * 1.1)
  1256. end,
  1257. })
  1258. TEAM_SITHLSORCERER = DarkRP.createJob("Sith Lord Sorcerer", {
  1259. color = Color(255, 0, 0, 255),
  1260. model = {"models/morganicism/swtor/morganis/morganis.mdl"},
  1261. description = [[You are a Sith Lord Sorcerer.]],
  1262. weapons = {"weapon_lightsaber_dls_msithsorcerer"},
  1263. command = "SithLSorcerer",
  1264. max = 0,
  1265. salary = 0,
  1266. admin = 0,
  1267. vote = false,
  1268. hasLicense = true,
  1269. candemote = false,
  1270. -- CustomCheck
  1271. medic = false,
  1272. chief = false,
  1273. mayor = false,
  1274. hobo = false,
  1275. cook = false,
  1276. category = "Sith Lord Classes",
  1277. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1278. ply:SetHealth(1000)
  1279. ply:SetMaxHealth(1000)
  1280. end,
  1281. })
  1282. TEAM_SITHLASSASSIN = DarkRP.createJob("Sith Lord Assassin", {
  1283. color = Color(255, 0, 0, 255),
  1284. model = {"models/player/darth_revan.mdl"},
  1285. description = [[You are a Sith Lord Assassin.]],
  1286. weapons = {"weapon_lightsaber_dls_mshadowlassassin"},
  1287. command = "SithLAssassin",
  1288. max = 0,
  1289. salary = 0,
  1290. admin = 0,
  1291. vote = false,
  1292. hasLicense = true,
  1293. candemote = false,
  1294. -- CustomCheck
  1295. medic = false,
  1296. chief = false,
  1297. mayor = false,
  1298. hobo = false,
  1299. cook = false,
  1300. category = "Sith Lord Classes",
  1301. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1302. ply:SetHealth(1150)
  1303. ply:SetMaxHealth(1150)
  1304. end,
  1305. })
  1306. TEAM_SITHLMARAUDER = DarkRP.createJob("Sith Lord Marauder", {
  1307. color = Color(255, 0, 0, 255),
  1308. model = {"models/nate159/req/swtfu/malecdeathstar.mdl"},
  1309. description = [[You are a Sith Lord Marauder.]],
  1310. weapons = {"weapon_lightsaber_dls_msentinellmarauder"},
  1311. command = "SithLMarauder",
  1312. max = 0,
  1313. salary = 0,
  1314. admin = 0,
  1315. vote = false,
  1316. hasLicense = true,
  1317. candemote = false,
  1318. -- CustomCheck
  1319. medic = false,
  1320. chief = false,
  1321. mayor = false,
  1322. hobo = false,
  1323. cook = false,
  1324. category = "Sith Lord Classes",
  1325. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1326. ply:SetHealth(1000)
  1327. ply:SetMaxHealth(1000)
  1328. end,
  1329. })
  1330.  
  1331. TEAM_SSG = DarkRP.createJob("Sith Shadow Guard", {
  1332. color = Color(255, 0, 0, 255),
  1333. model = {"models/imperial/guard/blackguard.mdl"},
  1334. description = [[You are a Sith Shadow Guard.]],
  1335. weapons = {"weapon_lightsaber_dls_msentinellmarauder"},
  1336. command = "SSG",
  1337. max = 4,
  1338. salary = 0,
  1339. admin = 0,
  1340. vote = false,
  1341. hasLicense = true,
  1342. candemote = false,
  1343. -- CustomCheck
  1344. medic = false,
  1345. chief = false,
  1346. mayor = false,
  1347. hobo = false,
  1348. cook = false,
  1349. category = "Sith Guards",
  1350. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1351. ply:SetHealth(1300)
  1352. ply:SetMaxHealth(1300)
  1353. end,
  1354. })
  1355. TEAM_SSGM = DarkRP.createJob("Sith Shadow Guard Master", {
  1356. color = Color(255, 0, 0, 255),
  1357. model = {"models/imperial/guard/blackguard.mdl"},
  1358. description = [[You are a Sith Shadow Guard Master.]],
  1359. weapons = {"weapon_lightsaber_dls_msentinellmarauder"},
  1360. command = "SSGM",
  1361. max = 1,
  1362. salary = 0,
  1363. admin = 0,
  1364. vote = false,
  1365. hasLicense = true,
  1366. candemote = false,
  1367. -- CustomCheck
  1368. medic = false,
  1369. chief = false,
  1370. mayor = false,
  1371. hobo = false,
  1372. cook = false,
  1373. category = "Sith Guards",
  1374. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1375. ply:SetHealth(1400)
  1376. ply:SetMaxHealth(1400)
  1377. end,
  1378. })
  1379. TEAM_IT = DarkRP.createJob("Imperial Trooper", {
  1380. color = Color(255, 0, 0, 255),
  1381. model = {"models/player/grizzlerules/sithforestcamo/sithforestcamo.mdl", "models/player/grizzlerules/sithdesertcamo/sithdesertcamo.mdl", "models/player/grizzlerules/sithfrostcamo/sithfrostcamo.mdl"},
  1382. description = [[You are a Imperial Trooper.]],
  1383. weapons = {"tfa_752_ihr", "tfa_sw_cissnip", "tfa_sw_cisshot", "realistic_hook", "weapon_policeshield"},
  1384. command = "ITRP",
  1385. max = 0,
  1386. salary = 0,
  1387. admin = 0,
  1388. vote = false,
  1389. hasLicense = true,
  1390. candemote = false,
  1391. category = "Imperial Troops",
  1392. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1393. ply:SetHealth(500)
  1394. ply:SetMaxHealth(500)
  1395. end,
  1396. ammo = {
  1397. ["pistol"] = 300000,
  1398. ["ar2"] = 300000,
  1399. ["357"] = 300000,
  1400. ["smg"] = 300000,
  1401. },
  1402. })
  1403. TEAM_IC = DarkRP.createJob("Imperial Commander", {
  1404. color = Color(255, 0, 0, 255),
  1405. model = {"models/player/grizzlerules/sithurbancamo/sithurbancamo.mdl"},
  1406. description = [[You are Imperial Commander.]],
  1407. weapons = {"tfa_752_ihr", "tfa_sw_cissnip", "tfa_sw_cisshot", "realistic_hook", "weapon_policeshield"},
  1408. command = "ICOMM",
  1409. max = 1,
  1410. salary = 0,
  1411. admin = 0,
  1412. vote = false,
  1413. hasLicense = true,
  1414. candemote = false,
  1415. category = "Imperial Troops",
  1416. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1417. ply:SetHealth(700)
  1418. ply:SetMaxHealth(700)
  1419. end,
  1420. ammo = {
  1421. ["pistol"] = 300000,
  1422. ["ar2"] = 300000,
  1423. ["357"] = 300000,
  1424. ["smg"] = 300000,
  1425. },
  1426. })
  1427. TEAM_ZAKUULI = DarkRP.createJob("Zakuul Initiate", {
  1428. color = Color(249, 255, 0, 255),
  1429. model = {"models/grealms/characters/knighttrooper/knighttrooper.mdl"},
  1430. description = [[You are a Zakuul Initiate.]],
  1431. weapons = {"weapon_lightsaber_dls_zakuul"},
  1432. command = "ZakuulI",
  1433. max = 0,
  1434. salary = 0,
  1435. admin = 0,
  1436. vote = false,
  1437. hasLicense = true,
  1438. candemote = false,
  1439. -- CustomCheck
  1440. medic = false,
  1441. chief = false,
  1442. mayor = false,
  1443. hobo = false,
  1444. cook = false,
  1445. category = "Zakuul",
  1446. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1447. ply:SetHealth(450)
  1448. ply:SetMaxHealth(450)
  1449. end,
  1450. })
  1451. TEAM_ZAKUULK = DarkRP.createJob("Zakuul Knight", {
  1452. color = Color(249, 255, 0, 255),
  1453. model = {"models/grealms/characters/seargeant/seargeant.mdl"},
  1454. description = [[You are a Zakuul Knight.]],
  1455. weapons = {"weapon_lightsaber_dls_zakuul"},
  1456. command = "ZakuulK",
  1457. max = 0,
  1458. salary = 0,
  1459. admin = 0,
  1460. vote = false,
  1461. hasLicense = true,
  1462. candemote = false,
  1463. -- CustomCheck
  1464. medic = false,
  1465. chief = false,
  1466. mayor = false,
  1467. hobo = false,
  1468. cook = false,
  1469. category = "Zakuul",
  1470. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1471. ply:SetHealth(600)
  1472. ply:SetMaxHealth(600)
  1473. end,
  1474. })
  1475. TEAM_ZAKUULGK = DarkRP.createJob("Zakul Grand Knight", {
  1476. color = Color(249, 255, 0, 255),
  1477. model = {"models/grealms/characters/knighttroopergen/knighttroopergen.mdl"},
  1478. description = [[You are a Zakuul Grand Knight.]],
  1479. weapons = {"weapon_lightsaber_dls_zakuul"},
  1480. command = "ZakuulGK",
  1481. max = 0,
  1482. salary = 0,
  1483. admin = 0,
  1484. vote = false,
  1485. hasLicense = true,
  1486. candemote = false,
  1487. -- CustomCheck
  1488. medic = false,
  1489. chief = false,
  1490. mayor = false,
  1491. hobo = false,
  1492. cook = false,
  1493. category = "Zakuul",
  1494. PlayerLoadout = function(ply) ---this line is added. Remember a comma at the end of above line if it is not there.
  1495. ply:SetHealth(750)
  1496. ply:SetMaxHealth(750)
  1497. end,
  1498. })
  1499. TEAM_ZAKUULEG = DarkRP.createJob("Zakul Elite Guard", {
  1500. color = Color(249, 255, 0, 255),
  1501. model = {"models/grealms/characters/zakuulknight/zakuulknight.mdl"},
  1502. description = [[You are a Zakuul Elite Guard.]],
  1503. weapons = {"weapon_lightsaber_dls_msentinellmarauder"},
  1504. command = "ZakuulEG",
  1505. max = 0,
  1506. salary = 0,
  1507. admin = 0,
  1508. vote = false,
  1509. hasLicense = true,
  1510. candemote = false,
  1511. -- CustomCheck
  1512. medic = false,
  1513. chief = false,
  1514. mayor = false,
  1515. hobo = false,
  1516. cook = false,
  1517. category = "Zakuul",
  1518. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1519. ply:SetHealth(1300)
  1520. ply:SetMaxHealth(1300)
  1521. end,
  1522. })
  1523. TEAM_ZAKUULGEN = DarkRP.createJob("Zakuul General", {
  1524. color = Color(249, 255, 0, 255),
  1525. model = {"models/grealms/characters/knighttrooperhg/knighttrooperhg.mdl"},
  1526. description = [[You are a Zakuul General.]],
  1527. weapons = {"weapon_lightsaber_dls_mzakuul"},
  1528. command = "ZakuulGEN",
  1529. max = 2,
  1530. salary = 0,
  1531. admin = 0,
  1532. vote = false,
  1533. hasLicense = true,
  1534. candemote = false,
  1535. -- CustomCheck
  1536. medic = false,
  1537. chief = false,
  1538. mayor = false,
  1539. hobo = false,
  1540. cook = false,
  1541. category = "Zakuul",
  1542. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1543. ply:SetHealth(1050)
  1544. ply:SetMaxHealth(1050)
  1545. end,
  1546. })
  1547. TEAM_ZAKUULHGEN = DarkRP.createJob("Zakuul High General", {
  1548. color = Color(249, 255, 0, 255),
  1549. model = {"models/grealms/characters/darktrooper/darktrooper.mdl"},
  1550. description = [[You are the Zakuul General.]],
  1551. weapons = {"weapon_lightsaber_dls_mzakuul"},
  1552. command = "ZakuulHGEN",
  1553. max = 1,
  1554. salary = 0,
  1555. admin = 0,
  1556. vote = false,
  1557. hasLicense = true,
  1558. candemote = false,
  1559. -- CustomCheck
  1560. medic = false,
  1561. chief = false,
  1562. mayor = false,
  1563. hobo = false,
  1564. cook = false,
  1565. category = "Zakuul",
  1566. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1567. ply:SetHealth(1200)
  1568. ply:SetMaxHealth(1200)
  1569. end,
  1570. })
  1571. TEAM_VALKORIAN = DarkRP.createJob("Emperor Valkorian", {
  1572. color = Color(249, 255, 0, 255),
  1573. model = {"models/grealms/characters/valkorian/valkorian.mdl"},
  1574. description = [[You are Emperor Valkorian.]],
  1575. weapons = {"weapon_lightsaber_dls_highdonator", "weapon_cuff_elastic"},
  1576. command = "VALK",
  1577. max = 1,
  1578. salary = 0,
  1579. admin = 0,
  1580. vote = false,
  1581. hasLicense = true,
  1582. candemote = false,
  1583. -- CustomCheck
  1584. medic = false,
  1585. chief = false,
  1586. mayor = false,
  1587. hobo = false,
  1588. cook = false,
  1589. category = "Zakuul",
  1590. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1591. ply:SetHealth(1750)
  1592. ply:SetMaxHealth(1750)
  1593. end,
  1594. })
  1595. TEAM_ARCANN = DarkRP.createJob("Prince Arcann", {
  1596. color = Color(249, 255, 0, 255),
  1597. model = {"models/grealms/twins/twins.mdl"},
  1598. description = [[You are Arcann.]],
  1599. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  1600. command = "Arcann",
  1601. max = 1,
  1602. salary = 0,
  1603. admin = 0,
  1604. vote = false,
  1605. hasLicense = true,
  1606. candemote = false,
  1607. -- CustomCheck
  1608. medic = false,
  1609. chief = false,
  1610. mayor = false,
  1611. hobo = false,
  1612. cook = false,
  1613. category = "Zakuul",
  1614. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1615. ply:SetHealth(1550)
  1616. ply:SetMaxHealth(1550)
  1617. end,
  1618. })
  1619. TEAM_THEXAN = DarkRP.createJob("Prince Thexan", {
  1620. color = Color(249, 255, 0, 255),
  1621. model = {"models/grealms/twins/twins.mdl"},
  1622. description = [[You are Thexan.]],
  1623. weapons = {"weapon_lightsaber_dls_mediumdonator"},
  1624. command = "Thexan",
  1625. max = 1,
  1626. salary = 0,
  1627. admin = 0,
  1628. vote = false,
  1629. hasLicense = true,
  1630. candemote = false,
  1631. -- CustomCheck
  1632. medic = false,
  1633. chief = false,
  1634. mayor = false,
  1635. hobo = false,
  1636. cook = false,
  1637. category = "Zakuul",
  1638. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1639. ply:SetHealth(1550)
  1640. ply:SetMaxHealth(1550)
  1641. end,
  1642. })
  1643. TEAM_VAYLIN = DarkRP.createJob("Princess Vaylin", {
  1644. color = Color(249, 255, 0, 255),
  1645. model = {"models/grealms/characters/vaylin/vaylin.mdl"},
  1646. description = [[You are Vaylin.]],
  1647. weapons = {"weapon_lightsaber_dls_lowdonator"},
  1648. command = "Vaylin",
  1649. max = 1,
  1650. salary = 0,
  1651. admin = 0,
  1652. vote = false,
  1653. hasLicense = true,
  1654. candemote = false,
  1655. -- CustomCheck
  1656. medic = false,
  1657. chief = false,
  1658. mayor = false,
  1659. hobo = false,
  1660. cook = false,
  1661. category = "Zakuul",
  1662. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1663. ply:SetHealth(1450)
  1664. ply:SetMaxHealth(1450)
  1665. end,
  1666. })
  1667. TEAM_BHD = DarkRP.createJob("Wookie Warrior", {
  1668. color = Color(0, 102, 51),
  1669. model = {"models/player/chewie.mdl"},
  1670. description = [[You are a Wookie Warrior]],
  1671. weapons = {"tfa_swch_ee3"},
  1672. command = "WW",
  1673. max = 0,
  1674. salary = 0,
  1675. admin = 0,
  1676. vote = false,
  1677. hasLicense = true,
  1678. candemote = false,
  1679. -- CustomCheck
  1680. medic = false,
  1681. chief = false,
  1682. mayor = false,
  1683. hobo = false,
  1684. cook = false,
  1685. category = "Supporter Jobs",
  1686. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1687. ply:SetHealth(500)
  1688. ply:SetMaxHealth(500)
  1689. end,
  1690. ammo = {
  1691. ["pistol"] = 300000,
  1692. ["ar2"] = 300000,
  1693. ["357"] = 300000,
  1694. ["smg"] = 300000,
  1695. },
  1696. })
  1697. TEAM_SOD = DarkRP.createJob("Staff On Duty", {
  1698. color = Color(50, 0, 255, 255),
  1699. model = {"models/player/combine_super_soldier.mdl"},
  1700. description = [[You are staff on duty]],
  1701. weapons = {"weapon_physgun", "gmod_tool"},
  1702. command = "SOD",
  1703. max = 0,
  1704. salary = 0,
  1705. admin = 0,
  1706. vote = false,
  1707. hasLicense = true,
  1708. candemote = false,
  1709. -- CustomCheck
  1710. medic = false,
  1711. chief = false,
  1712. mayor = false,
  1713. hobo = false,
  1714. cook = false,
  1715. category = "Staff",
  1716. })
  1717. TEAM_SOD = DarkRP.createJob("Gray Jedi", {
  1718. color = Color(107, 107, 107),
  1719. model = {"models/jazzmcfly/jka/quigon/quigon.mdl"},
  1720. description = [[You are a Gray Jedi]],
  1721. weapons = {"weapon_lightsaber_dls_support"},
  1722. command = "GJ",
  1723. max = 0,
  1724. salary = 0,
  1725. admin = 0,
  1726. vote = false,
  1727. hasLicense = true,
  1728. candemote = false,
  1729. -- CustomCheck
  1730. medic = false,
  1731. chief = false,
  1732. mayor = false,
  1733. hobo = false,
  1734. cook = false,
  1735. category = "Supporter Jobs",
  1736. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1737. ply:SetHealth(850)
  1738. ply:SetMaxHealth(850)
  1739. end,
  1740. })
  1741.  
  1742. TEAM_MAND = DarkRP.createJob("Mandalorian Bounty Hunter", {
  1743. color = Color(76, 0, 153),
  1744. model = {"models/player/vengeance/jaster_green/jaster_green.mdl"},
  1745. description = [[You are a Mandalorian Bounty Hunter.]],
  1746. weapons = {"weapon_cuff_elastic", "tfa_sw_westardual", "tfa_swch_alphablaster"},
  1747. command = "MBH",
  1748. max = 2,
  1749. salary = 0,
  1750. admin = 0,
  1751. vote = false,
  1752. hasLicense = true,
  1753. candemote = false,
  1754. -- CustomCheck
  1755. medic = false,
  1756. chief = false,
  1757. mayor = false,
  1758. hobo = false,
  1759. cook = false,
  1760. category = "Supporter Jobs",
  1761. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1762. ply:SetHealth(500)
  1763. ply:SetMaxHealth(500)
  1764. end,
  1765. ammo = {
  1766. ["pistol"] = 300000,
  1767. ["ar2"] = 300000,
  1768. ["357"] = 300000,
  1769. ["smg"] = 300000,
  1770. },
  1771. })
  1772.  
  1773. TEAM_R2D2 = DarkRP.createJob("R2D2", {
  1774. color = Color(76, 0, 153),
  1775. model = {"models/player/r2d2.mdl"},
  1776. description = [[You are R2D2.]],
  1777. weapons = {"weapon_cuff_elastic"},
  1778. command = "R2",
  1779. max = 1,
  1780. salary = 0,
  1781. admin = 0,
  1782. vote = false,
  1783. hasLicense = true,
  1784. candemote = false,
  1785. -- CustomCheck
  1786. medic = false,
  1787. chief = false,
  1788. mayor = false,
  1789. hobo = false,
  1790. cook = false,
  1791. category = "Supporter Jobs",
  1792. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1793. ply:SetHealth(300)
  1794. ply:SetMaxHealth(300)
  1795. end,
  1796. })
  1797.  
  1798. TEAM_C3PO = DarkRP.createJob("C3PO", {
  1799. color = Color(76, 0, 153),
  1800. model = {"models/player/c3po.mdl"},
  1801. description = [[You are C3PO.]],
  1802. weapons = {"weapon_cuff_elastic"},
  1803. command = "C3PO",
  1804. max = 1,
  1805. salary = 0,
  1806. admin = 0,
  1807. vote = false,
  1808. hasLicense = true,
  1809. candemote = false,
  1810. -- CustomCheck
  1811. medic = false,
  1812. chief = false,
  1813. mayor = false,
  1814. hobo = false,
  1815. cook = false,
  1816. category = "Supporter Jobs",
  1817. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1818. ply:SetHealth(300)
  1819. ply:SetMaxHealth(300)
  1820. end,
  1821. })
  1822.  
  1823.  
  1824. TEAM_TUSK = DarkRP.createJob("Tusken Raider", {
  1825. color = Color(76, 0, 153),
  1826. model = {"models/zyan7259/zusken_raider_player/zusken_raider_player.mdl"},
  1827. description = [[You are a Tusken Raider.]],
  1828. weapons = {"tfa_swch_ee3", "weapon_cuff_elastic"},
  1829. command = "Tusk",
  1830. max = 3,
  1831. salary = 0,
  1832. admin = 0,
  1833. vote = false,
  1834. hasLicense = true,
  1835. candemote = false,
  1836. -- CustomCheck
  1837. medic = false,
  1838. chief = false,
  1839. mayor = false,
  1840. hobo = false,
  1841. cook = false,
  1842. category = "Supporter Jobs",
  1843. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1844. ply:SetHealth(450)
  1845. ply:SetMaxHealth(450)
  1846. end,
  1847. ammo = {
  1848. ["pistol"] = 300000,
  1849. ["ar2"] = 300000,
  1850. ["357"] = 300000,
  1851. ["smg"] = 300000,
  1852. },
  1853. })
  1854.  
  1855.  
  1856. TEAM_GREE = DarkRP.createJob("Greedo", {
  1857. color = Color(76, 0, 153),
  1858. model = {"models/byan7259/bodian_player/segular_rodian_player.mdl"},
  1859. description = [[You are Greedo.]],
  1860. weapons = {"tfa_swch_ee3", "tfa_swch_de10", "weapon_cuff_elastic"},
  1861. command = "Greedo",
  1862. max = 1,
  1863. salary = 0,
  1864. admin = 0,
  1865. vote = false,
  1866. hasLicense = true,
  1867. candemote = false,
  1868. -- CustomCheck
  1869. medic = false,
  1870. chief = false,
  1871. mayor = false,
  1872. hobo = false,
  1873. cook = false,
  1874. category = "Supporter Jobs",
  1875. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1876. ply:SetHealth(500)
  1877. ply:SetMaxHealth(500)
  1878. end,
  1879. ammo = {
  1880. ["pistol"] = 300000,
  1881. ["ar2"] = 300000,
  1882. ["357"] = 300000,
  1883. ["smg"] = 300000,
  1884. },
  1885. })
  1886.  
  1887. TEAM_JAWA = DarkRP.createJob("Jawa", {
  1888. color = Color(76, 0, 153),
  1889. model = {"models/player/starwars/b4p_jawa.mdl"},
  1890. description = [[You are a Jawa.]],
  1891. weapons = {"tfa_swch_elg3a","weapon_cuff_elastic"},
  1892. command = "Jawa",
  1893. max = 3,
  1894. salary = 0,
  1895. admin = 0,
  1896. vote = false,
  1897. hasLicense = true,
  1898. candemote = false,
  1899. -- CustomCheck
  1900. medic = false,
  1901. chief = false,
  1902. mayor = false,
  1903. hobo = false,
  1904. cook = false,
  1905. category = "Supporter Jobs",
  1906. modelScale = 0.6,
  1907. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1908. ply:SetHealth(250)
  1909. ply:SetMaxHealth(250)
  1910. end,
  1911. ammo = {
  1912. ["pistol"] = 300000,
  1913. ["ar2"] = 300000,
  1914. ["357"] = 300000,
  1915. ["smg"] = 300000,
  1916. },
  1917. })
  1918. TEAM_JHD = DarkRP.createJob("EG-5 Jedi Hunter Droid", {
  1919. color = Color(255, 0, 0),
  1920. model = {"models/jazzmcfly/jka/eg5/jka_eg5.mdl"},
  1921. description = [[You are a Jedi Hunter Droid.]],
  1922. weapons = {"weapon_lightsaber_dls_dual_support", "weapon_cuff_elastic"},
  1923. command = "JHD",
  1924. max = 3,
  1925. salary = 0,
  1926. admin = 0,
  1927. vote = false,
  1928. hasLicense = true,
  1929. candemote = false,
  1930. -- CustomCheck
  1931. medic = false,
  1932. chief = false,
  1933. mayor = false,
  1934. hobo = false,
  1935. cook = false,
  1936. category = "Supporter Jobs",
  1937. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1938. ply:SetHealth(700)
  1939. ply:SetMaxHealth(700)
  1940. end,
  1941. ammo = {
  1942. ["pistol"] = 300000,
  1943. ["ar2"] = 300000,
  1944. ["357"] = 300000,
  1945. ["smg"] = 300000,
  1946. },
  1947. })
  1948. TEAM_HANSOLO = DarkRP.createJob("Han Solo", {
  1949. color = Color(51, 51, 255),
  1950. model = {"models/player/han_solo.mdl"},
  1951. description = [[You are a Jedi Hunter Droid.]],
  1952. weapons = {"tfa_sw_dual_dl44", "weapon_cuff_elastic", "tfa_swch_de10"},
  1953. command = "HanSolo",
  1954. max = 1,
  1955. salary = 0,
  1956. admin = 0,
  1957. vote = false,
  1958. hasLicense = true,
  1959. candemote = false,
  1960. -- CustomCheck
  1961. medic = false,
  1962. chief = false,
  1963. mayor = false,
  1964. hobo = false,
  1965. cook = false,
  1966. category = "Supporter Jobs",
  1967. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1968. ply:SetHealth(550)
  1969. ply:SetMaxHealth(550)
  1970. end,
  1971. ammo = {
  1972. ["pistol"] = 300000,
  1973. ["ar2"] = 300000,
  1974. ["357"] = 300000,
  1975. ["smg"] = 300000,
  1976. },
  1977. })
  1978. --[[-----------------------------------------------------------------------
  1979. Define which team joining players spawn into and what team you change to if demoted
  1980. ---------------------------------------------------------------------------]]
  1981. GAMEMODE.DefaultTeam = TEAM_UNITIATED
  1982.  
  1983.  
  1984. --[[---------------------------------------------------------------------------
  1985. Define which teams belong to civil protection
  1986. Civil protection can set warrants, make people wanted and do some other police related things
  1987. ---------------------------------------------------------------------------]]
  1988.  
  1989.  
  1990. --[[---------------------------------------------------------------------------
  1991. Jobs that are hitmen (enables the hitman menu)
  1992. ---------------------------------------------------------------------------]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement