Advertisement
KimonK

jobs

Sep 4th, 2018
335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 47.53 KB | None | 0 0
  1. -- CATEGORY: Jedi Order
  2.  
  3. TEAM_LUKE = DarkRP.createJob("Luke Skywalker [T3]", {
  4. color = Color(0, 102, 204),
  5. model = {
  6. "models/player/luke_skywalker.mdl"
  7. },
  8. description = [[You are Luke Skywalker. You need to be a master in order to tryout for this.]],
  9. weapons = {"weapon_lightsaber_personal"},
  10. command = "luke",
  11. max = 1,
  12. salary = 1350,
  13. admin = 0,
  14. vote = false,
  15. hasLicense = false,
  16. candemote = false,
  17. category= "Jedi Order",
  18. sortOrder = 20, -- The position of this thing in its category. Lower number means higher up.
  19. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  20. ply:SetHealth(2250)
  21. ply:SetMaxHealth(2250)
  22. end,
  23. ammo = {
  24. ["pistol"] = 300000,
  25. ["ar2"] = 300000,
  26. ["357"] = 300000,
  27. ["smg"] = 300000,
  28. },
  29. })
  30. TEAM_SATELE = DarkRP.createJob("Satele Shan [T3]", {
  31. color = Color(0, 102, 204),
  32. model = {
  33. "models/grealms/characters/satele/satele.mdl"
  34. },
  35. description = [[You are Satele Shan. You need to be a master in order to tryout for this.]],
  36. weapons = {"weapon_lightsaber_personal"},
  37. command = "satele",
  38. max = 1,
  39. salary = 1350,
  40. admin = 0,
  41. vote = false,
  42. hasLicense = false,
  43. candemote = false,
  44. category= "Jedi Order",
  45. sortOrder = 23, -- The position of this thing in its category. Lower number means higher up.
  46. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  47. ply:SetHealth(2250)
  48. ply:SetMaxHealth(2250)
  49. end,
  50. ammo = {
  51. ["pistol"] = 300000,
  52. ["ar2"] = 300000,
  53. ["357"] = 300000,
  54. ["smg"] = 300000,
  55. },
  56. })
  57. TEAM_BASTILA = DarkRP.createJob("Bastila Shan [T3]", {
  58. color = Color(255, 127, 80),
  59. model = {
  60. "models/grealms/characters/bastila/bastila.mdl"
  61. },
  62. description = [[You are Bastila Shan. You need to be a master in order to tryout for this.]],
  63. weapons = {"weapon_lightsaber_personal"},
  64. command = "bastila",
  65. max = 1,
  66. salary = 1350,
  67. admin = 0,
  68. vote = false,
  69. hasLicense = false,
  70. candemote = false,
  71. category= "Jedi Order",
  72. sortOrder = 25, -- The position of this thing in its category. Lower number means higher up.
  73. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  74. ply:SetHealth(2250)
  75. ply:SetMaxHealth(2250)
  76. end,
  77. ammo = {
  78. ["pistol"] = 300000,
  79. ["ar2"] = 300000,
  80. ["357"] = 300000,
  81. ["smg"] = 300000,
  82. },
  83. })
  84. TEAM_MACE = DarkRP.createJob("Mace Windu [T3]", {
  85. color = Color(75, 0, 130),
  86. model = {
  87. "models/ryan7259/mace_windu/mace_windu_player.mdl"
  88. },
  89. description = [[You are Mace Windu. You need to be a master in order to tryout for this.]],
  90. weapons = {"weapon_lightsaber_personal"},
  91. command = "mace",
  92. max = 1,
  93. salary = 1350,
  94. admin = 0,
  95. vote = false,
  96. hasLicense = false,
  97. candemote = false,
  98. category= "Jedi Order",
  99. sortOrder = 28, -- The position of this thing in its category. Lower number means higher up.
  100. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  101. ply:SetHealth(2250)
  102. ply:SetMaxHealth(2250)
  103. end,
  104. ammo = {
  105. ["pistol"] = 300000,
  106. ["ar2"] = 300000,
  107. ["357"] = 300000,
  108. ["smg"] = 300000,
  109. },
  110. })
  111. TEAM_OBIWAN = DarkRP.createJob("Obi Wan Kenobi [T3]", {
  112. color = Color(0, 102, 204),
  113. model = {
  114. "models/kriegsyntax/sw_752/obiwan_est.mdl"
  115. },
  116. description = [[You are Obi Wan Kenobi. You need to be a master in order to tryout for this.]],
  117. weapons = {"weapon_lightsaber_personal"},
  118. command = "obiwan",
  119. max = 1,
  120. salary = 1350,
  121. admin = 0,
  122. vote = false,
  123. hasLicense = false,
  124. candemote = false,
  125. category= "Jedi Order",
  126. sortOrder = 30, -- The position of this thing in its category. Lower number means higher up.
  127. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  128. ply:SetHealth(2250)
  129. ply:SetMaxHealth(2250)
  130. end,
  131. ammo = {
  132. ["pistol"] = 300000,
  133. ["ar2"] = 300000,
  134. ["357"] = 300000,
  135. ["smg"] = 300000,
  136. },
  137. })
  138. TEAM_COLEMANN = DarkRP.createJob("Colemann Trebor [T2]", {
  139. color = Color(0, 102, 204),
  140. model = {
  141. "models/cultist_kun/sw/coleman.mdl"
  142. },
  143. description = [[You are Colemann Trebor. You need to be a master in order to tryout for this.]],
  144. weapons = {"weapon_lightsaber_personal"},
  145. command = "colemann",
  146. max = 1,
  147. salary = 1100,
  148. admin = 0,
  149. vote = false,
  150. hasLicense = false,
  151. candemote = false,
  152. category= "Jedi Order",
  153. sortOrder = 33, -- The position of this thing in its category. Lower number means higher up.
  154. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  155. ply:SetHealth(1750)
  156. ply:SetMaxHealth(1750)
  157. end,
  158. ammo = {
  159. ["pistol"] = 300000,
  160. ["ar2"] = 300000,
  161. ["357"] = 300000,
  162. ["smg"] = 300000,
  163. },
  164. })
  165. TEAM_SAESEE = DarkRP.createJob("Saesee Tiin [T2]", {
  166. color = Color(0, 102, 204),
  167. model = {
  168. "models/cultist_kun/sw/saesee_tiin.mdl"
  169. },
  170. description = [[You are Saesee Tiin. You need to be a master in order to tryout for this.]],
  171. weapons = {"weapon_lightsaber_personal"},
  172. command = "saesee",
  173. max = 1,
  174. salary = 1100,
  175. admin = 0,
  176. vote = false,
  177. hasLicense = false,
  178. candemote = false,
  179. category= "Jedi Order",
  180. sortOrder = 35, -- The position of this thing in its category. Lower number means higher up.
  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(1750)
  183. ply:SetMaxHealth(1750)
  184. end,
  185. ammo = {
  186. ["pistol"] = 300000,
  187. ["ar2"] = 300000,
  188. ["357"] = 300000,
  189. ["smg"] = 300000,
  190. },
  191. })
  192. TEAM_KIADI = DarkRP.createJob("Ki Adi Mundi [T2]", {
  193. color = Color(0, 102, 204),
  194. model = {
  195. "models/cultist_kun/sw/mm.mdl"
  196. },
  197. description = [[You are Ki Adi Mundi. You need to be a master in order to tryout for this.]],
  198. weapons = {"weapon_lightsaber_personal"},
  199. command = "kiadi",
  200. max = 1,
  201. salary = 1100,
  202. admin = 0,
  203. vote = false,
  204. hasLicense = false,
  205. candemote = false,
  206. category= "Jedi Order",
  207. sortOrder = 38, -- The position of this thing in its category. Lower number means higher up.
  208. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  209. ply:SetHealth(1750)
  210. ply:SetMaxHealth(1750)
  211. end,
  212. ammo = {
  213. ["pistol"] = 300000,
  214. ["ar2"] = 300000,
  215. ["357"] = 300000,
  216. ["smg"] = 300000,
  217. },
  218. })
  219. TEAM_YARAEL = DarkRP.createJob("Yarael Poof [T2]", {
  220. color = Color(0, 102, 204),
  221. model = {
  222. "models/cultist_kun/sw/yarael_poof.mdl"
  223. },
  224. description = [[You are Yarael Poof. You need to be a master in order to tryout for this.]],
  225. weapons = {"weapon_lightsaber_personal"},
  226. command = "yarael",
  227. max = 1,
  228. salary = 1100,
  229. admin = 0,
  230. vote = false,
  231. hasLicense = false,
  232. candemote = false,
  233. category= "Jedi Order",
  234. sortOrder = 40, -- The position of this thing in its category. Lower number means higher up.
  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(1750)
  237. ply:SetMaxHealth(1750)
  238. end,
  239. ammo = {
  240. ["pistol"] = 300000,
  241. ["ar2"] = 300000,
  242. ["357"] = 300000,
  243. ["smg"] = 300000,
  244. },
  245. })
  246. TEAM_PLO = DarkRP.createJob("Plo Koon [T2]", {
  247. color = Color(0, 102, 204),
  248. model = {
  249. "models/kriegsyntax/sw_752/plokoon_est.mdl"
  250. },
  251. description = [[You are Plo Koon. You need to be a master in order to tryout for this.]],
  252. weapons = {"weapon_lightsaber_personal"},
  253. command = "plo",
  254. max = 1,
  255. salary = 1100,
  256. admin = 0,
  257. vote = false,
  258. hasLicense = false,
  259. candemote = false,
  260. category= "Jedi Order",
  261. sortOrder = 43, -- The position of this thing in its category. Lower number means higher up.
  262. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  263. ply:SetHealth(1750)
  264. ply:SetMaxHealth(1750)
  265. end,
  266. ammo = {
  267. ["pistol"] = 300000,
  268. ["ar2"] = 300000,
  269. ["357"] = 300000,
  270. ["smg"] = 300000,
  271. },
  272. })
  273. TEAM_MARA = DarkRP.createJob("Mara Jade Skywalker [T1]", {
  274. color = Color(0, 102, 204),
  275. model = {
  276. "models/syntheticgaming/characters/marajade/marajade.mdl"
  277. },
  278. description = [[You are Mara Jade Skywalker. You need to be a knight in order to tryout for this.]],
  279. weapons = {"weapon_lightsaber_personal"},
  280. command = "mara",
  281. max = 1,
  282. salary = 850,
  283. admin = 0,
  284. vote = false,
  285. hasLicense = false,
  286. candemote = false,
  287. category= "Jedi Order",
  288. sortOrder = 45, -- The position of this thing in its category. Lower number means higher up.
  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(1250)
  291. ply:SetMaxHealth(1250)
  292. end,
  293. ammo = {
  294. ["pistol"] = 300000,
  295. ["ar2"] = 300000,
  296. ["357"] = 300000,
  297. ["smg"] = 300000,
  298. },
  299. })
  300. TEAM_REY = DarkRP.createJob("Rey [T1]", {
  301. color = Color(0, 102, 204),
  302. model = {
  303. "models/player/ratedr4ryan/forceawakens_rey.mdl"
  304. },
  305. description = [[You are Rey. You need to be a knight in order to tryout for this.]],
  306. weapons = {"weapon_lightsaber_personal"},
  307. command = "rey",
  308. max = 1,
  309. salary = 850,
  310. admin = 0,
  311. vote = false,
  312. hasLicense = false,
  313. candemote = false,
  314. category= "Jedi Order",
  315. sortOrder = 48, -- The position of this thing in its category. Lower number means higher up.
  316. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  317. ply:SetHealth(1250)
  318. ply:SetMaxHealth(1250)
  319. end,
  320. ammo = {
  321. ["pistol"] = 300000,
  322. ["ar2"] = 300000,
  323. ["357"] = 300000,
  324. ["smg"] = 300000,
  325. },
  326. })
  327. TEAM_AHSOKA = DarkRP.createJob("Ahsoka Tano [T1]", {
  328. color = Color(0, 102, 204),
  329. model = {
  330. "models/jazzmcfly/jka/ashoka/jka_ashoka.mdl"
  331. },
  332. description = [[You are Ahsoka Tano. You need to be a padawan in order to tryout for this.]],
  333. weapons = {"weapon_lightsaber_personal"},
  334. command = "ahsoka",
  335. max = 1,
  336. salary = 850,
  337. admin = 0,
  338. vote = false,
  339. hasLicense = false,
  340. candemote = false,
  341. category= "Jedi Order",
  342. sortOrder = 50, -- The position of this thing in its category. Lower number means higher up.
  343. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  344. ply:SetHealth(1250)
  345. ply:SetMaxHealth(1250)
  346. end,
  347. ammo = {
  348. ["pistol"] = 300000,
  349. ["ar2"] = 300000,
  350. ["357"] = 300000,
  351. ["smg"] = 300000,
  352. },
  353. })
  354. TEAM_JMOTO = DarkRP.createJob("Jedi Master of the Order", {
  355. color = Color(0, 102, 204),
  356. model = {
  357. "models/player/swtor/arsenic/nemesis/nemesistest.mdl",
  358. "models/player/swtor/arsenic/jokal/jokal.mdl",
  359. "models/player/swtor/arsenic/zeus/zeus.mdl",
  360. "models/player/swtor/arsenic/talosstormcrown/talosstormcrown.mdl",
  361. "models/player/swtor/arsenic/miles/miles_01.mdl",
  362. "models/player/swtor/arsenic/bones/bones01.mdl",
  363. "models/player/swtor/arsenic/coyote/ezekiel.mdl",
  364. "models/player/swtor/arsenic/whiplash2/aarivaros.mdl",
  365. "models/player/swtor/arsenic/exiled/exiled.mdl",
  366. "models/player/swtor/arsenic/kreia/kreia.mdl",
  367. "models/player/swtor/arsenic/templeguard/templeguard.mdl",
  368. "models/player/swtor/arsenic/ashteel/ashteel.mdl",
  369. "models/player/jedi/bith.mdl",
  370. "models/player/jedi/gotal.mdl",
  371. "models/player/jedi/gungan.mdl",
  372. "models/player/jedi/human.mdl",
  373. "models/player/jedi/nautolan.mdl",
  374. "models/player/jedi/pantoran.mdl",
  375. "models/player/jedi/quarren.mdl",
  376. "models/player/jedi/rodian.mdl",
  377. "models/player/jedi/togruta.mdl",
  378. "models/player/jedi/trandoshan.mdl",
  379. "models/player/jedi/twilek2.mdl",
  380. "models/player/jedi/umbaran.mdl",
  381. "models/player/jedi/zabrak.mdl"
  382. },
  383. description = [[You are the Jedi Master of the Order.]],
  384. weapons = {"weapon_lightsaber_personal"},
  385. command = "jmoto",
  386. max = 1,
  387. salary = 1250,
  388. admin = 0,
  389. vote = false,
  390. hasLicense = false,
  391. candemote = false,
  392. category= "Jedi Order",
  393. sortOrder = 70, -- The position of this thing in its category. Lower number means higher up.
  394. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  395. ply:SetHealth(2000)
  396. ply:SetMaxHealth(2000)
  397. end,
  398. ammo = {
  399. ["pistol"] = 300000,
  400. ["ar2"] = 300000,
  401. ["357"] = 300000,
  402. ["smg"] = 300000,
  403. },
  404. })
  405. TEAM_JMASTER = DarkRP.createJob("Jedi Master", {
  406. color = Color(0, 102, 204),
  407. model = {
  408. "models/player/swtor/arsenic/zeus/zeus.mdl",
  409. "models/player/swtor/arsenic/talosstormcrown/talosstormcrown.mdl",
  410. "models/player/swtor/arsenic/miles/miles_01.mdl",
  411. "models/player/swtor/arsenic/bones/bones01.mdl",
  412. "models/player/swtor/arsenic/coyote/ezekiel.mdl",
  413. "models/player/swtor/arsenic/whiplash2/aarivaros.mdl",
  414. "models/player/swtor/arsenic/exiled/exiled.mdl",
  415. "models/player/swtor/arsenic/kreia/kreia.mdl",
  416. "models/player/swtor/arsenic/templeguard/templeguard.mdl",
  417. "models/player/swtor/arsenic/ashteel/ashteel.mdl",
  418. "models/player/jedi/bith.mdl",
  419. "models/player/jedi/gotal.mdl",
  420. "models/player/jedi/gungan.mdl",
  421. "models/player/jedi/human.mdl",
  422. "models/player/jedi/nautolan.mdl",
  423. "models/player/jedi/pantoran.mdl",
  424. "models/player/jedi/quarren.mdl",
  425. "models/player/jedi/rodian.mdl",
  426. "models/player/jedi/togruta.mdl",
  427. "models/player/jedi/trandoshan.mdl",
  428. "models/player/jedi/twilek2.mdl",
  429. "models/player/jedi/umbaran.mdl",
  430. "models/player/jedi/zabrak.mdl"
  431. },
  432. description = [[You are a Jedi Master.]],
  433. weapons = {"weapon_lightsaber_personal"},
  434. command = "jmaster",
  435. max = 0,
  436. salary = 1000,
  437. admin = 0,
  438. vote = false,
  439. hasLicense = false,
  440. candemote = false,
  441. category= "Jedi Order",
  442. sortOrder = 73, -- The position of this thing in its category. Lower number means higher up.
  443. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  444. ply:SetHealth(1500)
  445. ply:SetMaxHealth(1500)
  446. end,
  447. ammo = {
  448. ["pistol"] = 300000,
  449. ["ar2"] = 300000,
  450. ["357"] = 300000,
  451. ["smg"] = 300000,
  452. },
  453. })
  454. TEAM_JKNIGHT = DarkRP.createJob("Jedi Knight", {
  455. color = Color(0, 102, 204),
  456. model = {
  457. "models/player/swtor/arsenic/miles/miles_01.mdl",
  458. "models/player/swtor/arsenic/bones/bones01.mdl",
  459. "models/player/swtor/arsenic/coyote/ezekiel.mdl",
  460. "models/player/swtor/arsenic/templeguard/templeguard.mdl",
  461. "models/player/swtor/arsenic/ashteel/ashteel.mdl",
  462. "models/player/jedi/bith.mdl",
  463. "models/player/jedi/gotal.mdl",
  464. "models/player/jedi/gungan.mdl",
  465. "models/player/jedi/human.mdl",
  466. "models/player/jedi/nautolan.mdl",
  467. "models/player/jedi/pantoran.mdl",
  468. "models/player/jedi/quarren.mdl",
  469. "models/player/jedi/rodian.mdl",
  470. "models/player/jedi/togruta.mdl",
  471. "models/player/jedi/trandoshan.mdl",
  472. "models/player/jedi/twilek2.mdl",
  473. "models/player/jedi/umbaran.mdl",
  474. "models/player/jedi/zabrak.mdl"
  475. },
  476. description = [[You are a Jedi Knight.]],
  477. weapons = {"weapon_lightsaber_personal"},
  478. command = "jknight",
  479. max = 0,
  480. salary = 750,
  481. admin = 0,
  482. vote = false,
  483. hasLicense = false,
  484. candemote = false,
  485. category= "Jedi Order",
  486. sortOrder = 75, -- The position of this thing in its category. Lower number means higher up.
  487. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  488. ply:SetHealth(1000)
  489. ply:SetMaxHealth(1000)
  490. end,
  491. ammo = {
  492. ["pistol"] = 300000,
  493. ["ar2"] = 300000,
  494. ["357"] = 300000,
  495. ["smg"] = 300000,
  496. },
  497. })
  498. TEAM_JPADAWAN = DarkRP.createJob("Jedi Padawan", {
  499. color = Color(0, 102, 204),
  500. model = {
  501. "models/player/jedi/bith.mdl",
  502. "models/player/jedi/gotal.mdl",
  503. "models/player/jedi/gungan.mdl",
  504. "models/player/jedi/human.mdl",
  505. "models/player/jedi/nautolan.mdl",
  506. "models/player/jedi/pantoran.mdl",
  507. "models/player/jedi/quarren.mdl",
  508. "models/player/jedi/rodian.mdl",
  509. "models/player/jedi/togruta.mdl",
  510. "models/player/jedi/trandoshan.mdl",
  511. "models/player/jedi/twilek2.mdl",
  512. "models/player/jedi/umbaran.mdl",
  513. "models/player/jedi/zabrak.mdl"
  514. },
  515. description = [[You are a Jedi Padawan.]],
  516. weapons = {"weapon_lightsaber_personal"},
  517. command = "jpadawan",
  518. max = 0,
  519. salary = 500,
  520. admin = 0,
  521. vote = false,
  522. hasLicense = false,
  523. candemote = false,
  524. category= "Jedi Order",
  525. sortOrder = 77, -- The position of this thing in its category. Lower number means higher up.
  526. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  527. ply:SetHealth(500)
  528. ply:SetMaxHealth(500)
  529. end,
  530. ammo = {
  531. ["pistol"] = 300000,
  532. ["ar2"] = 300000,
  533. ["357"] = 300000,
  534. ["smg"] = 300000,
  535. },
  536. })
  537. TEAM_JINITIATE = DarkRP.createJob("Jedi Initiate", {
  538. color = Color(0, 102, 204),
  539. model = {
  540. "models/player/jedi/human.mdl",
  541. "models/player/jedi/bith.mdl",
  542. "models/player/jedi/gotal.mdl",
  543. "models/player/jedi/gungan.mdl",
  544. "models/player/jedi/nautolan.mdl",
  545. "models/player/jedi/pantoran.mdl",
  546. "models/player/jedi/quarren.mdl",
  547. "models/player/jedi/rodian.mdl",
  548. "models/player/jedi/togruta.mdl",
  549. "models/player/jedi/trandoshan.mdl",
  550. "models/player/jedi/twilek2.mdl",
  551. "models/player/jedi/umbaran.mdl",
  552. "models/player/jedi/zabrak.mdl"
  553. },
  554. description = [[You are a Jedi Initiate.]],
  555. weapons = {"weapon_lightsaber_personal"},
  556. command = "jinitiate",
  557. max = 0,
  558. salary = 250,
  559. admin = 0,
  560. vote = false,
  561. hasLicense = false,
  562. candemote = false,
  563. category= "Jedi Order",
  564. sortOrder = 80, -- The position of this thing in its category. Lower number means higher up.
  565. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  566. ply:SetHealth(250)
  567. ply:SetMaxHealth(250)
  568. end,
  569. ammo = {
  570. ["pistol"] = 300000,
  571. ["ar2"] = 300000,
  572. ["357"] = 300000,
  573. ["smg"] = 300000,
  574. },
  575. })
  576.  
  577. -- CATEGORY: Sith Empire
  578.  
  579. TEAM_NIHILUS = DarkRP.createJob("Nihilus [T3]", {
  580. color = Color(128, 0, 0),
  581. model = {
  582. "models/grealms/characters/malgus/malgus.mdl",
  583. },
  584. description = [[You are Nihilus. You need to be a darth in order to tryout for this.]],
  585. weapons = {"weapon_lightsaber_personal"},
  586. command = "nihilus",
  587. max = 1,
  588. salary = 1300,
  589. admin = 0,
  590. vote = false,
  591. hasLicense = false,
  592. candemote = false,
  593. category= "Sith Empire",
  594. sortOrder = 40, -- The position of this thing in its category. Lower number means higher up.
  595. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  596. ply:SetHealth(2250)
  597. ply:SetMaxHealth(2250)
  598. end,
  599. ammo = {
  600. ["pistol"] = 300000,
  601. ["ar2"] = 300000,
  602. ["357"] = 300000,
  603. ["smg"] = 300000,
  604. },
  605. })
  606. TEAM_MALGUS = DarkRP.createJob("Malgus [T3]", {
  607. color = Color(128, 0, 0),
  608. model = {
  609. "models/grealms/characters/malgus/malgus.mdl",
  610. },
  611. description = [[You are Malgus. You need to be a darth in order to tryout for this.]],
  612. weapons = {"weapon_lightsaber_personal"},
  613. command = "malgus",
  614. max = 1,
  615. salary = 1300,
  616. admin = 0,
  617. vote = false,
  618. hasLicense = false,
  619. candemote = false,
  620. category= "Sith Empire",
  621. sortOrder = 43, -- The position of this thing in its category. Lower number means higher up.
  622. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  623. ply:SetHealth(2250)
  624. ply:SetMaxHealth(2250)
  625. end,
  626. ammo = {
  627. ["pistol"] = 300000,
  628. ["ar2"] = 300000,
  629. ["357"] = 300000,
  630. ["smg"] = 300000,
  631. },
  632. })
  633. TEAM_REVAN = DarkRP.createJob("Revan [T3]", {
  634. color = Color(128, 0, 0),
  635. model = {
  636. "models/grealms/characters/revan_real/revan.mdl",
  637. },
  638. description = [[You are Revan. You need to be a darth in order to tryout for this.]],
  639. weapons = {"weapon_lightsaber_personal"},
  640. command = "revan",
  641. max = 1,
  642. salary = 1300,
  643. admin = 0,
  644. vote = false,
  645. hasLicense = false,
  646. candemote = false,
  647. category= "Sith Empire",
  648. sortOrder = 45, -- The position of this thing in its category. Lower number means higher up.
  649. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  650. ply:SetHealth(2250)
  651. ply:SetMaxHealth(2250)
  652. end,
  653. ammo = {
  654. ["pistol"] = 300000,
  655. ["ar2"] = 300000,
  656. ["357"] = 300000,
  657. ["smg"] = 300000,
  658. },
  659. })
  660. TEAM_SIDIOUS = DarkRP.createJob("Sidious [T3]", {
  661. color = Color(128, 0, 0),
  662. model = {
  663. "models/player/emperor_palpatine.mdl",
  664. },
  665. description = [[You are Sidious. You need to be a darth in order to tryout for this.]],
  666. weapons = {"weapon_lightsaber_personal"},
  667. command = "sidious",
  668. max = 1,
  669. salary = 1300,
  670. admin = 0,
  671. vote = false,
  672. hasLicense = false,
  673. candemote = false,
  674. category= "Sith Empire",
  675. sortOrder = 48, -- The position of this thing in its category. Lower number means higher up.
  676. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  677. ply:SetHealth(2250)
  678. ply:SetMaxHealth(2250)
  679. end,
  680. ammo = {
  681. ["pistol"] = 300000,
  682. ["ar2"] = 300000,
  683. ["357"] = 300000,
  684. ["smg"] = 300000,
  685. },
  686. })
  687. TEAM_VADER = DarkRP.createJob("Vader [T3]", {
  688. color = Color(128, 0, 0),
  689. model = {
  690. "models/nate159/swbf/hero/player/hero_sith_vader_player.mdl",
  691. },
  692. description = [[You are Vader. You need to be a darth in order to tryout for this.]],
  693. weapons = {"weapon_lightsaber_personal"},
  694. command = "vader",
  695. max = 1,
  696. salary = 1300,
  697. admin = 0,
  698. vote = false,
  699. hasLicense = false,
  700. candemote = false,
  701. category= "Sith Empire",
  702. sortOrder = 50, -- The position of this thing in its category. Lower number means higher up.
  703. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  704. ply:SetHealth(2250)
  705. ply:SetMaxHealth(2250)
  706. end,
  707. ammo = {
  708. ["pistol"] = 300000,
  709. ["ar2"] = 300000,
  710. ["357"] = 300000,
  711. ["smg"] = 300000,
  712. },
  713. })
  714. TEAM_MARR = DarkRP.createJob("Marr [T2]", {
  715. color = Color(128, 0, 0),
  716. model = {
  717. "models/grealms/characters/darthmarr/darthmarr.mdl",
  718. },
  719. description = [[You are Marr. You need to be a darth in order to tryout for this.]],
  720. weapons = {"weapon_lightsaber_personal"},
  721. command = "marr",
  722. max = 1,
  723. salary = 1100,
  724. admin = 0,
  725. vote = false,
  726. hasLicense = false,
  727. candemote = false,
  728. category= "Sith Empire",
  729. sortOrder = 53, -- The position of this thing in its category. Lower number means higher up.
  730. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  731. ply:SetHealth(1750)
  732. ply:SetMaxHealth(1750)
  733. end,
  734. ammo = {
  735. ["pistol"] = 300000,
  736. ["ar2"] = 300000,
  737. ["357"] = 300000,
  738. ["smg"] = 300000,
  739. },
  740. })
  741. TEAM_JADUS = DarkRP.createJob("Jadus [T2]", {
  742. color = Color(128, 0, 0),
  743. model = {
  744. "models/models/grealms/characters/darthjadus/darthjadus.mdl",
  745. },
  746. description = [[You are Jadus. You need to be a darth in order to tryout for this.]],
  747. weapons = {"weapon_lightsaber_personal"},
  748. command = "jadus",
  749. max = 1,
  750. salary = 1100,
  751. admin = 0,
  752. vote = false,
  753. hasLicense = false,
  754. candemote = false,
  755. category= "Sith Empire",
  756. sortOrder = 55, -- The position of this thing in its category. Lower number means higher up.
  757. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  758. ply:SetHealth(1750)
  759. ply:SetMaxHealth(1750)
  760. end,
  761. ammo = {
  762. ["pistol"] = 300000,
  763. ["ar2"] = 300000,
  764. ["357"] = 300000,
  765. ["smg"] = 300000,
  766. },
  767. })
  768. TEAM_STARKILLER = DarkRP.createJob("Starkiller [T2]", {
  769. color = Color(128, 0, 0),
  770. model = {
  771. "models/player/sitharmor/sitharmor_pm.mdl",
  772. },
  773. description = [[You are Starkiller. You need to be a darth in order to tryout for this.]],
  774. weapons = {"weapon_lightsaber_personal"},
  775. command = "starkiller",
  776. max = 1,
  777. salary = 1100,
  778. admin = 0,
  779. vote = false,
  780. hasLicense = false,
  781. candemote = false,
  782. category= "Sith Empire",
  783. sortOrder = 58, -- The position of this thing in its category. Lower number means higher up.
  784. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  785. ply:SetHealth(1750)
  786. ply:SetMaxHealth(1750)
  787. end,
  788. ammo = {
  789. ["pistol"] = 300000,
  790. ["ar2"] = 300000,
  791. ["357"] = 300000,
  792. ["smg"] = 300000,
  793. },
  794. })
  795. TEAM_DOOKU = DarkRP.createJob("Dooku [T2]", {
  796. color = Color(128, 0, 0),
  797. model = {
  798. "models/kriegsyntax/sw_752/dooku_est.mdl",
  799. },
  800. description = [[You are Dooku. You need to be a darth in order to tryout for this.]],
  801. weapons = {"weapon_lightsaber_personal"},
  802. command = "dooku",
  803. max = 1,
  804. salary = 1100,
  805. admin = 0,
  806. vote = false,
  807. hasLicense = false,
  808. candemote = false,
  809. category= "Sith Empire",
  810. sortOrder = 58, -- The position of this thing in its category. Lower number means higher up.
  811. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  812. ply:SetHealth(1750)
  813. ply:SetMaxHealth(1750)
  814. end,
  815. ammo = {
  816. ["pistol"] = 300000,
  817. ["ar2"] = 300000,
  818. ["357"] = 300000,
  819. ["smg"] = 300000,
  820. },
  821. })
  822. TEAM_MAUL = DarkRP.createJob("Maul [T2]", {
  823. color = Color(128, 0, 0),
  824. model = {
  825. "models/player/darth/maul.mdl",
  826. },
  827. description = [[You are Maul. You need to be a darth in order to tryout for this.]],
  828. weapons = {"weapon_lightsaber_personal"},
  829. command = "maul",
  830. max = 1,
  831. salary = 1100,
  832. admin = 0,
  833. vote = false,
  834. hasLicense = false,
  835. candemote = false,
  836. category= "Sith Empire",
  837. sortOrder = 60, -- The position of this thing in its category. Lower number means higher up.
  838. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  839. ply:SetHealth(1750)
  840. ply:SetMaxHealth(1750)
  841. end,
  842. ammo = {
  843. ["pistol"] = 300000,
  844. ["ar2"] = 300000,
  845. ["357"] = 300000,
  846. ["smg"] = 300000,
  847. },
  848. })
  849. TEAM_SION = DarkRP.createJob("Sion [T1]", {
  850. color = Color(128, 0, 0),
  851. model = {
  852. "models/grealms/characters/darthsion/sion.mdl",
  853. },
  854. description = [[You are Sion. You need to be a lord in order to tryout for this.]],
  855. weapons = {"weapon_lightsaber_personal"},
  856. command = "sion",
  857. max = 1,
  858. salary = 850,
  859. admin = 0,
  860. vote = false,
  861. hasLicense = false,
  862. candemote = false,
  863. category= "Sith Empire",
  864. sortOrder = 63, -- The position of this thing in its category. Lower number means higher up.
  865. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  866. ply:SetHealth(1250)
  867. ply:SetMaxHealth(1250)
  868. end,
  869. ammo = {
  870. ["pistol"] = 300000,
  871. ["ar2"] = 300000,
  872. ["357"] = 300000,
  873. ["smg"] = 300000,
  874. },
  875. })
  876. TEAM_KYLO = DarkRP.createJob("Kylo Ren [T1]", {
  877. color = Color(128, 0, 0),
  878. model = {
  879. "models/grealms/characters/kyloren/kyloren.mdl",
  880. },
  881. description = [[You are Kylo Ren. You need to be a lord in order to tryout for this.]],
  882. weapons = {"weapon_lightsaber_personal"},
  883. command = "kylo",
  884. max = 1,
  885. salary = 850,
  886. admin = 0,
  887. vote = false,
  888. hasLicense = false,
  889. candemote = false,
  890. category= "Sith Empire",
  891. sortOrder = 65, -- The position of this thing in its category. Lower number means higher up.
  892. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  893. ply:SetHealth(1250)
  894. ply:SetMaxHealth(1250)
  895. end,
  896. ammo = {
  897. ["pistol"] = 300000,
  898. ["ar2"] = 300000,
  899. ["357"] = 300000,
  900. ["smg"] = 300000,
  901. },
  902. })
  903. TEAM_SAVAGE = DarkRP.createJob("Savage Opresss [T1]", {
  904. color = Color(128, 0, 0),
  905. model = {
  906. "models/syntheticgaming/characters/savageopress/savageopress.mdl",
  907. },
  908. description = [[You are Savage Opress. You need to be an apprentice in order to tryout for this.]],
  909. weapons = {"weapon_lightsaber_personal"},
  910. command = "savage",
  911. max = 1,
  912. salary = 850,
  913. admin = 0,
  914. vote = false,
  915. hasLicense = false,
  916. candemote = false,
  917. category= "Sith Empire",
  918. sortOrder = 68, -- The position of this thing in its category. Lower number means higher up.
  919. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  920. ply:SetHealth(1250)
  921. ply:SetMaxHealth(1250)
  922. end,
  923. ammo = {
  924. ["pistol"] = 300000,
  925. ["ar2"] = 300000,
  926. ["357"] = 300000,
  927. ["smg"] = 300000,
  928. },
  929. })
  930. TEAM_EMPEROR = DarkRP.createJob("Sith Emperor", {
  931. color = Color(128, 0, 0),
  932. model = {
  933. "models/player/swtor/arsenic/undead/lord_03.mdl",
  934. "models/player/swtor/arsenic/undead/darth_04.mdl",
  935. "models/player/swtor/arsenic/undead/darth_03.mdl",
  936. "models/player/swtor/arsenic/nook/nook.mdl",
  937. "models/player/arsenic/shilen/shilen.mdl",
  938. "models/player/swtor/arsenic/undead/darth_05.mdl",
  939. "models/player/swtor/arsenic/raeus/raeus.mdl",
  940. "models/player/swtor/arsenic/beluga/beluga.mdl",
  941. "models/player/swtor/arsenic/undead/apprentice_01.mdl",
  942. "models/player/swtor/arsenic/undead/apprentice_02.mdl",
  943. "models/player/swtor/arsenic/undead/lord_01.mdl",
  944. "models/player/sw/revan/revan.mdl",
  945. "models/player/sith/human.mdl",
  946. "models/player/sith/bith.mdl",
  947. "models/player/sith/gotal.mdl",
  948. "models/player/sith/gungan.mdl",
  949. "models/player/sith/nautolan.mdl",
  950. "models/player/sith/pantoran.mdl",
  951. "models/player/sith/quarren.mdl",
  952. "models/player/sith/rodian.mdl",
  953. "models/player/sith/togruta.mdl",
  954. "models/player/sith/trandoshan.mdl",
  955. "models/player/sith/twilek2.mdl",
  956. "models/player/sith/umbaran.mdl",
  957. "models/player/sith/zabrak.mdl"
  958. },
  959. description = [[You are the Sith Emperor.]],
  960. weapons = {"weapon_lightsaber_personal"},
  961. command = "emperor",
  962. max = 1,
  963. salary = 1250,
  964. admin = 0,
  965. vote = false,
  966. hasLicense = false,
  967. candemote = false,
  968. category= "Sith Empire",
  969. sortOrder = 70, -- The position of this thing in its category. Lower number means higher up.
  970. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  971. ply:SetHealth(2000)
  972. ply:SetMaxHealth(2000)
  973. end,
  974. ammo = {
  975. ["pistol"] = 300000,
  976. ["ar2"] = 300000,
  977. ["357"] = 300000,
  978. ["smg"] = 300000,
  979. },
  980. })
  981. TEAM_DARTH = DarkRP.createJob("Darth", {
  982. color = Color(128, 0, 0),
  983. model = {
  984. "models/player/swtor/arsenic/undead/darth_04.mdl",
  985. "models/player/swtor/arsenic/undead/darth_03.mdl",
  986. "models/player/swtor/arsenic/nook/nook.mdl",
  987. "models/player/arsenic/shilen/shilen.mdl",
  988. "models/player/swtor/arsenic/undead/darth_05.mdl",
  989. "models/player/swtor/arsenic/raeus/raeus.mdl",
  990. "models/player/swtor/arsenic/beluga/beluga.mdl",
  991. "models/player/swtor/arsenic/undead/apprentice_01.mdl",
  992. "models/player/swtor/arsenic/undead/apprentice_02.mdl",
  993. "models/player/swtor/arsenic/undead/lord_01.mdl",
  994. "models/player/sw/revan/revan.mdl",
  995. "models/player/sith/human.mdl",
  996. "models/player/sith/bith.mdl",
  997. "models/player/sith/gotal.mdl",
  998. "models/player/sith/gungan.mdl",
  999. "models/player/sith/nautolan.mdl",
  1000. "models/player/sith/pantoran.mdl",
  1001. "models/player/sith/quarren.mdl",
  1002. "models/player/sith/rodian.mdl",
  1003. "models/player/sith/togruta.mdl",
  1004. "models/player/sith/trandoshan.mdl",
  1005. "models/player/sith/twilek2.mdl",
  1006. "models/player/sith/umbaran.mdl",
  1007. "models/player/sith/zabrak.mdl"
  1008. },
  1009. description = [[You are a Darth.]],
  1010. weapons = {"weapon_lightsaber_personal"},
  1011. command = "darth",
  1012. max = 0,
  1013. salary = 1000,
  1014. admin = 0,
  1015. vote = false,
  1016. hasLicense = false,
  1017. candemote = false,
  1018. category= "Sith Empire",
  1019. sortOrder = 73, -- The position of this thing in its category. Lower number means higher up.
  1020. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1021. ply:SetHealth(1500)
  1022. ply:SetMaxHealth(1500)
  1023. end,
  1024. ammo = {
  1025. ["pistol"] = 300000,
  1026. ["ar2"] = 300000,
  1027. ["357"] = 300000,
  1028. ["smg"] = 300000,
  1029. },
  1030. })
  1031. TEAM_SLORD = DarkRP.createJob("Sith Lord", {
  1032. color = Color(128, 0, 0),
  1033. model = {
  1034. "models/player/arsenic/shilen/shilen.mdl",
  1035. "models/player/swtor/arsenic/undead/darth_05.mdl",
  1036. "models/player/swtor/arsenic/raeus/raeus.mdl",
  1037. "models/player/swtor/arsenic/beluga/beluga.mdl",
  1038. "models/player/swtor/arsenic/undead/apprentice_01.mdl",
  1039. "models/player/swtor/arsenic/undead/apprentice_02.mdl",
  1040. "models/player/swtor/arsenic/undead/lord_01.mdl",
  1041. "models/player/sw/revan/revan.mdl",
  1042. "models/player/sith/human.mdl",
  1043. "models/player/sith/bith.mdl",
  1044. "models/player/sith/gotal.mdl",
  1045. "models/player/sith/gungan.mdl",
  1046. "models/player/sith/nautolan.mdl",
  1047. "models/player/sith/pantoran.mdl",
  1048. "models/player/sith/quarren.mdl",
  1049. "models/player/sith/rodian.mdl",
  1050. "models/player/sith/togruta.mdl",
  1051. "models/player/sith/trandoshan.mdl",
  1052. "models/player/sith/twilek2.mdl",
  1053. "models/player/sith/umbaran.mdl",
  1054. "models/player/sith/zabrak.mdl"
  1055. },
  1056. description = [[You are a Sith Lord.]],
  1057. weapons = {"weapon_lightsaber_personal"},
  1058. command = "slord",
  1059. max = 0,
  1060. salary = 750,
  1061. admin = 0,
  1062. vote = false,
  1063. hasLicense = false,
  1064. candemote = false,
  1065. category= "Sith Empire",
  1066. sortOrder = 75, -- The position of this thing in its category. Lower number means higher up.
  1067. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1068. ply:SetHealth(1000)
  1069. ply:SetMaxHealth(1000)
  1070. end,
  1071. ammo = {
  1072. ["pistol"] = 300000,
  1073. ["ar2"] = 300000,
  1074. ["357"] = 300000,
  1075. ["smg"] = 300000,
  1076. },
  1077. })
  1078. TEAM_SAPPRENTICE = DarkRP.createJob("Sith Apprentice", {
  1079. color = Color(128, 0, 0),
  1080. model = {
  1081. "models/player/swtor/arsenic/undead/apprentice_01.mdl",
  1082. "models/player/swtor/arsenic/undead/apprentice_02.mdl",
  1083. "models/player/sith/human.mdl",
  1084. "models/player/sith/bith.mdl",
  1085. "models/player/sith/gotal.mdl",
  1086. "models/player/sith/gungan.mdl",
  1087. "models/player/sith/nautolan.mdl",
  1088. "models/player/sith/pantoran.mdl",
  1089. "models/player/sith/quarren.mdl",
  1090. "models/player/sith/rodian.mdl",
  1091. "models/player/sith/togruta.mdl",
  1092. "models/player/sith/trandoshan.mdl",
  1093. "models/player/sith/twilek2.mdl",
  1094. "models/player/sith/umbaran.mdl",
  1095. "models/player/sith/zabrak.mdl"
  1096. },
  1097. description = [[You are a Sith Apprentice.]],
  1098. weapons = {"weapon_lightsaber_personal"},
  1099. command = "sapprentice",
  1100. max = 0,
  1101. salary = 500,
  1102. admin = 0,
  1103. vote = false,
  1104. hasLicense = false,
  1105. candemote = false,
  1106. category= "Sith Empire",
  1107. sortOrder = 77, -- The position of this thing in its category. Lower number means higher up.
  1108. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1109. ply:SetHealth(500)
  1110. ply:SetMaxHealth(500)
  1111. end,
  1112. ammo = {
  1113. ["pistol"] = 300000,
  1114. ["ar2"] = 300000,
  1115. ["357"] = 300000,
  1116. ["smg"] = 300000,
  1117. },
  1118. })
  1119. TEAM_SACOLYTE = DarkRP.createJob("Sith Acolyte", {
  1120. color = Color(128, 0, 0),
  1121. model = {
  1122. "models/player/sith/human.mdl",
  1123. "models/player/sith/bith.mdl",
  1124. "models/player/sith/gotal.mdl",
  1125. "models/player/sith/gungan.mdl",
  1126. "models/player/sith/nautolan.mdl",
  1127. "models/player/sith/pantoran.mdl",
  1128. "models/player/sith/quarren.mdl",
  1129. "models/player/sith/rodian.mdl",
  1130. "models/player/sith/togruta.mdl",
  1131. "models/player/sith/trandoshan.mdl",
  1132. "models/player/sith/twilek2.mdl",
  1133. "models/player/sith/umbaran.mdl",
  1134. "models/player/sith/zabrak.mdl"
  1135. },
  1136. description = [[You are a Sith Acolyte.]],
  1137. weapons = {"weapon_lightsaber_personal"},
  1138. command = "sacolyte",
  1139. max = 0,
  1140. salary = 250,
  1141. admin = 0,
  1142. vote = false,
  1143. hasLicense = false,
  1144. candemote = false,
  1145. category= "Sith Empire",
  1146. sortOrder = 80, -- The position of this thing in its category. Lower number means higher up.
  1147. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1148. ply:SetHealth(250)
  1149. ply:SetMaxHealth(250)
  1150. end,
  1151. ammo = {
  1152. ["pistol"] = 300000,
  1153. ["ar2"] = 300000,
  1154. ["357"] = 300000,
  1155. ["smg"] = 300000,
  1156. },
  1157. })
  1158.  
  1159. -- CATEGORY: Eternal Empire
  1160.  
  1161. TEAM_VALKORION = DarkRP.createJob("Valkorion [T3]", {
  1162. color = Color(255, 140, 0),
  1163. model = {
  1164. "models/grealms/characters/valkorian/valkorian.mdl"
  1165. },
  1166. description = [[You are Valkorion. You need to be a champion in order to tryout for this.]],
  1167. weapons = {"weapon_lightsaber_personal"},
  1168. command = "valkorion",
  1169. max = 1,
  1170. salary = 1300,
  1171. admin = 0,
  1172. vote = false,
  1173. hasLicense = false,
  1174. candemote = false,
  1175. category= "Eternal Empire",
  1176. sortOrder = 60, -- The position of this thing in its category. Lower number means higher up.
  1177. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1178. ply:SetHealth(2250)
  1179. ply:SetMaxHealth(2250)
  1180. end,
  1181. ammo = {
  1182. ["pistol"] = 300000,
  1183. ["ar2"] = 300000,
  1184. ["357"] = 300000,
  1185. ["smg"] = 300000,
  1186. },
  1187. })
  1188. TEAM_ARCANN = DarkRP.createJob("Arcann [T2]", {
  1189. color = Color(255, 140, 0),
  1190. model = {
  1191. "models/arcann/arcann.mdl"
  1192. },
  1193. description = [[You are Arcann. You need to be an elite guard in order to tryout for this.]],
  1194. weapons = {"weapon_lightsaber_personal"},
  1195. command = "arcann",
  1196. max = 1,
  1197. salary = 1100,
  1198. admin = 0,
  1199. vote = false,
  1200. hasLicense = false,
  1201. candemote = false,
  1202. category= "Eternal Empire",
  1203. sortOrder = 63, -- The position of this thing in its category. Lower number means higher up.
  1204. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1205. ply:SetHealth(1750)
  1206. ply:SetMaxHealth(1750)
  1207. end,
  1208. ammo = {
  1209. ["pistol"] = 300000,
  1210. ["ar2"] = 300000,
  1211. ["357"] = 300000,
  1212. ["smg"] = 300000,
  1213. },
  1214. })
  1215. TEAM_THEXAN = DarkRP.createJob("Thexan [T2]", {
  1216. color = Color(255, 140, 0),
  1217. model = {
  1218. "models/player/thexan/thexan.mdl"
  1219. },
  1220. description = [[You are Thexan. You need to be an elite guard in order to tryout for this.]],
  1221. weapons = {"weapon_lightsaber_personal"},
  1222. command = "thexan",
  1223. max = 1,
  1224. salary = 1100,
  1225. admin = 0,
  1226. vote = false,
  1227. hasLicense = false,
  1228. candemote = false,
  1229. category= "Eternal Empire",
  1230. sortOrder = 65, -- The position of this thing in its category. Lower number means higher up.
  1231. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1232. ply:SetHealth(1750)
  1233. ply:SetMaxHealth(1750)
  1234. end,
  1235. ammo = {
  1236. ["pistol"] = 300000,
  1237. ["ar2"] = 300000,
  1238. ["357"] = 300000,
  1239. ["smg"] = 300000,
  1240. },
  1241. })
  1242. TEAM_VAYLIN = DarkRP.createJob("Vaylin [T2]", {
  1243. color = Color(255, 140, 0),
  1244. model = {
  1245. "models/grealms/characters/vaylin/vaylin.mdl"
  1246. },
  1247. description = [[You are Vaylin. You need to be an elite guard in order to tryout for this.]],
  1248. weapons = {"weapon_lightsaber_personal"},
  1249. command = "vaylin",
  1250. max = 1,
  1251. salary = 1100,
  1252. admin = 0,
  1253. vote = false,
  1254. hasLicense = false,
  1255. candemote = false,
  1256. category= "Eternal Empire",
  1257. sortOrder = 68, -- The position of this thing in its category. Lower number means higher up.
  1258. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1259. ply:SetHealth(1750)
  1260. ply:SetMaxHealth(1750)
  1261. end,
  1262. ammo = {
  1263. ["pistol"] = 300000,
  1264. ["ar2"] = 300000,
  1265. ["357"] = 300000,
  1266. ["smg"] = 300000,
  1267. },
  1268. })
  1269. TEAM_SENYA = DarkRP.createJob("Senya [T1]", {
  1270. color = Color(255, 140, 0),
  1271. model = {
  1272. "models/player/valley/senya.mdl"
  1273. },
  1274. description = [[You are Senya. You need to be a knight in order to tryout for this.]],
  1275. weapons = {"weapon_lightsaber_personal"},
  1276. command = "senya",
  1277. max = 1,
  1278. salary = 850,
  1279. admin = 0,
  1280. vote = false,
  1281. hasLicense = false,
  1282. candemote = false,
  1283. category= "Eternal Empire",
  1284. sortOrder = 70, -- The position of this thing in its category. Lower number means higher up.
  1285. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1286. ply:SetHealth(1250)
  1287. ply:SetMaxHealth(1250)
  1288. end,
  1289. ammo = {
  1290. ["pistol"] = 300000,
  1291. ["ar2"] = 300000,
  1292. ["357"] = 300000,
  1293. ["smg"] = 300000,
  1294. },
  1295. })
  1296. TEAM_ZHGENERAL = DarkRP.createJob("Zakuul High General", {
  1297. color = Color(255, 140, 0),
  1298. model = {
  1299. "models/gonzo/characters/customzakuulknight/customzakuulknight.mdl"
  1300. },
  1301. description = [[You are the Zakuul High General.]],
  1302. weapons = {"weapon_lightsaber_personal"},
  1303. command = "zhgeneral",
  1304. max = 1,
  1305. salary = 1000,
  1306. admin = 0,
  1307. vote = false,
  1308. hasLicense = false,
  1309. candemote = false,
  1310. category= "Eternal Empire",
  1311. sortOrder = 73, -- The position of this thing in its category. Lower number means higher up.
  1312. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1313. ply:SetHealth(2000)
  1314. ply:SetMaxHealth(2000)
  1315. end,
  1316. ammo = {
  1317. ["pistol"] = 300000,
  1318. ["ar2"] = 300000,
  1319. ["357"] = 300000,
  1320. ["smg"] = 300000,
  1321. },
  1322. })
  1323. TEAM_ZCHAMPION = DarkRP.createJob("Zakuul Champion", {
  1324. color = Color(255, 140, 0),
  1325. model = {
  1326. "models/gonzo/zakuulguardian/zakuulguardian.mdl"
  1327. },
  1328. description = [[You are a Zakuul Champion.]],
  1329. weapons = {"weapon_lightsaber_personal"},
  1330. command = "zchampion",
  1331. max = 0,
  1332. salary = 1000,
  1333. admin = 0,
  1334. vote = false,
  1335. hasLicense = false,
  1336. candemote = false,
  1337. category= "Eternal Empire",
  1338. sortOrder = 75, -- The position of this thing in its category. Lower number means higher up.
  1339. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1340. ply:SetHealth(1500)
  1341. ply:SetMaxHealth(1500)
  1342. end,
  1343. ammo = {
  1344. ["pistol"] = 300000,
  1345. ["ar2"] = 300000,
  1346. ["357"] = 300000,
  1347. ["smg"] = 300000,
  1348. },
  1349. })
  1350. TEAM_ZEGUARD = DarkRP.createJob("Zakuul Elite Guard", {
  1351. color = Color(255, 140, 0),
  1352. model = {
  1353. "models/banks/zakuulguardian/zakuulguardian.mdl"
  1354. },
  1355. description = [[You are a Zakuul Elite Guard.]],
  1356. weapons = {"weapon_lightsaber_personal"},
  1357. command = "zeguard",
  1358. max = 0,
  1359. salary = 750,
  1360. admin = 0,
  1361. vote = false,
  1362. hasLicense = false,
  1363. candemote = false,
  1364. category= "Eternal Empire",
  1365. sortOrder = 78, -- The position of this thing in its category. Lower number means higher up.
  1366. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1367. ply:SetHealth(1000)
  1368. ply:SetMaxHealth(1000)
  1369. end,
  1370. ammo = {
  1371. ["pistol"] = 300000,
  1372. ["ar2"] = 300000,
  1373. ["357"] = 300000,
  1374. ["smg"] = 300000,
  1375. },
  1376. })
  1377. TEAM_ZKNIGHT = DarkRP.createJob("Zakuul Knight", {
  1378. color = Color(255, 140, 0),
  1379. model = {
  1380. "models/grealms/characters/zakuulknight/zakuulknight.mdl"
  1381. },
  1382. description = [[You are a Zakuul Knight.]],
  1383. weapons = {"weapon_lightsaber_personal"},
  1384. command = "zknight",
  1385. max = 0,
  1386. salary = 500,
  1387. admin = 0,
  1388. vote = false,
  1389. hasLicense = false,
  1390. candemote = false,
  1391. category= "Eternal Empire",
  1392. sortOrder = 80, -- The position of this thing in its category. Lower number means higher up.
  1393. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1394. ply:SetHealth(500)
  1395. ply:SetMaxHealth(500)
  1396. end,
  1397. ammo = {
  1398. ["pistol"] = 300000,
  1399. ["ar2"] = 300000,
  1400. ["357"] = 300000,
  1401. ["smg"] = 300000,
  1402. },
  1403. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement