Advertisement
Guest User

star wars jobs from looap update

a guest
Jun 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.39 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom jobs.
  6. This file should also contain jobs from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the job to this file and edit it.
  10.  
  11. The default jobs can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  16.  
  17.  
  18. Add jobs under the following line:
  19. ---------------------------------------------------------------------------]]
  20.  
  21. TEAM_STC = DarkRP.createJob("Storm Trooper Commander", {
  22. color = Color(25, 25, 170, 255),
  23. model = {
  24. "models/player/fatal/troopers/commander.mdl"
  25. },
  26. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  27. weapons = {"weapon_752_e11", "weapon_752bf3_dh17"},
  28. command = "ST commander",
  29. max = 1,
  30. salary = 200000,
  31. admin = 0,
  32. vote = false,
  33. hasLicense = false,
  34. candemote = false,
  35. CustomCheckFailMsg = "You are not whitelisted to this job.",
  36. category = "Storm troopers",
  37. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  38. PlayerDeath = function(ply) end,
  39. })
  40.  
  41. TEAM_STO = DarkRP.createJob("Storm Trooper officer", {
  42. color = Color(25, 25, 170, 255),
  43. model = {
  44. "models/player/fatal/troopers/officer.mdl"
  45. },
  46. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  47. weapons = {"weapon_752_e11", "weapon_752bf3_dh17"},
  48. command = "ST officer",
  49. max = 7,
  50. salary = 100000,
  51. admin = 0,
  52. vote = false,
  53. hasLicense = false,
  54. candemote = false,
  55. CustomCheckFailMsg = "You are not whitelisted to this job.",
  56. category = "Storm troopers",
  57. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  58. PlayerDeath = function(ply) end,
  59. })
  60.  
  61. TEAM_STL = DarkRP.createJob("Storm Trooper Lieutenant", {
  62. color = Color(25, 25, 170, 255),
  63. model = {
  64. "models/player/fatal/troopers/sergeant.mdl"
  65. },
  66. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  67. weapons = {"weapon_752_e11", "weapon_752bf3_dh17"},
  68. command = "ST Lieutenant",
  69. max = 10,
  70. salary = 10000,
  71. admin = 0,
  72. vote = false,
  73. hasLicense = false,
  74. candemote = false,
  75. CustomCheckFailMsg = "You are not whitelisted to this job.",
  76. category = "Storm troopers",
  77. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  78. PlayerDeath = function(ply) end,
  79. })
  80.  
  81. TEAM_STS = DarkRP.createJob("Storm Trooper Sergeant", {
  82. color = Color(25, 25, 170, 255),
  83. model = {
  84. "models/player/fatal/troopers/sergeant.mdl"
  85. },
  86. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  87. weapons = {"weapon_752_e11", "weapon_752bf3_dh17"},
  88. command = "ST Sergeant",
  89. max = 0,
  90. salary = 1500,
  91. admin = 0,
  92. vote = false,
  93. hasLicense = false,
  94. candemote = false,
  95. category = "Storm troopers",
  96. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  97. PlayerDeath = function(ply) end,
  98. })
  99.  
  100. TEAM_STT = DarkRP.createJob("Storm Trooper", {
  101. color = Color(25, 25, 170, 255),
  102. model = {
  103. "models/player/fatal/troopers/trooper.mdl"
  104. },
  105. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  106. weapons = {"weapon_752_e11", "weapon_752bf3_dh17"},
  107. command = "ST Trooper",
  108. max = 0,
  109. salary = 500,
  110. admin = 0,
  111. vote = false,
  112. hasLicense = false,
  113. candemote = false,
  114. CustomCheckFailMsg = "You are not whitelisted to this job.",
  115. category = "Storm troopers",
  116. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  117. PlayerDeath = function(ply) end,
  118. })
  119.  
  120. TEAM_RECRUIT = DarkRP.createJob("Storm Trooper Recruit", {
  121. color = Color(20, 150, 20, 255),
  122. model = {
  123. "models/player/scifi_bill.mdl",
  124. "models/player/scifi_male_06.mdl",
  125. "models/player/scifi_male_03.mdl",
  126. "models/player/scifi_wraith.mdl",
  127.  
  128. },
  129. description = [[You are a Storm trooper that has to earn his or hers ranks by hand.]],
  130. weapons = {"weapon_752_e11trainingnodmg"},
  131. command = "Storm Trooper Recruit",
  132. max = 0,
  133. salary = 5,
  134. admin = 0,
  135. vote = false,
  136. hasLicense = false,
  137. candemote = false,
  138. CustomCheckFailMsg = "You are whitelisted to this job.",
  139. category = "Storm trooper Recruit",
  140. PlayerSpawn = function(ply) ply:SetHealth(50) ply:SetArmor(1) end,
  141. PlayerDeath = function(ply) end,
  142. })
  143.  
  144.  
  145.  
  146.  
  147. TEAM_DTTROOPERC = DarkRP.createJob("DT Commander", {
  148. color = Color(75, 75, 75, 255),
  149. model = {
  150. "models/gonzo/whitescarreddt/whitescarreddt.mdl"
  151. },
  152. description = [[You are the DT Protect the ship from anything.]],
  153. weapons = {"tfa_e11d_extended","tfa_cadbane_rifle", "tfa_wsp_1","weapon_camo","realistic_hook"},
  154. command = "DT Commander",
  155. max = 1,
  156. salary = 200000,
  157. admin = 0,
  158. vote = false,
  159. hasLicense = false,
  160. candemote = false,
  161. category = "DT Troopers",
  162. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  163. PlayerDeath = function(ply) end,
  164. })
  165.  
  166. TEAM_DTTROOPERO = DarkRP.createJob("DT officer", {
  167. color = Color(75, 75, 75, 255),
  168. model = {
  169. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper.mdl"
  170. },
  171. description = [[You are the DT Protect the ship from anything.]],
  172. weapons = {"tfa_e11d_extended","tfa_cadbane_rifle", "tfa_wsp_1","weapon_camo","realistic_hook"},
  173. command = "DT officer",
  174. max = 7,
  175. salary = 100000,
  176. admin = 0,
  177. vote = false,
  178. hasLicense = false,
  179. candemote = false,
  180. category = "DT Troopers",
  181. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  182. PlayerDeath = function(ply) end,
  183. })
  184.  
  185. TEAM_DTTROOPERL = DarkRP.createJob("DT Lieutenant", {
  186. color = Color(75, 75, 75, 255),
  187. model = {
  188. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper.mdl"
  189. },
  190. description = [[You are the DT Protect the ship from anything.]],
  191. weapons = {"tfa_e11d_extended","tfa_cadbane_rifle", "tfa_wsp_1","weapon_camo","realistic_hook"},
  192. command = "DT Lieutenant",
  193. max = 10,
  194. salary = 10000,
  195. admin = 0,
  196. vote = false,
  197. hasLicense = false,
  198. candemote = false,
  199. category = "DT Troopers",
  200. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  201. PlayerDeath = function(ply) end,
  202. })
  203.  
  204.  
  205. TEAM_DTTROOPERS = DarkRP.createJob("DT Sergeant", {
  206. color = Color(75, 75, 75, 255),
  207. model = {
  208. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl"
  209. },
  210. description = [[You are the DT Protect the ship from anything.]],
  211. weapons = {"tfa_e11d_extended","weapon_752bf3_e11", "tfa_wsp_1","weapon_camo","realistic_hook"},
  212. command = "DT Sergeant",
  213. max = 0,
  214. salary = 1500,
  215. admin = 0,
  216. vote = false,
  217. hasLicense = false,
  218. candemote = false,
  219. category = "DT Troopers",
  220. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  221. PlayerDeath = function(ply) end,
  222.  
  223. })
  224.  
  225.  
  226. TEAM_DTTROOPERT = DarkRP.createJob("DT Trooper", {
  227. color = Color(75, 75, 75, 255),
  228. model = {
  229. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper2.mdl"
  230. },
  231. description = [[You are the DT Protect the ship from anything.]],
  232. weapons = {"tfa_e11d_extended","weapon_752bf3_e11", "tfa_wsp_1","weapon_camo","realistic_hook"},
  233. command = "DT Trooper",
  234. max = 0,
  235. salary = 500,
  236. admin = 0,
  237. vote = false,
  238. hasLicense = false,
  239. candemote = false,
  240. category = "DT Troopers",
  241. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  242. PlayerDeath = function(ply) end,
  243. })
  244.  
  245. TEAM_501STC = DarkRP.createJob("501st Commander", {
  246. color = Color(47, 79, 79, 255),
  247. model = {
  248. "models/player/banks/tk_rex/tk_rex.mdl"
  249. },
  250. description = [[You are a 501st trooper that severs the lord.]],
  251. weapons = {"dc17m_shotgun","weapon_752bf3_e11","tfa_relby"},
  252. command = "501st Commander",
  253. max = 1,
  254. salary = 200000,
  255. admin = 0,
  256. vote = false,
  257. hasLicense = false,
  258. candemote = false,
  259. category = "501st troopers",
  260. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  261. PlayerDeath = function(ply) end,
  262. })
  263.  
  264. TEAM_501ST0 = DarkRP.createJob("501st officer", {
  265. color = Color(47, 79, 79, 255),
  266. model = {
  267. "models/player/banks/troopers/officer.mdl"
  268. },
  269. description = [[You are a 501st trooper that severs the lord.]],
  270. weapons = {"dc17m_shotgun","weapon_752bf3_e11","tfa_relby"},
  271. command = "501st officer",
  272. max = 7,
  273. salary = 100000,
  274. admin = 0,
  275. vote = false,
  276. hasLicense = false,
  277. candemote = false,
  278. category = "501st troopers",
  279. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  280. PlayerDeath = function(ply) end,
  281. })
  282.  
  283. TEAM_501STL = DarkRP.createJob("501st Lieutenant", {
  284. color = Color(47, 79, 79, 255),
  285. model = {
  286. "models/player/banks/troopers/sergeant.mdl"
  287. },
  288. description = [[You are a 501st trooper that severs the lord.]],
  289. weapons = {"dc17m_shotgun","weapon_752bf3_e11","tfa_relby"},
  290. command = "501st Lieutenant",
  291. max = 10,
  292. salary = 10000,
  293. admin = 0,
  294. vote = false,
  295. hasLicense = false,
  296. candemote = false,
  297. category = "501st troopers",
  298. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  299. PlayerDeath = function(ply) end,
  300. })
  301.  
  302. TEAM_501STS = DarkRP.createJob("501st Sergeant", {
  303. color = Color(47, 79, 79, 255),
  304. model = {
  305. "models/player/banks/troopers/sergeant.mdl"
  306. },
  307. description = [[You are a 501st trooper that severs the lord.]],
  308. weapons = {"dc17m_shotgun","weapon_752bf3_e11","weapon_dt12"},
  309. command = "501st Sergeant",
  310. max = 0,
  311. salary = 1500,
  312. admin = 0,
  313. vote = false,
  314. hasLicense = false,
  315. candemote = false,
  316. category = "501st troopers",
  317. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  318. PlayerDeath = function(ply) end,
  319. })
  320.  
  321. TEAM_501STT = DarkRP.createJob("501st Trooper", {
  322. color = Color(47, 79, 79, 255),
  323. model = {
  324. "models/player/banks/troopers/trooper.mdl"
  325. },
  326. description = [[You are a 501st trooper that severs the lord.]],
  327. weapons = {"dc17m_shotgun","weapon_752bf3_e11","weapon_dt12"},
  328. command = "501st Trooper",
  329. max = 0,
  330. salary = 500,
  331. admin = 0,
  332. vote = false,
  333. hasLicense = false,
  334. candemote = false,
  335. category = "501st troopers",
  336. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  337. PlayerDeath = function(ply) end,
  338. })
  339.  
  340. TEAM_MOB = DarkRP.createJob("Imperial Assassin Droid", {
  341. color = Color(20, 150, 20, 255),
  342. model = {
  343. "models/gonzo/ig88/ig88.mdl"
  344. },
  345. description = [[You are a Imperial Assassin Droid Hunt for the Wanted and Dont Let Shock See you.]],
  346. weapons = {"weapon_752_ihr", "weapon_swrc_det", "weapon_752bf3_t21","tfa_sw_westardual","sent_jetpack"},
  347. command = "Imperial Assassin Droid",
  348. max = 1,
  349. salary = 100000,
  350. admin = 0,
  351. vote = false,
  352. hasLicense = false,
  353. candemote = false,
  354. category = "Custom Bounty hunter",
  355. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  356. PlayerDeath = function(ply) end,
  357. })
  358.  
  359.  
  360. TEAM_MOB = DarkRP.createJob("Bounty Hunter", {
  361. color = Color(20, 150, 20, 255),
  362. model = {
  363. "models/gonzo/isc/isccdr/isccdr.mdl",
  364. "models/gonzo/isc/isctrp/isctrp.mdl",
  365. "models/swtor/characters/republictrooper/republictrooper.mdl"
  366. },
  367. description = [[You are a Imperial Assassin Droid Hunt for the Wanted and Dont Let Shock See you.]],
  368. weapons = {"weapon_752_ihr", "weapon_swrc_det", "weapon_chatterbox_minigun","dc17m_shotgun","weapon_fists","sent_jetpack"},
  369. command = "Regular Bounty hunter",
  370. max = 0,
  371. salary = 100000,
  372. admin = 0,
  373. vote = false,
  374. hasLicense = false,
  375. candemote = false,
  376. category = "Custom Bounty hunter",
  377. PlayerSpawn = function(ply) ply:SetHealth(6500) ply:SetArmor(300) end,
  378. PlayerDeath = function(ply) end,
  379. })
  380.  
  381. TEAM_MOB = DarkRP.createJob("Bounty Hunter Bones", {
  382. color = Color(20, 150, 20, 255),
  383. model = {
  384. "models/gonzo/mrbones/mrbones.mdl"
  385. },
  386. description = [[You are Bounty hunter you do not follow the rules dont let shock see you]],
  387. weapons = { "tfa_wsp_1"," weapon_chatterbox_minigun","weapon_752bf3_rt97c","weapon_jew_det","tfa_sw_westardual","weapon_fists","sent_jetpack"},
  388. command = "Bounty hunter Bones",
  389. max = 1,
  390. salary = 100000,
  391. admin = 0,
  392. vote = false,
  393. hasLicense = false,
  394. candemote = false,
  395. category = "Custom Bounty hunter",
  396. PlayerSpawn = function(ply) ply:SetHealth(7500) ply:SetArmor(100) end,
  397. PlayerDeath = function(ply) end,
  398.  
  399. })
  400.  
  401.  
  402. TEAM_MOB = DarkRP.createJob("Bounty Hunter Bobba", {
  403. color = Color(20, 150, 20, 255),
  404. model = {
  405. "models/nate159/swbf/hero/hero_gunslinger_bobafett.mdl"
  406. },
  407. description = [[You are Bounty hunter you do not follow the rules dont let shock see you.]],
  408. weapons = { "weapon_752bf3_a280","weapon_752bf3_se14c","zeus_thermaldet","tfa_sw_westardual","weapon_fists","sent_jetpack"},
  409. command = "Bounty Hunter Bobba",
  410. max = 1,
  411. salary = 100000,
  412. admin = 0,
  413. vote = false,
  414. hasLicense = false,
  415. candemote = false,
  416. category = "Custom Bounty hunter",
  417. PlayerSpawn = function(ply) ply:SetHealth(7500) ply:SetArmor(1) end,
  418. PlayerDeath = function(ply) end,
  419. })
  420.  
  421. TEAM_REBELT = DarkRP.createJob("Rebel Trooper", {
  422. color = Color(47, 79, 79, 255),
  423. model = {
  424. "models/player/sgg/starwars/rebels/r_trooper/male_01.mdl"
  425. },
  426. description = [[Do not use this unless your in a event.]],
  427. weapons = { "weapon_752bf3_a280","weapon_fists"},
  428. command = "Rebel Trooper",
  429. max = 0,
  430. salary = 0,
  431. admin = 0,
  432. vote = false,
  433. hasLicense = false,
  434. candemote = false,
  435. category = "Vip",
  436. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(1) end,
  437. PlayerDeath = function(ply) end,
  438. })
  439. TEAM_REBELT = DarkRP.createJob("Rebel Commander ", {
  440. color = Color(47, 79, 79, 255),
  441. model = {
  442. "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl"
  443. },
  444. description = [[Do not use this unless your in a event.]],
  445. weapons = { "weapon_752bf3_a280","weapon_fists"},
  446. command = "Rebel Commander",
  447. max = 0,
  448. salary = 0,
  449. admin = 0,
  450. vote = false,
  451. hasLicense = false,
  452. candemote = false,
  453. category = "Vip",
  454. PlayerSpawn = function(ply) ply:SetHealth(9000) ply:SetArmor(1) end,
  455. PlayerDeath = function(ply) end,
  456. })
  457.  
  458. TEAM_REBELJ = DarkRP.createJob("Jedi ", {
  459. color = Color(47, 79, 79, 255),
  460. model = {
  461. "models/player/grady/starwars/duros_padawan.mdl"
  462. },
  463. description = [[Do not use this unless your in a event.]],
  464. weapons = { "weapon_lightsaber","weapon_fists"},
  465. command = "Jedi ",
  466. max = 0,
  467. salary = 0,
  468. admin = 0,
  469. vote = false,
  470. hasLicense = false,
  471. candemote = false,
  472. category = "Vip",
  473. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  474. PlayerDeath = function(ply) end,
  475. })
  476.  
  477. TEAM_REBELJ = DarkRP.createJob("Jedi Master", {
  478. color = Color(47, 79, 79, 255),
  479. model = {
  480. "models/player/grady/starwars/keldor_master.mdl"
  481. },
  482. description = [[Do not use this unless your in a event.]],
  483. weapons = { "weapon_lightsaber","weapon_fists"},
  484. command = "Jedi Master",
  485. max = 0,
  486. salary = 0,
  487. admin = 0,
  488. vote = false,
  489. hasLicense = false,
  490. candemote = false,
  491. category = "Vip",
  492. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  493. PlayerDeath = function(ply) end,
  494. })
  495.  
  496. TEAM_IMPERILAWORKER = DarkRP.createJob("Imperial Worker", {
  497. color = Color(47, 79, 79, 255),
  498. model = {
  499. "models/player/impworker.mdl"
  500.  
  501. },
  502. description = [[Build new weapons for the empire .]],
  503. weapons = { "weapon_physgun","gmod_tool","weapon_fists"},
  504. command = "IMPERIAL",
  505. max = 4,
  506. salary = 10000,
  507. admin = 0,
  508. vote = false,
  509. hasLicense = false,
  510. candemote = false,
  511. category = "Vip",
  512. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  513. PlayerDeath = function(ply) end,
  514. })
  515.  
  516. TEAM_SECDROID = DarkRP.createJob("Security Droid", {
  517. color = Color(47, 79, 79, 255),
  518. model = {
  519. "models/player/valley/k2so.mdl"
  520. },
  521. description = [[Keep shock safe and naval.]],
  522. weapons = { "weapon_752bf3_dlt19","weapon_fists"},
  523. command = "Security droid",
  524. max = 4,
  525. salary = 10000,
  526. admin = 0,
  527. vote = false,
  528. hasLicense = false,
  529. candemote = false,
  530. category = "Vip",
  531. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  532. PlayerDeath = function(ply) end,
  533. })
  534.  
  535. TEAM_TIEPILOT = DarkRP.createJob("Tie Pilot", {
  536. color = Color(47, 79, 79, 255),
  537. model = {
  538. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_02_r/pilot_imperial_orig_02_r.mdl",
  539. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_04_b/pilot_imperial_orig_04_b.mdl",
  540. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_04_b/pilot_imperial_orig_04_b.mdl"
  541. },
  542. description = [[Ask staff to spawn you a ship.]],
  543. weapons = { "weapon_752bf3_dlt19","weapon_fists"},
  544. command = "Tie Pilot",
  545. max = 4,
  546. salary = 10000,
  547. admin = 0,
  548. vote = false,
  549. hasLicense = false,
  550. candemote = false,
  551. category = "Vip",
  552. PlayerSpawn = function(ply) ply:SetHealth(350) ply:SetArmor(1) end,
  553. PlayerDeath = function(ply) end,
  554. })
  555.  
  556.  
  557. TEAM_BLACKGUARD = DarkRP.createJob("Shadow Guard", {
  558. color = Color(150, 20, 20, 255),
  559. model = {
  560. "models/player/ven/shadowguard.mdl"
  561. },
  562. description = [[You are A Shadow Guard you guard Darth Vader/fleet.]],
  563. weapons = { "weapon_lightsaber"},
  564. command = "Shadow Guard",
  565. max = 2,
  566. salary = 10000,
  567. admin = 0,
  568. vote = false,
  569. hasLicense = false,
  570. candemote = false,
  571. category = "Royal Guards ",
  572. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  573. PlayerDeath = function(ply) end,
  574.  
  575. })
  576.  
  577. TEAM_ROYALGUARD = DarkRP.createJob("Royal Guard", {
  578. color = Color(150, 20, 20, 255),
  579. model = {
  580. "models/player/ven/guard.mdl",
  581. "models/player/ven/carnor.mdl"
  582. },
  583. description = [[You are Royal Guard you guard Emperor Palpatine.]],
  584. weapons = { "weapon_lightsaber", "tfa_kotor_bp_5"},
  585. command = "Royal Guard",
  586. max = 4,
  587. salary = 10000,
  588. admin = 0,
  589. vote = false,
  590. hasLicense = false,
  591. candemote = false,
  592. category = "Royal Guards ",
  593. PlayerSpawn = function(ply) ply:SetHealth(525) ply:SetArmor(1) end,
  594. PlayerDeath = function(ply) end,
  595.  
  596.  
  597.  
  598. })
  599.  
  600. TEAM_ROYALGUARD = DarkRP.createJob("Saber Guards", {
  601. color = Color(150, 20, 20, 255),
  602. model = {
  603. "models/banks/zakuulguardian/zakuulguardian.mdl"
  604. },
  605. description = [[Just Do Your Job.]],
  606. weapons = { "weapon_lightsaber"},
  607. command = "Saber Guard",
  608. max = 2,
  609. salary = 10000,
  610. admin = 0,
  611. vote = false,
  612. hasLicense = false,
  613. candemote = false,
  614. category = "Sith",
  615. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  616. PlayerDeath = function(ply) end,
  617.  
  618. })
  619.  
  620. TEAM_DARTHVADER = DarkRP.createJob("Darth Vader", {
  621. color = Color(150, 20, 20, 255),
  622. model = {
  623. "models/nate159/swbf/hero/player/hero_sith_vader_player.mdl"
  624. },
  625. description = [[You are Darth vader you can control any of the 501st.]],
  626. weapons = {"forcechoke", "weapon_lightsaber"},
  627. command = "Darth Vader",
  628. max = 1,
  629. salary = 200000000,
  630. admin = 0,
  631. vote = false,
  632. hasLicense = false,
  633. candemote = false,
  634. category = "Sith",
  635. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  636. PlayerDeath = function(ply) end,
  637. })
  638.  
  639.  
  640.  
  641. TEAM_EMP = DarkRP.createJob("Emperor Palpatine", {
  642. color = Color(150, 20, 20, 255),
  643. model = {
  644. "models/player/emperor_palpatine.mdl"
  645. },
  646. description = [[You are Emperor Palpatine you can control anything you want.]],
  647. weapons = {"forcechoke", "weapon_lightsaber"},
  648. command = "Emperor Palpatine",
  649. max = 1,
  650. salary = 1000000,
  651. admin = 0,
  652. vote = false,
  653. hasLicense = false,
  654. candemote = false,
  655. category = "Sith",
  656. PlayerSpawn = function(ply) ply:SetHealth(16000) ply:SetArmor(1) end,
  657. PlayerDeath = function(ply) end,
  658.  
  659. })
  660.  
  661. TEAM_INQUISITOR = DarkRP.createJob("Grand Inquisitor", {
  662. color = Color(150, 20, 20, 255),
  663. model = {
  664. "models/ethli/characters/inquisitorrebel/inquisitorrebel.mdl"
  665. },
  666. description = [[You are Emperor Palpatine you can control anything you want.]],
  667. weapons = {"forcechoke", "weapon_lightsaber"},
  668. command = "Grand INQUISITOR",
  669. max = 1,
  670. salary = 1000000,
  671. admin = 0,
  672. vote = false,
  673. hasLicense = false,
  674. candemote = false,
  675. category = "Sith",
  676. PlayerSpawn = function(ply) ply:SetHealth(8500) ply:SetArmor(1) end,
  677. PlayerDeath = function(ply) end,
  678. })
  679.  
  680. TEAM_GRANDINQUISITOR = DarkRP.createJob("Inquisitor", {
  681. color = Color(150, 20, 20, 255),
  682. model = {
  683. "models/player/sw/revan/revan.mdl",
  684. "models/player/grizzlerules/bluesith/bluesith.mdl",
  685. "models/player/grizzlerules/purplesith/purplesith.mdl",
  686. "models/player/grizzlerules/whitesith/whitesith.mdl",
  687. "models/characters/darthmarr/darthmarrblack.mdl"
  688.  
  689. },
  690. description = [[You are Darth vader you can control any of the 501st.]],
  691. weapons = {"forcechoke", "weapon_lightsaber","weapon_forceheal","weapon_force_fists"},
  692. command = "Inquisitor",
  693. max = 0,
  694. salary = 15000,
  695. admin = 0,
  696. vote = false,
  697. hasLicense = false,
  698. candemote = false,
  699. category = "Sith",
  700. PlayerSpawn = function(ply) ply:SetHealth(9500) ply:SetArmor(1) end,
  701. PlayerDeath = function(ply) end,
  702. })
  703.  
  704. TEAM_SAOD = DarkRP.createJob("Staff on duty", {
  705. color = Color(20, 150, 20, 255),
  706. model = {
  707. "models/player/combine_super_soldier.mdl"
  708. },
  709. description = [[Do not be afk in this job!].]],
  710. weapons = {"weapon_physgun","keys", "pocket", "stunstick", "weaponchecker", "unarrest_stick","arrest_stick"},
  711. command = "Staff on duty",
  712. max = 0,
  713. salary = 100000000000000000,
  714. admin = 0,
  715. vote = false,
  716. hasLicense = false,
  717. candemote = false,
  718. category = "Staff on duty",
  719. PlayerSpawn = function(ply) ply:SetHealth(12550) ply:SetArmor(1) end,
  720. PlayerDeath = function(ply) end,
  721. })
  722.  
  723. TEAM_MEDICGENC = DarkRP.createJob("Medical Commander", {
  724. color = Color(20, 150, 20, 255),
  725. model = {
  726. "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"
  727. },
  728. description = [[Go around the ship and heal or support situations.]],
  729. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  730. command = "Medical Commander",
  731. max = 1,
  732. salary = 200000,
  733. admin = 0,
  734. vote = false,
  735. hasLicense = false,
  736. candemote = false,
  737. category = "Medic Troopers",
  738. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  739. PlayerDeath = function(ply) end,
  740. })
  741.  
  742. TEAM_MEDICGENO = DarkRP.createJob("Medical officer", {
  743. color = Color(20, 150, 20, 255),
  744. model = {
  745. "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"
  746. },
  747. description = [[Go around the ship and heal or support situations.]],
  748. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  749. command = "Medical officer",
  750. max = 7,
  751. salary = 100000,
  752. admin = 0,
  753. vote = false,
  754. hasLicense = false,
  755. candemote = false,
  756. category = "Medic Troopers",
  757. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  758. PlayerDeath = function(ply) end,
  759.  
  760. })
  761.  
  762. TEAM_MEDICGENl = DarkRP.createJob("Medical Lieutenant", {
  763. color = Color(20, 150, 20, 255),
  764. model = {
  765. "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"
  766. },
  767. description = [[Go around the ship and heal or support situations.]],
  768. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  769. command = "Medical Lieutenant",
  770. max = 10,
  771. salary = 10000,
  772. admin = 0,
  773. vote = false,
  774. hasLicense = false,
  775. candemote = false,
  776. category = "Medic Troopers",
  777. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  778. PlayerDeath = function(ply) end,
  779. })
  780.  
  781.  
  782. TEAM_MEDICGENS = DarkRP.createJob("Medical Sergeant", {
  783. color = Color(20, 150, 20, 255),
  784. model = {
  785. "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"
  786. },
  787. description = [[Go around the ship and heal or support situations.]],
  788. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector"},
  789. command = "Medical Sergeant",
  790. max = 0,
  791. salary = 1500,
  792. admin = 0,
  793. vote = false,
  794. hasLicense = false,
  795. candemote = false,
  796. category = "Medic Troopers",
  797. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  798. PlayerDeath = function(ply) end,
  799.  
  800. })
  801.  
  802.  
  803. TEAM_MEDICGENT = DarkRP.createJob("Medical Trooper", {
  804. color = Color(20, 150, 20, 255),
  805. model = {
  806. "models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"
  807. },
  808. description = [[Go around the ship and heal or support situations.]],
  809. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector"},
  810. command = "Medical Trooper",
  811. max = 0,
  812. salary = 500,
  813. admin = 0,
  814. vote = false,
  815. hasLicense = false,
  816. candemote = false,
  817. category = "Medic Troopers",
  818. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  819. PlayerDeath = function(ply) end,
  820.  
  821.  
  822.  
  823.  
  824. })
  825.  
  826. TEAM_SHOCKTROOPERC = DarkRP.createJob("Shock Commander", {
  827. color = Color(187, 0, 0, 255),
  828. model = {
  829. "models/player/sini/sc_commander_sini.mdl"
  830. },
  831. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  832. weapons = {"stunstick","weapon_752bf3_dh17", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  833. command = "Shock Commander",
  834. max = 1,
  835. salary = 200000,
  836. admin = 0,
  837. vote = false,
  838. hasLicense = false,
  839. candemote = false,
  840. category = "Shock Troopers",
  841. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  842. PlayerDeath = function(ply) end,
  843. })
  844.  
  845. TEAM_SHOCKTROOPERO = DarkRP.createJob("Shock officer", {
  846. color = Color(187, 0, 0, 255),
  847. model = {
  848. "models/player/sini/sc_exo_sini.mdl"
  849. },
  850. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  851. weapons = {"stunstick","weapon_752bf3_dh17", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  852. command = "Shock officer",
  853. max = 7,
  854. salary = 100000,
  855. admin = 0,
  856. vote = false,
  857. hasLicense = false,
  858. candemote = false,
  859. category = "Shock Troopers",
  860. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  861. PlayerDeath = function(ply) end,
  862.  
  863. })
  864.  
  865. TEAM_SHOCKTROOPERL = DarkRP.createJob("Shock Lieutenant", {
  866. color = Color(187, 0, 0, 255),
  867. model = {
  868. "models/player/sini/sc_lt_sini.mdl"
  869. },
  870. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  871. weapons = {"stunstick","weapon_752bf3_dh17", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  872. command = "Shock Lieutenant",
  873. max = 10,
  874. salary = 10000,
  875. admin = 0,
  876. vote = false,
  877. hasLicense = false,
  878. candemote = false,
  879. category = "Shock Troopers",
  880. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  881. PlayerDeath = function(ply) end,
  882. })
  883.  
  884.  
  885. TEAM_SHOCKTROOPERS = DarkRP.createJob("Shock Sergeant", {
  886. color = Color(187, 0, 0, 255),
  887. model = {
  888. "models/player/sini/sc_sgt_sini.mdl"
  889. },
  890. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  891. weapons = {"stunstick", "tfa_e11_extended","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  892. command = "Shock Sergeant",
  893. max = 0,
  894. salary = 1500,
  895. admin = 0,
  896. vote = false,
  897. hasLicense = false,
  898. candemote = false,
  899. category = "Shock Troopers",
  900. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  901. PlayerDeath = function(ply) end,
  902.  
  903. })
  904.  
  905.  
  906. TEAM_SHOCKTROOPERT = DarkRP.createJob("Shock Trooper", {
  907. color = Color(187, 0, 0, 255),
  908. model = {
  909. "models/player/sini/sc_stormtrooper_sini.mdl"
  910. },
  911. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  912. weapons = {"stunstick","tfa_e11_extended","weapon_752bf3_t21", "unarrest_stick","arrest_stick"},
  913. command = "Shock Trooper",
  914. max = 0,
  915. salary = 500,
  916. admin = 0,
  917. vote = false,
  918. hasLicense = false,
  919. candemote = false,
  920. category = "Shock Troopers",
  921. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  922. PlayerDeath = function(ply) end,
  923.  
  924.  
  925. })
  926.  
  927.  
  928.  
  929. TEAM_104THC = DarkRP.createJob("104th Commander", {
  930. color = Color(80, 45, 0, 255),
  931. model = {
  932. "models/gonzo/wpscdr/wpscdr.mdl"
  933. },
  934. description = [[You are a 104th trooper you must protect your brothers.]],
  935. weapons = {"tfa_sw_dual_dl44","tfa_dlt19x", "tfa_dl44","tfa_e11_extended"},
  936. command = "104th Commander",
  937. max = 1,
  938. salary = 200000,
  939. admin = 0,
  940. vote = false,
  941. hasLicense = false,
  942. candemote = false,
  943. category = "104th Troopers",
  944. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  945. PlayerDeath = function(ply) end,
  946. })
  947.  
  948. TEAM_104THO = DarkRP.createJob("104th officer", {
  949. color = Color(80, 45, 0, 255),
  950. model = {
  951. "models/gonzo/wpsmjr/wpsmjr.mdl"
  952. },
  953. description = [[You are a 104th trooper you must protect your brothers.]],
  954. weapons = {"tfa_sw_dual_dl44","tfa_dlt19x", "tfa_dl44","tfa_e11_extended"},
  955. command = "104th officer",
  956. max = 7,
  957. salary = 100000,
  958. admin = 0,
  959. vote = false,
  960. hasLicense = false,
  961. candemote = false,
  962. category = "104th Troopers",
  963. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  964. PlayerDeath = function(ply) end,
  965.  
  966. })
  967.  
  968. TEAM_104THL = DarkRP.createJob("104th Lieutenant", {
  969. color = Color(80, 45, 0, 255),
  970. model = {
  971. "models/gonzo/wpssgt/wpssgt.mdl"
  972. },
  973. description = [[You are a 104th trooper you must protect your brothers.]],
  974. weapons = {"weapon_752_dc17m_br","tfa_dlt19x", "tfa_dl44","tfa_e11_extended"},
  975. command = "104th Lieutenant",
  976. max = 10,
  977. salary = 10000,
  978. admin = 0,
  979. vote = false,
  980. hasLicense = false,
  981. candemote = false,
  982. category = "104th Troopers",
  983. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  984. PlayerDeath = function(ply) end,
  985. })
  986.  
  987.  
  988. TEAM_104THS = DarkRP.createJob("104th Sergeant", {
  989. color = Color(80, 45, 0, 255),
  990. model = {
  991. "models/gonzo/wpssgt/wpssgt.mdl"
  992. },
  993. description = [[You are a 104th trooper you must protect your brothers.]],
  994. weapons = {"weapon_752_dc17m_br","weapon_752bf3_e11", "tfa_dl44","tfa_e11_extended"},
  995. command = "104th Sergeant",
  996. max = 0,
  997. salary = 1500,
  998. admin = 0,
  999. vote = false,
  1000. hasLicense = false,
  1001. candemote = false,
  1002. category = "104th Troopers",
  1003. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1004. PlayerDeath = function(ply) end,
  1005.  
  1006. })
  1007.  
  1008.  
  1009. TEAM_104THT = DarkRP.createJob("104th Trooper", {
  1010. color = Color(80, 45, 0, 255),
  1011. model = {
  1012. "models/gonzo/wpstrp/wpstrp.mdl"
  1013. },
  1014. description = [[You are a 104th trooper you must protect your brothers.]],
  1015. weapons = {"weapon_752_dc17m_br","weapon_752bf3_e11", "tfa_dl44","tfa_e11_extended"},
  1016. command = "104th Trooper",
  1017. max = 0,
  1018. salary = 500,
  1019. admin = 0,
  1020. vote = false,
  1021. hasLicense = false,
  1022. candemote = false,
  1023. category = "104th Troopers",
  1024. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1025. PlayerDeath = function(ply) end,
  1026. })
  1027.  
  1028.  
  1029.  
  1030. TEAM_NOVATROOPERC = DarkRP.createJob("Nova Commander", {
  1031. color = Color(20, 150, 20, 255),
  1032. model = {
  1033. "models/player/banks/egnovacom/egnovacom.mdl"
  1034. },
  1035. description = [[You are a Nova trooper follow your brothers.]],
  1036. weapons = {"tfa_westar_green","weapon_jew_dc17m_at", "tfa_kotor_br_3"},
  1037. command = "Nova Commander",
  1038. max = 1,
  1039. salary = 200000,
  1040. admin = 0,
  1041. vote = false,
  1042. hasLicense = false,
  1043. candemote = false,
  1044. category = "Nova Troopers",
  1045. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  1046. PlayerDeath = function(ply) end,
  1047. })
  1048.  
  1049. TEAM_NOVATROOPERO = DarkRP.createJob("Nova officer", {
  1050. color = Color(20, 150, 20, 255),
  1051. model = {
  1052. "models/player/banks/egnovalt/egnovalt.mdl"
  1053. },
  1054. description = [[You are a Nova trooper follow your brothers.]],
  1055. weapons = {"tfa_westar_green","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1056. command = "Nova officer",
  1057. max = 7,
  1058. salary = 100000,
  1059. admin = 0,
  1060. vote = false,
  1061. hasLicense = false,
  1062. candemote = false,
  1063. category = "Nova Troopers",
  1064. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  1065. PlayerDeath = function(ply) end,
  1066.  
  1067. })
  1068.  
  1069. TEAM_NOVATROOPERL = DarkRP.createJob("Nova Lieutenant", {
  1070. color = Color(20, 150, 20, 255),
  1071. model = {
  1072. "models/player/banks/egnovasgt/egnovasgt.mdl"
  1073. },
  1074. description = [[You are a Nova trooper follow your brothers.]],
  1075. weapons = {"tfa_westar_green","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1076. command = "Nova Lieutenant",
  1077. max = 10,
  1078. salary = 10000,
  1079. admin = 0,
  1080. vote = false,
  1081. hasLicense = false,
  1082. candemote = false,
  1083. category = "Nova Troopers",
  1084. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  1085. PlayerDeath = function(ply) end,
  1086. })
  1087.  
  1088.  
  1089. TEAM_NOVATROOPERS = DarkRP.createJob("Nova Sergeant", {
  1090. color = Color(20, 150, 20, 255),
  1091. model = {
  1092. "models/player/hydro/novatrooper_sentinel/novatrooper_sentinel.mdl"
  1093. },
  1094. description = [[You are a Nova trooper follow your brothers.]],
  1095. weapons = {"weapon_752bf3_e11","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1096. command = "Nova Sergeant",
  1097. max = 0,
  1098. salary = 1500,
  1099. admin = 0,
  1100. vote = false,
  1101. hasLicense = false,
  1102. candemote = false,
  1103. category = "Nova Troopers",
  1104. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1105. PlayerDeath = function(ply) end,
  1106.  
  1107. })
  1108.  
  1109.  
  1110. TEAM_NOVATROOPERT = DarkRP.createJob("Nova Trooper", {
  1111. color = Color(20, 150, 20, 255),
  1112. model = {
  1113. "models/player/hydro/novatrooper/novatrooper.mdl"
  1114. },
  1115. description = [[You are a Nova trooper follow your brothers.]],
  1116. weapons = {"weapon_752bf3_e11","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1117. command = "Nova Trooper",
  1118. max = 0,
  1119. salary = 500,
  1120. admin = 0,
  1121. vote = false,
  1122. hasLicense = false,
  1123. candemote = false,
  1124. category = "Nova Troopers",
  1125. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1126. PlayerDeath = function(ply) end,
  1127. })
  1128.  
  1129.  
  1130.  
  1131.  
  1132.  
  1133.  
  1134. TEAM_212THTROOPERC = DarkRP.createJob("212th Commander", {
  1135. color = Color(255, 140, 0, 255),
  1136. model = {
  1137. "models/player/sini/212th_commander_sini.mdl"
  1138. },
  1139. description = [[You are a Nova trooper follow your brothers.]],
  1140. weapons = {"tfa_t21_extended", "dc17m_shotgun","tfa_dc17chrome","realistic_hook"},
  1141. command = "212th Commander",
  1142. max = 1,
  1143. salary = 200000,
  1144. admin = 0,
  1145. vote = false,
  1146. hasLicense = false,
  1147. candemote = false,
  1148. category = "212th Troopers",
  1149. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  1150. PlayerDeath = function(ply) end,
  1151. })
  1152.  
  1153. TEAM_212THTROOPERO = DarkRP.createJob("212th officer", {
  1154. color = Color(255, 140, 0, 255),
  1155. model = {
  1156. "models/player/sini/212th_exo_sini.mdl"
  1157. },
  1158. description = [[You are a Nova trooper follow your brothers.]],
  1159. weapons = {"tfa_t21_extended","tfa_dc17chrome","realistic_hook"},
  1160. command = "212th officer",
  1161. max = 7,
  1162. salary = 100000,
  1163. admin = 0,
  1164. vote = false,
  1165. hasLicense = false,
  1166. candemote = false,
  1167. category = "212th Troopers",
  1168. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  1169. PlayerDeath = function(ply) end,
  1170.  
  1171. })
  1172.  
  1173. TEAM_212THTROOPERL = DarkRP.createJob("212th Lieutenant", {
  1174. color = Color(255, 140, 0, 255),
  1175. model = {
  1176. "models/player/sini/212th_lt_sini.mdl"
  1177. },
  1178. description = [[You are a Nova trooper follow your brothers.]],
  1179. weapons = {"tfa_t21_extended","tfa_dc17chrome"},
  1180. command = "212th Lieutenant",
  1181. max = 10,
  1182. salary = 10000,
  1183. admin = 0,
  1184. vote = false,
  1185. hasLicense = false,
  1186. candemote = false,
  1187. category = "212th Troopers",
  1188. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  1189. PlayerDeath = function(ply) end,
  1190. })
  1191.  
  1192.  
  1193. TEAM_212THTROOPERS = DarkRP.createJob("212th Sergeant", {
  1194. color = Color(255, 140, 0, 255),
  1195. model = {
  1196. "models/player/sini/212th_sgt_sini.mdl"
  1197. },
  1198. description = [[You are a Nova trooper follow your brothers.]],
  1199. weapons = {"tfa_t21_extended","weapon_752bf3_e11","realistic_hook"},
  1200. command = "212th Sergeant",
  1201. max = 0,
  1202. salary = 1500,
  1203. admin = 0,
  1204. vote = false,
  1205. hasLicense = false,
  1206. candemote = false,
  1207. category = "212th Troopers",
  1208. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1209. PlayerDeath = function(ply) end,
  1210.  
  1211. })
  1212.  
  1213.  
  1214. TEAM_212THTROOPERT = DarkRP.createJob("212th Trooper", {
  1215. color = Color(255, 140, 0, 255),
  1216. model = {
  1217. "models/player/sini/212th_stormtrooper_sini.mdl"
  1218. },
  1219. description = [[You are a Nova trooper follow your brothers.]],
  1220. weapons = {"tfa_t21_extended","weapon_752bf3_e11","realistic_hook"},
  1221. command = "212th Trooper",
  1222. max = 0,
  1223. salary = 500,
  1224. admin = 0,
  1225. vote = false,
  1226. hasLicense = false,
  1227. candemote = false,
  1228. category = "212th Troopers",
  1229. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1230. PlayerDeath = function(ply) end,
  1231.  
  1232. })
  1233.  
  1234. TEAM_FLEETNG = DarkRP.createJob("Naval Guard", {
  1235. color = Color(47, 79, 79, 255),
  1236. model = {
  1237. "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl"
  1238. },
  1239. description = [[You are a fleet memeber make sure the ship is safe.]],
  1240. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_jew_iondisruptor","stungun"},
  1241. command = "Naval Guard",
  1242. max = 4,
  1243. salary = 10000,
  1244. admin = 0,
  1245. vote = false,
  1246. hasLicense = false,
  1247. candemote = false,
  1248. category = "Fleet",
  1249. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(50) end,
  1250. PlayerDeath = function(ply) end,
  1251.  
  1252.  
  1253. })
  1254.  
  1255.  
  1256. TEAM_FLEETNGJR = DarkRP.createJob("Naval Guard JR", {
  1257. color = Color(47, 79, 79, 255),
  1258. model = {
  1259. "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl"
  1260. },
  1261. description = [[You are a fleet memeber make sure the ship is safe.]],
  1262. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_jew_iondisruptor","stungun"},
  1263. command = "Naval Guard JR",
  1264. max = 4,
  1265. salary = 12000,
  1266. admin = 0,
  1267. vote = false,
  1268. hasLicense = false,
  1269. candemote = false,
  1270. category = "Fleet",
  1271. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(50) end,
  1272. PlayerDeath = function(ply) end,
  1273.  
  1274.  
  1275. })
  1276.  
  1277. TEAM_FLEETL = DarkRP.createJob("Lieutenant", {
  1278. color = Color(80, 45, 0, 255),
  1279. model = {
  1280. "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl"
  1281. },
  1282. description = [[You are a fleet memeber make sure the ship is safe.]],
  1283. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1284. command = "Lieutenant",
  1285. max = 0,
  1286. salary = 100000,
  1287. admin = 0,
  1288. vote = false,
  1289. hasLicense = false,
  1290. candemote = false,
  1291. category = "Fleet",
  1292. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1293. PlayerDeath = function(ply) end,
  1294. })
  1295.  
  1296. TEAM_FLEETRA = DarkRP.createJob("Rear Admiral", {
  1297. color = Color(80, 45, 0, 255),
  1298. model = {
  1299. "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"
  1300. },
  1301. description = [[You are a fleet memeber make sure the ship is safe.]],
  1302. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1303. command = "Rear Admiral",
  1304. max = 0,
  1305. salary = 1000000,
  1306. admin = 0,
  1307. vote = false,
  1308. hasLicense = false,
  1309. candemote = false,
  1310. category = "Fleet",
  1311. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1312. PlayerDeath = function(ply) end,
  1313.  
  1314. })
  1315.  
  1316. TEAM_FLEETVA = DarkRP.createJob("Vice Admiral", {
  1317. color = Color(80, 45, 0, 255),
  1318. model = {
  1319. "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"
  1320. },
  1321. description = [[You are a fleet memeber make sure the ship is safe.]],
  1322. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1323. command = "Vice Admiral",
  1324. max = 0,
  1325. salary = 10000000,
  1326. admin = 0,
  1327. vote = false,
  1328. hasLicense = false,
  1329. candemote = false,
  1330. category = "Fleet",
  1331. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1332. PlayerDeath = function(ply) end,
  1333. })
  1334.  
  1335.  
  1336. TEAM_FLEETA = DarkRP.createJob("Admiral", {
  1337. color = Color(80, 45, 0, 255),
  1338. model = {
  1339. "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl"
  1340. },
  1341. description = [[You are a fleet memeber make sure the ship is safe.]],
  1342. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1343. command = "Admiral",
  1344. max = 0,
  1345. salary = 10000000,
  1346. admin = 0,
  1347. vote = false,
  1348. hasLicense = false,
  1349. candemote = false,
  1350. category = "Fleet",
  1351. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1352. PlayerDeath = function(ply) end,
  1353.  
  1354. })
  1355.  
  1356.  
  1357. TEAM_FLEETFA = DarkRP.createJob("Fleet Admiral", {
  1358. color = Color(80, 45, 0, 255),
  1359. model = {
  1360. "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl"
  1361. },
  1362. description = [[You are a fleet memeber make sure the ship is safe.]],
  1363. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1364. command = "Fleet Admiral",
  1365. max = 0,
  1366. salary = 100000000,
  1367. admin = 0,
  1368. vote = false,
  1369. hasLicense = false,
  1370. candemote = false,
  1371. category = "Fleet",
  1372. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1373. PlayerDeath = function(ply) end,
  1374. })
  1375.  
  1376.  
  1377.  
  1378.  
  1379. TEAM_FLEETHA = DarkRP.createJob("High Admiral", {
  1380. color = Color(80, 45, 0, 255),
  1381. model = {
  1382. "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl"
  1383. },
  1384. description = [[You are a fleet memeber make sure the ship is safe.]],
  1385. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1386. command = "High Admiral",
  1387. max = 0,
  1388. salary = 1000000000,
  1389. admin = 0,
  1390. vote = false,
  1391. hasLicense = false,
  1392. candemote = false,
  1393. category = "Fleet",
  1394. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1395. PlayerDeath = function(ply) end,
  1396. })
  1397.  
  1398.  
  1399.  
  1400.  
  1401. TEAM_FLEETM = DarkRP.createJob("Moff", {
  1402. color = Color(80, 45, 0, 255),
  1403. model = {
  1404. "models/player/valley/tarkin.mdl"
  1405. },
  1406. description = [[You are a fleet memeber make sure the ship is safe.]],
  1407. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1408. command = "Moff",
  1409. max = 1,
  1410. salary = 10000000000,
  1411. admin = 0,
  1412. vote = false,
  1413. hasLicense = false,
  1414. candemote = false,
  1415. category = "Fleet",
  1416. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1417. PlayerDeath = function(ply) end,
  1418. })
  1419.  
  1420.  
  1421. TEAM_FLEETGM = DarkRP.createJob("Grand Moff", {
  1422. color = Color(80, 45, 0, 255),
  1423. model = {
  1424. "models/player/hydro/swbf_krennic/swbf_krennic.mdl"
  1425. },
  1426. description = [[You are a fleet memeber make sure the ship is safe.]],
  1427. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1428. command = "Grand Moff",
  1429. max = 1,
  1430. salary = 100000000000,
  1431. admin = 0,
  1432. vote = false,
  1433. hasLicense = false,
  1434. candemote = false,
  1435. category = "Fleet",
  1436. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1437. PlayerDeath = function(ply) end,
  1438. })
  1439.  
  1440.  
  1441. TEAM_FLEETGA = DarkRP.createJob("Grand Admiral", {
  1442. color = Color(80, 45, 0, 255),
  1443. model = {
  1444. "models/player/sono/swbf_thrawn.mdl"
  1445. },
  1446. description = [[You are a fleet memeber make sure the ship is safe].]],
  1447. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1448. command = "Grand Admiral",
  1449. max = 1,
  1450. salary = 100000000000,
  1451. admin = 0,
  1452. vote = false,
  1453. hasLicense = false,
  1454. candemote = false,
  1455. category = "Fleet",
  1456. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1457. PlayerDeath = function(ply) end,
  1458. })
  1459.  
  1460. TEAM_ISBO = DarkRP.createJob("ISB Officer", {
  1461. color = Color(47, 79, 79, 255),
  1462. model = {
  1463. "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"
  1464. },
  1465. description = [[You are a fleet memeber make sure the ship is safe.]],
  1466. weapons = {"stungun", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_752bf3_se14r","weapon_relbyv10"},
  1467. command = "ISB Officer",
  1468. max = 1,
  1469. salary = 50000,
  1470. admin = 0,
  1471. vote = false,
  1472. hasLicense = false,
  1473. candemote = false,
  1474. category = "ISB",
  1475. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1476. PlayerDeath = function(ply) end,
  1477. })
  1478.  
  1479. TEAM_ISBA = DarkRP.createJob("ISB Lieutenant", {
  1480. color = Color(47, 79, 79, 255),
  1481. model = {
  1482. "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl"
  1483. },
  1484. description = [[You are a fleet memeber make sure the ship is safe].]],
  1485. weapons = {"stungun", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_752bf3_se14r","weapon_relbyv10"},
  1486. command = "ISB Lieutenant",
  1487. max = 4,
  1488. salary = 500000,
  1489. admin = 0,
  1490. vote = false,
  1491. hasLicense = false,
  1492. candemote = false,
  1493. category = "ISB",
  1494. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1495. PlayerDeath = function(ply) end,
  1496. })
  1497.  
  1498. TEAM_SK = DarkRP.createJob("Starkiller", {
  1499. color = Color(150, 20, 20, 255),
  1500. model = {
  1501. "models/nate159/req/swtfu/tie_flightsuit.mdl",
  1502. "models/nate159/req/swtfu/malecdeathstar.mdl"
  1503. },
  1504. description = [[ Your Apprentice Of Vader And Wrath Of Emperor Palpatine]],
  1505. weapons = {"weapon_lightsaber"},
  1506. command = "sk",
  1507. max = 1,
  1508. salary = 15000,
  1509. admin = 0,
  1510. vote = false,
  1511. hasLicense = false,
  1512. candemote = false,
  1513. CustomCheckFailMsg = "You are not whitelisted to this job.",
  1514. category = "Sith",
  1515. PlayerSpawn = function(ply) ply:SetHealth(4500) ply:SetArmor(0) end,
  1516. PlayerDeath = function(ply) end,
  1517. })
  1518.  
  1519. TEAM_TT = DarkRP.createJob("Terror Trooper", {
  1520. color = Color(47, 79, 79, 255),
  1521. model = {
  1522. "models/player/starwars/mistersweetroll/terrortrooper.mdl"
  1523. },
  1524. description = [[ Take a Orders From 2LT+ And Give Elite Troopers The Buisness]],
  1525. weapons = {"tfa_relby", "weapon_752bf3_dh17", "tfa_wsp_2"},
  1526. command = "tt",
  1527. max = 4,
  1528. salary = 5000,
  1529. admin = 0,
  1530. vote = false,
  1531. hasLicense = false,
  1532. candemote = false,
  1533. CustomCheckFailMsg = "You are not whitelisted to this job.",
  1534. category = "Vip",
  1535. PlayerSpawn = function(ply) ply:SetHealth(650) ply:SetArmor(0) end,
  1536. PlayerDeath = function(ply) end,
  1537. })
  1538.  
  1539. --[[---------------------------------------------------------------------------
  1540. Define which team joining players spawn into and what team you change to if demoted
  1541. ---------------------------------------------------------------------------]]
  1542. GAMEMODE.DefaultTeam = TEAM_RECRUIT
  1543.  
  1544.  
  1545. --[[---------------------------------------------------------------------------
  1546. Define which teams belong to civil protection
  1547. Civil protection can set warrants, make people wanted and do some other police related things
  1548. ---------------------------------------------------------------------------]]
  1549. GAMEMODE.CivilProtection = {
  1550. [TEAM_POLICE] = true,
  1551. [TEAM_CHIEF] = true,
  1552. [TEAM_MAYOR] = true,
  1553. }
  1554.  
  1555. --[[---------------------------------------------------------------------------
  1556. Jobs that are hitmen (enables the hitman menu)
  1557. ---------------------------------------------------------------------------]]
  1558. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement