Advertisement
Guest User

star wars jobs from looap update

a guest
Jun 25th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 51.55 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(20, 150, 20, 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_ee3","tfa_relby","tfa_sw_dual_de10"},
  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(20, 150, 20, 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_ee3","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(20, 150, 20, 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_ee3","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(20, 150, 20, 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(20, 150, 20, 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. "models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl",
  367. "models/gonzo/talonclan/jagre/jagre.mdl"
  368.  
  369. },
  370. description = [[You are a Imperial Assassin Droid Hunt for the Wanted and Dont Let Shock See you.]],
  371. weapons = {"weapon_752_ihr", "weapon_swrc_det", "weapon_chatterbox_minigun","dc17m_shotgun","weapon_fists","sent_jetpack"},
  372. command = "Regular Bounty hunter",
  373. max = 0,
  374. salary = 100000,
  375. admin = 0,
  376. vote = false,
  377. hasLicense = false,
  378. candemote = false,
  379. category = "Custom Bounty hunter",
  380. PlayerSpawn = function(ply) ply:SetHealth(6500) ply:SetArmor(300) end,
  381. PlayerDeath = function(ply) end,
  382. })
  383.  
  384. TEAM_MOB = DarkRP.createJob("Bounty Hunter Bones", {
  385. color = Color(20, 150, 20, 255),
  386. model = {
  387. "models/gonzo/mrbones/mrbones.mdl"
  388. },
  389. description = [[You are Bounty hunter you do not follow the rules dont let shock see you]],
  390. weapons = { "tfa_wsp_1"," weapon_chatterbox_minigun","weapon_752bf3_rt97c","weapon_jew_det","tfa_sw_westardual","weapon_fists","sent_jetpack"},
  391. command = "Bounty hunter Bones",
  392. max = 1,
  393. salary = 100000,
  394. admin = 0,
  395. vote = false,
  396. hasLicense = false,
  397. candemote = false,
  398. category = "Custom Bounty hunter",
  399. PlayerSpawn = function(ply) ply:SetHealth(7500) ply:SetArmor(100) end,
  400. PlayerDeath = function(ply) end,
  401.  
  402. })
  403.  
  404.  
  405. TEAM_MOB = DarkRP.createJob("Bounty Hunter Bobba", {
  406. color = Color(20, 150, 20, 255),
  407. model = {
  408. "models/nate159/swbf/hero/hero_gunslinger_bobafett.mdl"
  409. },
  410. description = [[You are Bounty hunter you do not follow the rules dont let shock see you.]],
  411. weapons = { "weapon_752bf3_a280","weapon_752bf3_se14c","zeus_thermaldet","tfa_sw_westardual","weapon_fists","sent_jetpack"},
  412. command = "Bounty Hunter Bobba",
  413. max = 1,
  414. salary = 100000,
  415. admin = 0,
  416. vote = false,
  417. hasLicense = false,
  418. candemote = false,
  419. category = "Custom Bounty hunter",
  420. PlayerSpawn = function(ply) ply:SetHealth(7500) ply:SetArmor(1) end,
  421. PlayerDeath = function(ply) end,
  422. })
  423.  
  424. TEAM_REBELT = DarkRP.createJob("Rebel Trooper", {
  425. color = Color(20, 150, 20, 255),
  426. model = {
  427. "models/player/sgg/starwars/rebels/r_trooper/male_01.mdl"
  428. },
  429. description = [[Do not use this unless your in a event.]],
  430. weapons = { "weapon_752bf3_a280","weapon_fists"},
  431. command = "Rebel Trooper",
  432. max = 0,
  433. salary = 0,
  434. admin = 0,
  435. vote = false,
  436. hasLicense = false,
  437. candemote = false,
  438. category = "Vip",
  439. PlayerSpawn = function(ply) ply:SetHealth(5000) ply:SetArmor(1) end,
  440. PlayerDeath = function(ply) end,
  441. })
  442. TEAM_REBELT = DarkRP.createJob("Rebel Commander ", {
  443. color = Color(20, 150, 20, 255),
  444. model = {
  445. "models/player/sgg/starwars/rebels/r_trooper/male_04.mdl"
  446. },
  447. description = [[Do not use this unless your in a event.]],
  448. weapons = { "weapon_752bf3_a280","weapon_fists"},
  449. command = "Rebel Commander",
  450. max = 0,
  451. salary = 0,
  452. admin = 0,
  453. vote = false,
  454. hasLicense = false,
  455. candemote = false,
  456. category = "Vip",
  457. PlayerSpawn = function(ply) ply:SetHealth(9000) ply:SetArmor(1) end,
  458. PlayerDeath = function(ply) end,
  459. })
  460.  
  461. TEAM_REBELJ = DarkRP.createJob("Jedi ", {
  462. color = Color(20, 150, 20, 255),
  463. model = {
  464. "models/player/grady/starwars/duros_padawan.mdl"
  465. },
  466. description = [[Do not use this unless your in a event.]],
  467. weapons = { "weapon_lightsaber","weapon_fists"},
  468. command = "Jedi ",
  469. max = 0,
  470. salary = 0,
  471. admin = 0,
  472. vote = false,
  473. hasLicense = false,
  474. candemote = false,
  475. category = "Vip",
  476. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  477. PlayerDeath = function(ply) end,
  478. })
  479.  
  480. TEAM_REBELJ = DarkRP.createJob("Jedi Master", {
  481. color = Color(20, 150, 20, 255),
  482. model = {
  483. "models/player/grady/starwars/keldor_master.mdl"
  484. },
  485. description = [[Do not use this unless your in a event.]],
  486. weapons = { "weapon_lightsaber","weapon_fists"},
  487. command = "Jedi Master",
  488. max = 0,
  489. salary = 0,
  490. admin = 0,
  491. vote = false,
  492. hasLicense = false,
  493. candemote = false,
  494. category = "Vip",
  495. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  496. PlayerDeath = function(ply) end,
  497. })
  498.  
  499. TEAM_IMPERILAWORKER = DarkRP.createJob("Imperial Worker", {
  500. color = Color(20, 150, 20, 255),
  501. model = {
  502. "models/player/impworker.mdl"
  503.  
  504. },
  505. description = [[Build new weapons for the empire .]],
  506. weapons = { "weapon_physgun","gmod_tool","weapon_fists"},
  507. command = "IMPERIAL",
  508. max = 4,
  509. salary = 10000,
  510. admin = 0,
  511. vote = false,
  512. hasLicense = false,
  513. candemote = false,
  514. category = "Vip",
  515. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  516. PlayerDeath = function(ply) end,
  517. })
  518.  
  519. TEAM_SECDROID = DarkRP.createJob("Security Droid", {
  520. color = Color(20, 150, 20, 255),
  521. model = {
  522. "models/player/valley/k2so.mdl"
  523. },
  524. description = [[Keep shock safe and naval.]],
  525. weapons = { "weapon_752bf3_dlt19","weapon_fists"},
  526. command = "Security droid",
  527. max = 4,
  528. salary = 10000,
  529. admin = 0,
  530. vote = false,
  531. hasLicense = false,
  532. candemote = false,
  533. category = "Vip",
  534. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  535. PlayerDeath = function(ply) end,
  536. })
  537.  
  538. TEAM_TIEPILOT = DarkRP.createJob("Tie Pilot", {
  539. color = Color(20, 150, 20, 255),
  540. model = {
  541. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_02_r/pilot_imperial_orig_02_r.mdl",
  542. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_04_b/pilot_imperial_orig_04_b.mdl",
  543. "models/player/markus/swbf2/characters/hero/imperial_pilots/pilot_imperial_orig_04_b/pilot_imperial_orig_04_b.mdl"
  544. },
  545. description = [[Ask staff to spawn you a ship.]],
  546. weapons = { "weapon_752bf3_dlt19","weapon_fists"},
  547. command = "Tie Pilot",
  548. max = 4,
  549. salary = 10000,
  550. admin = 0,
  551. vote = false,
  552. hasLicense = false,
  553. candemote = false,
  554. category = "Vip",
  555. PlayerSpawn = function(ply) ply:SetHealth(350) ply:SetArmor(1) end,
  556. PlayerDeath = function(ply) end,
  557. })
  558.  
  559.  
  560. TEAM_BLACKGUARD = DarkRP.createJob("Shadow Guard", {
  561. color = Color(20, 150, 20, 255),
  562. model = {
  563. "models/player/ven/shadowguard.mdl"
  564. },
  565. description = [[You are A Shadow Guard you guard Darth Vader/fleet.]],
  566. weapons = { "weapon_lightsaber"},
  567. command = "Shadow Guard",
  568. max = 2,
  569. salary = 10000,
  570. admin = 0,
  571. vote = false,
  572. hasLicense = false,
  573. candemote = false,
  574. category = "Royal Guards ",
  575. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  576. PlayerDeath = function(ply) end,
  577.  
  578. })
  579.  
  580. TEAM_ROYALGUARD = DarkRP.createJob("Royal Guard", {
  581. color = Color(187, 0, 0, 255),
  582. model = {
  583. "models/player/ven/guard.mdl",
  584. "models/player/ven/carnor.mdl"
  585. },
  586. description = [[You are Royal Guard you guard Emperor Palpatine.]],
  587. weapons = { "weapon_lightsaber", "tfa_kotor_bp_5"},
  588. command = "Royal Guard",
  589. max = 4,
  590. salary = 10000,
  591. admin = 0,
  592. vote = false,
  593. hasLicense = false,
  594. candemote = false,
  595. category = "Royal Guards ",
  596. PlayerSpawn = function(ply) ply:SetHealth(525) ply:SetArmor(1) end,
  597. PlayerDeath = function(ply) end,
  598.  
  599.  
  600.  
  601. })
  602.  
  603. TEAM_ROYALGUARD = DarkRP.createJob("Saber Guards", {
  604. color = Color(20, 150, 20, 255),
  605. model = {
  606. "models/banks/zakuulguardian/zakuulguardian.mdl"
  607. },
  608. description = [[Just Do Your Job.]],
  609. weapons = { "weapon_lightsaber"},
  610. command = "Saber Guard",
  611. max = 2,
  612. salary = 10000,
  613. admin = 0,
  614. vote = false,
  615. hasLicense = false,
  616. candemote = false,
  617. category = "Sith",
  618. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  619. PlayerDeath = function(ply) end,
  620.  
  621. })
  622.  
  623. TEAM_DARTHVADER = DarkRP.createJob("Darth Vader", {
  624. color = Color(187, 0, 0, 255),
  625. model = {
  626. "models/nate159/swbf/hero/player/hero_sith_vader_player.mdl"
  627. },
  628. description = [[You are Darth vader you can control any of the 501st.]],
  629. weapons = {"forcechoke", "weapon_lightsaber"},
  630. command = "Darth Vader",
  631. max = 1,
  632. salary = 200000000,
  633. admin = 0,
  634. vote = false,
  635. hasLicense = false,
  636. candemote = false,
  637. category = "Sith",
  638. PlayerSpawn = function(ply) ply:SetHealth(10000) ply:SetArmor(1) end,
  639. PlayerDeath = function(ply) end,
  640. })
  641.  
  642.  
  643.  
  644. TEAM_EMP = DarkRP.createJob("Emperor Palpatine", {
  645. color = Color(187, 0, 0, 255),
  646. model = {
  647. "models/player/emperor_palpatine.mdl"
  648. },
  649. description = [[You are Emperor Palpatine you can control anything you want.]],
  650. weapons = {"forcechoke", "weapon_lightsaber"},
  651. command = "Emperor Palpatine",
  652. max = 1,
  653. salary = 1000000,
  654. admin = 0,
  655. vote = false,
  656. hasLicense = false,
  657. candemote = false,
  658. category = "Sith",
  659. PlayerSpawn = function(ply) ply:SetHealth(16000) ply:SetArmor(1) end,
  660. PlayerDeath = function(ply) end,
  661.  
  662. })
  663.  
  664. TEAM_INQUISITOR = DarkRP.createJob("Grand Inquisitor", {
  665. color = Color(187, 0, 0, 255),
  666. model = {
  667. "models/ethli/characters/inquisitorrebel/inquisitorrebel.mdl"
  668. },
  669. description = [[You are Emperor Palpatine you can control anything you want.]],
  670. weapons = {"forcechoke", "weapon_lightsaber"},
  671. command = "Grand INQUISITOR",
  672. max = 1,
  673. salary = 1000000,
  674. admin = 0,
  675. vote = false,
  676. hasLicense = false,
  677. candemote = false,
  678. category = "Sith",
  679. PlayerSpawn = function(ply) ply:SetHealth(8500) ply:SetArmor(1) end,
  680. PlayerDeath = function(ply) end,
  681. })
  682.  
  683. TEAM_GRANDINQUISITOR = DarkRP.createJob("Inquisitor", {
  684. color = Color(20, 150, 20, 255),
  685. model = {
  686. "models/player/sw/revan/revan.mdl",
  687. "models/player/grizzlerules/bluesith/bluesith.mdl",
  688. "models/player/grizzlerules/purplesith/purplesith.mdl",
  689. "models/player/grizzlerules/whitesith/whitesith.mdl",
  690. "models/characters/darthmarr/darthmarrblack.mdl"
  691.  
  692. },
  693. description = [[You are Darth vader you can control any of the 501st.]],
  694. weapons = {"forcechoke", "weapon_lightsaber","weapon_forceheal","weapon_force_fists"},
  695. command = "Inquisitor",
  696. max = 0,
  697. salary = 15000,
  698. admin = 0,
  699. vote = false,
  700. hasLicense = false,
  701. candemote = false,
  702. category = "Sith",
  703. PlayerSpawn = function(ply) ply:SetHealth(9500) ply:SetArmor(1) end,
  704. PlayerDeath = function(ply) end,
  705. })
  706.  
  707. TEAM_SAOD = DarkRP.createJob("Staff on duty", {
  708. color = Color(20, 150, 20, 255),
  709. model = {
  710. "models/player/combine_super_soldier.mdl"
  711. },
  712. description = [[Do not be afk in this job!].]],
  713. weapons = {"weapon_physgun","keys", "pocket", "stunstick", "weaponchecker", "unarrest_stick","arrest_stick"},
  714. command = "Staff on duty",
  715. max = 0,
  716. salary = 100000000000000000,
  717. admin = 0,
  718. vote = false,
  719. hasLicense = false,
  720. candemote = false,
  721. category = "Staff on duty",
  722. PlayerSpawn = function(ply) ply:SetHealth(12550) ply:SetArmor(1) end,
  723. PlayerDeath = function(ply) end,
  724. })
  725.  
  726. TEAM_MEDICGENC = DarkRP.createJob("Medical Commander", {
  727. color = Color(20, 150, 20, 255),
  728. model = {
  729. "models/player/bunny/imperial_medical/commander/medical_commander.mdl"
  730. },
  731. description = [[Go around the ship and heal or support situations.]],
  732. weapons = {"weapon_752bf3_t21","chaingun_servius", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  733. command = "Medical Commander",
  734. max = 1,
  735. salary = 200000,
  736. admin = 0,
  737. vote = false,
  738. hasLicense = false,
  739. candemote = false,
  740. category = "Medic Troopers",
  741. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  742. PlayerDeath = function(ply) end,
  743. })
  744.  
  745. TEAM_MEDICGENO = DarkRP.createJob("Medical officer", {
  746. color = Color(20, 150, 20, 255),
  747. model = {
  748. "models/player/bunny/imperial_medical/officer/medical_officer.mdl"
  749. },
  750. description = [[Go around the ship and heal or support situations.]],
  751. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  752. command = "Medical officer",
  753. max = 7,
  754. salary = 100000,
  755. admin = 0,
  756. vote = false,
  757. hasLicense = false,
  758. candemote = false,
  759. category = "Medic Troopers",
  760. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  761. PlayerDeath = function(ply) end,
  762.  
  763. })
  764.  
  765. TEAM_MEDICGENl = DarkRP.createJob("Medical Lieutenant", {
  766. color = Color(20, 150, 20, 255),
  767. model = {
  768. "models/player/bunny/imperial_medical/lieutenant/medical_lieutenant.mdl"
  769. },
  770. description = [[Go around the ship and heal or support situations.]],
  771. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector","weapon_bactanade"},
  772. command = "Medical Lieutenant",
  773. max = 10,
  774. salary = 10000,
  775. admin = 0,
  776. vote = false,
  777. hasLicense = false,
  778. candemote = false,
  779. category = "Medic Troopers",
  780. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  781. PlayerDeath = function(ply) end,
  782. })
  783.  
  784.  
  785. TEAM_MEDICGENS = DarkRP.createJob("Medical Sergeant", {
  786. color = Color(20, 150, 20, 255),
  787. model = {
  788. "models/player/bunny/imperial_medical/sergeant/medical_sergeant.mdl"
  789. },
  790. description = [[Go around the ship and heal or support situations.]],
  791. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector"},
  792. command = "Medical Sergeant",
  793. max = 0,
  794. salary = 1500,
  795. admin = 0,
  796. vote = false,
  797. hasLicense = false,
  798. candemote = false,
  799. category = "Medic Troopers",
  800. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  801. PlayerDeath = function(ply) end,
  802.  
  803. })
  804.  
  805.  
  806. TEAM_MEDICGENT = DarkRP.createJob("Medical Trooper", {
  807. color = Color(20, 150, 20, 255),
  808. model = {
  809. "models/player/bunny/imperial_medical/trooper/medical_trooper.mdl"
  810. },
  811. description = [[Go around the ship and heal or support situations.]],
  812. weapons = {"weapon_752bf3_t21", "weapon_752_dh17", "weapon_bactainjector"},
  813. command = "Medical Trooper",
  814. max = 0,
  815. salary = 500,
  816. admin = 0,
  817. vote = false,
  818. hasLicense = false,
  819. candemote = false,
  820. category = "Medic Troopers",
  821. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  822. PlayerDeath = function(ply) end,
  823.  
  824.  
  825.  
  826.  
  827. })
  828.  
  829. TEAM_SHOCKTROOPERC = DarkRP.createJob("Shock Commander", {
  830. color = Color(187, 0, 0, 255),
  831. model = {
  832. "models/player/sini/sc_commander_sini.mdl"
  833. },
  834. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  835. weapons = {"stunstick","weapon_752bf3_dh17","tfa_sw_dual_de10","tfa_sw_dual_kyd21", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  836. command = "Shock Commander",
  837. max = 1,
  838. salary = 200000,
  839. admin = 0,
  840. vote = false,
  841. hasLicense = false,
  842. candemote = false,
  843. category = "Shock Troopers",
  844. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  845. PlayerDeath = function(ply) end,
  846. })
  847.  
  848. TEAM_SHOCKTROOPERO = DarkRP.createJob("Shock officer", {
  849. color = Color(187, 0, 0, 255),
  850. model = {
  851. "models/player/sini/sc_exo_sini.mdl"
  852. },
  853. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  854. weapons = {"stunstick","weapon_752bf3_dh17", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  855. command = "Shock officer",
  856. max = 7,
  857. salary = 100000,
  858. admin = 0,
  859. vote = false,
  860. hasLicense = false,
  861. candemote = false,
  862. category = "Shock Troopers",
  863. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  864. PlayerDeath = function(ply) end,
  865.  
  866. })
  867.  
  868. TEAM_SHOCKTROOPERL = DarkRP.createJob("Shock Lieutenant", {
  869. color = Color(187, 0, 0, 255),
  870. model = {
  871. "models/player/sini/sc_lt_sini.mdl"
  872. },
  873. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  874. weapons = {"stunstick","weapon_752bf3_dh17", "weapon_752bf3_ee3","weapon_752bf3_t21", "unarrest_stick","arrest_stick","stungun"},
  875. command = "Shock Lieutenant",
  876. max = 10,
  877. salary = 10000,
  878. admin = 0,
  879. vote = false,
  880. hasLicense = false,
  881. candemote = false,
  882. category = "Shock Troopers",
  883. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  884. PlayerDeath = function(ply) end,
  885. })
  886.  
  887.  
  888. TEAM_SHOCKTROOPERS = DarkRP.createJob("Shock Sergeant", {
  889. color = Color(187, 0, 0, 255),
  890. model = {
  891. "models/player/sini/sc_sgt_sini.mdl"
  892. },
  893. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  894. weapons = {"stunstick", "tfa_e11_extended", "unarrest_stick","arrest_stick","stungun"},
  895. command = "Shock Sergeant",
  896. max = 0,
  897. salary = 1500,
  898. admin = 0,
  899. vote = false,
  900. hasLicense = false,
  901. candemote = false,
  902. category = "Shock Troopers",
  903. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  904. PlayerDeath = function(ply) end,
  905.  
  906. })
  907.  
  908.  
  909. TEAM_SHOCKTROOPERT = DarkRP.createJob("Shock Trooper", {
  910. color = Color(187, 0, 0, 255),
  911. model = {
  912. "models/player/sini/sc_stormtrooper_sini.mdl"
  913. },
  914. description = [[Go around the ship keep people safe and aos people not following the rules.]],
  915. weapons = {"stunstick","tfa_e11_extended", "unarrest_stick","arrest_stick"},
  916. command = "Shock Trooper",
  917. max = 0,
  918. salary = 500,
  919. admin = 0,
  920. vote = false,
  921. hasLicense = false,
  922. candemote = false,
  923. category = "Shock Troopers",
  924. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  925. PlayerDeath = function(ply) end,
  926.  
  927.  
  928. })
  929.  
  930.  
  931.  
  932. TEAM_104THC = DarkRP.createJob("104th Commander", {
  933. color = Color(20, 150, 20, 255),
  934. model = {
  935. "models/gonzo/wpscdr/wpscdr.mdl"
  936. },
  937. description = [[You are a 104th trooper you must protect your brothers.]],
  938. weapons = {"tfa_sw_dual_dl44","tfa_dlt19_extended", "tfa_dl44","tfa_e11_extended"},
  939. command = "104th Commander",
  940. max = 1,
  941. salary = 200000,
  942. admin = 0,
  943. vote = false,
  944. hasLicense = false,
  945. candemote = false,
  946. category = "104th Troopers",
  947. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  948. PlayerDeath = function(ply) end,
  949. })
  950.  
  951. TEAM_104THO = DarkRP.createJob("104th officer", {
  952. color = Color(20, 150, 20, 255),
  953. model = {
  954. "models/gonzo/wpsmjr/wpsmjr.mdl"
  955. },
  956. description = [[You are a 104th trooper you must protect your brothers.]],
  957. weapons = {"tfa_sw_dual_dl44","tfa_dlt19_extended", "tfa_dl44","tfa_e11_extended"},
  958. command = "104th officer",
  959. max = 7,
  960. salary = 100000,
  961. admin = 0,
  962. vote = false,
  963. hasLicense = false,
  964. candemote = false,
  965. category = "104th Troopers",
  966. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  967. PlayerDeath = function(ply) end,
  968.  
  969. })
  970.  
  971. TEAM_104THL = DarkRP.createJob("104th Lieutenant", {
  972. color = Color(20, 150, 20, 255),
  973. model = {
  974. "models/gonzo/wpssgt/wpssgt.mdl"
  975. },
  976. description = [[You are a 104th trooper you must protect your brothers.]],
  977. weapons = {"tfa_dlt19_extended", "tfa_dl44","tfa_e11_extended"},
  978. command = "104th Lieutenant",
  979. max = 10,
  980. salary = 10000,
  981. admin = 0,
  982. vote = false,
  983. hasLicense = false,
  984. candemote = false,
  985. category = "104th Troopers",
  986. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  987. PlayerDeath = function(ply) end,
  988. })
  989.  
  990.  
  991. TEAM_104THS = DarkRP.createJob("104th Sergeant", {
  992. color = Color(20, 150, 20, 255),
  993. model = {
  994. "models/gonzo/wpssgt/wpssgt.mdl"
  995. },
  996. description = [[You are a 104th trooper you must protect your brothers.]],
  997. weapons = {"tfa_dlt19_extended", "tfa_dl44","tfa_e11_extended"},
  998. command = "104th Sergeant",
  999. max = 0,
  1000. salary = 1500,
  1001. admin = 0,
  1002. vote = false,
  1003. hasLicense = false,
  1004. candemote = false,
  1005. category = "104th Troopers",
  1006. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1007. PlayerDeath = function(ply) end,
  1008.  
  1009. })
  1010.  
  1011.  
  1012. TEAM_104THT = DarkRP.createJob("104th Trooper", {
  1013. color = Color(20, 150, 20, 255),
  1014. model = {
  1015. "models/gonzo/wpstrp/wpstrp.mdl"
  1016. },
  1017. description = [[You are a 104th trooper you must protect your brothers.]],
  1018. weapons = {"weapon_752bf3_e11", "tfa_dl44","tfa_e11_extended"},
  1019. command = "104th Trooper",
  1020. max = 0,
  1021. salary = 500,
  1022. admin = 0,
  1023. vote = false,
  1024. hasLicense = false,
  1025. candemote = false,
  1026. category = "104th Troopers",
  1027. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1028. PlayerDeath = function(ply) end,
  1029. })
  1030.  
  1031.  
  1032.  
  1033. TEAM_NOVATROOPERC = DarkRP.createJob("Nova Commander", {
  1034. color = Color(20, 150, 20, 255),
  1035. model = {
  1036. "models/player/banks/egnovacom/egnovacom.mdl"
  1037. },
  1038. description = [[You are a Nova trooper follow your brothers.]],
  1039. weapons = {"tfa_westar_green","weapon_jew_dc17m_at", "tfa_kotor_br_3"},
  1040. command = "Nova Commander",
  1041. max = 1,
  1042. salary = 200000,
  1043. admin = 0,
  1044. vote = false,
  1045. hasLicense = false,
  1046. candemote = false,
  1047. category = "Nova Troopers",
  1048. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  1049. PlayerDeath = function(ply) end,
  1050. })
  1051.  
  1052. TEAM_NOVATROOPERO = DarkRP.createJob("Nova officer", {
  1053. color = Color(20, 150, 20, 255),
  1054. model = {
  1055. "models/player/banks/egnovalt/egnovalt.mdl"
  1056. },
  1057. description = [[You are a Nova trooper follow your brothers.]],
  1058. weapons = {"tfa_westar_green","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1059. command = "Nova officer",
  1060. max = 7,
  1061. salary = 100000,
  1062. admin = 0,
  1063. vote = false,
  1064. hasLicense = false,
  1065. candemote = false,
  1066. category = "Nova Troopers",
  1067. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  1068. PlayerDeath = function(ply) end,
  1069.  
  1070. })
  1071.  
  1072. TEAM_NOVATROOPERL = DarkRP.createJob("Nova Lieutenant", {
  1073. color = Color(20, 150, 20, 255),
  1074. model = {
  1075. "models/player/banks/egnovasgt/egnovasgt.mdl"
  1076. },
  1077. description = [[You are a Nova trooper follow your brothers.]],
  1078. weapons = {"tfa_westar_green","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1079. command = "Nova Lieutenant",
  1080. max = 10,
  1081. salary = 10000,
  1082. admin = 0,
  1083. vote = false,
  1084. hasLicense = false,
  1085. candemote = false,
  1086. category = "Nova Troopers",
  1087. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  1088. PlayerDeath = function(ply) end,
  1089. })
  1090.  
  1091.  
  1092. TEAM_NOVATROOPERS = DarkRP.createJob("Nova Sergeant", {
  1093. color = Color(20, 150, 20, 255),
  1094. model = {
  1095. "models/player/hydro/novatrooper_sentinel/novatrooper_sentinel.mdl"
  1096. },
  1097. description = [[You are a Nova trooper follow your brothers.]],
  1098. weapons = {"weapon_752bf3_e11","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1099. command = "Nova Sergeant",
  1100. max = 0,
  1101. salary = 1500,
  1102. admin = 0,
  1103. vote = false,
  1104. hasLicense = false,
  1105. candemote = false,
  1106. category = "Nova Troopers",
  1107. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1108. PlayerDeath = function(ply) end,
  1109.  
  1110. })
  1111.  
  1112.  
  1113. TEAM_NOVATROOPERT = DarkRP.createJob("Nova Trooper", {
  1114. color = Color(20, 150, 20, 255),
  1115. model = {
  1116. "models/player/hydro/novatrooper/novatrooper.mdl"
  1117. },
  1118. description = [[You are a Nova trooper follow your brothers.]],
  1119. weapons = {"weapon_752bf3_e11","tfa_kotor_br_3", "weapon_jew_dc17m_at"},
  1120. command = "Nova Trooper",
  1121. max = 0,
  1122. salary = 500,
  1123. admin = 0,
  1124. vote = false,
  1125. hasLicense = false,
  1126. candemote = false,
  1127. category = "Nova Troopers",
  1128. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1129. PlayerDeath = function(ply) end,
  1130. })
  1131.  
  1132.  
  1133.  
  1134.  
  1135.  
  1136.  
  1137. TEAM_212THTROOPERC = DarkRP.createJob("212th Commander", {
  1138. color = Color(20, 150, 20, 255),
  1139. model = {
  1140. "models/player/sini/212th_commander_sini.mdl"
  1141. },
  1142. description = [[You are a Nova trooper follow your brothers.]],
  1143. weapons = {"tfa_t21_extended", "dc17m_shotgun","tfa_dc17chrome","realistic_hook"},
  1144. command = "212th Commander",
  1145. max = 1,
  1146. salary = 200000,
  1147. admin = 0,
  1148. vote = false,
  1149. hasLicense = false,
  1150. candemote = false,
  1151. category = "212th Troopers",
  1152. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetArmor(1) end,
  1153. PlayerDeath = function(ply) end,
  1154. })
  1155.  
  1156. TEAM_212THTROOPERO = DarkRP.createJob("212th officer", {
  1157. color = Color(20, 150, 20, 255),
  1158. model = {
  1159. "models/player/sini/212th_exo_sini.mdl"
  1160. },
  1161. description = [[You are a Nova trooper follow your brothers.]],
  1162. weapons = {"tfa_t21_extended","tfa_dc17chrome","realistic_hook"},
  1163. command = "212th officer",
  1164. max = 7,
  1165. salary = 100000,
  1166. admin = 0,
  1167. vote = false,
  1168. hasLicense = false,
  1169. candemote = false,
  1170. category = "212th Troopers",
  1171. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  1172. PlayerDeath = function(ply) end,
  1173.  
  1174. })
  1175.  
  1176. TEAM_212THTROOPERL = DarkRP.createJob("212th Lieutenant", {
  1177. color = Color(20, 150, 20, 255),
  1178. model = {
  1179. "models/player/sini/212th_lt_sini.mdl"
  1180. },
  1181. description = [[You are a Nova trooper follow your brothers.]],
  1182. weapons = {"tfa_t21_extended","tfa_dc17chrome"},
  1183. command = "212th Lieutenant",
  1184. max = 10,
  1185. salary = 10000,
  1186. admin = 0,
  1187. vote = false,
  1188. hasLicense = false,
  1189. candemote = false,
  1190. category = "212th Troopers",
  1191. PlayerSpawn = function(ply) ply:SetHealth(500) ply:SetArmor(1) end,
  1192. PlayerDeath = function(ply) end,
  1193. })
  1194.  
  1195.  
  1196. TEAM_212THTROOPERS = DarkRP.createJob("212th Sergeant", {
  1197. color = Color(20, 150, 20, 255),
  1198. model = {
  1199. "models/player/sini/212th_sgt_sini.mdl"
  1200. },
  1201. description = [[You are a Nova trooper follow your brothers.]],
  1202. weapons = {"tfa_t21_extended","weapon_752bf3_e11","realistic_hook"},
  1203. command = "212th Sergeant",
  1204. max = 0,
  1205. salary = 1500,
  1206. admin = 0,
  1207. vote = false,
  1208. hasLicense = false,
  1209. candemote = false,
  1210. category = "212th Troopers",
  1211. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  1212. PlayerDeath = function(ply) end,
  1213.  
  1214. })
  1215.  
  1216.  
  1217. TEAM_212THTROOPERT = DarkRP.createJob("212th Trooper", {
  1218. color = Color(20, 150, 20, 255),
  1219. model = {
  1220. "models/player/sini/212th_stormtrooper_sini.mdl"
  1221. },
  1222. description = [[You are a Nova trooper follow your brothers.]],
  1223. weapons = {"tfa_t21_extended","weapon_752bf3_e11","realistic_hook"},
  1224. command = "212th Trooper",
  1225. max = 0,
  1226. salary = 500,
  1227. admin = 0,
  1228. vote = false,
  1229. hasLicense = false,
  1230. candemote = false,
  1231. category = "212th Troopers",
  1232. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetArmor(1) end,
  1233. PlayerDeath = function(ply) end,
  1234.  
  1235. })
  1236.  
  1237. TEAM_FLEETNG = DarkRP.createJob("Naval Guard", {
  1238. color = Color(3, 0, 95, 255),
  1239. model = {
  1240. "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl"
  1241. },
  1242. description = [[You are a fleet memeber make sure the ship is safe.]],
  1243. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_jew_iondisruptor","stungun"},
  1244. command = "Naval Guard",
  1245. max = 4,
  1246. salary = 10000,
  1247. admin = 0,
  1248. vote = false,
  1249. hasLicense = false,
  1250. candemote = false,
  1251. category = "Fleet",
  1252. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(50) end,
  1253. PlayerDeath = function(ply) end,
  1254.  
  1255.  
  1256. })
  1257.  
  1258.  
  1259. TEAM_FLEETNGJR = DarkRP.createJob("Naval Guard JR", {
  1260. color = Color(3, 0, 95, 255),
  1261. model = {
  1262. "models/player/hydro/swbf_deathstartrooper/swbf_deathstartrooper.mdl"
  1263. },
  1264. description = [[You are a fleet memeber make sure the ship is safe.]],
  1265. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_jew_iondisruptor","stungun"},
  1266. command = "Naval Guard JR",
  1267. max = 4,
  1268. salary = 12000,
  1269. admin = 0,
  1270. vote = false,
  1271. hasLicense = false,
  1272. candemote = false,
  1273. category = "Fleet",
  1274. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(50) end,
  1275. PlayerDeath = function(ply) end,
  1276.  
  1277.  
  1278. })
  1279.  
  1280. TEAM_FLEETL = DarkRP.createJob("Lieutenant", {
  1281. color = Color(3, 0, 95, 255),
  1282. model = {
  1283. "models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl"
  1284. },
  1285. description = [[You are a fleet memeber make sure the ship is safe.]],
  1286. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1287. command = "Lieutenant",
  1288. max = 0,
  1289. salary = 100000,
  1290. admin = 0,
  1291. vote = false,
  1292. hasLicense = false,
  1293. candemote = false,
  1294. category = "Fleet",
  1295. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1296. PlayerDeath = function(ply) end,
  1297. })
  1298.  
  1299. TEAM_FLEETRA = DarkRP.createJob("Rear Admiral", {
  1300. color = Color(3, 0, 95, 255),
  1301. model = {
  1302. "models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"
  1303. },
  1304. description = [[You are a fleet memeber make sure the ship is safe.]],
  1305. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1306. command = "Rear Admiral",
  1307. max = 0,
  1308. salary = 1000000,
  1309. admin = 0,
  1310. vote = false,
  1311. hasLicense = false,
  1312. candemote = false,
  1313. category = "Fleet",
  1314. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1315. PlayerDeath = function(ply) end,
  1316.  
  1317. })
  1318.  
  1319. TEAM_FLEETVA = DarkRP.createJob("Vice Admiral", {
  1320. color = Color(3, 0, 95, 255),
  1321. model = {
  1322. "models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"
  1323. },
  1324. description = [[You are a fleet memeber make sure the ship is safe.]],
  1325. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1326. command = "Vice Admiral",
  1327. max = 0,
  1328. salary = 10000000,
  1329. admin = 0,
  1330. vote = false,
  1331. hasLicense = false,
  1332. candemote = false,
  1333. category = "Fleet",
  1334. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1335. PlayerDeath = function(ply) end,
  1336. })
  1337.  
  1338.  
  1339. TEAM_FLEETA = DarkRP.createJob("Admiral", {
  1340. color = Color(3, 0, 95, 255),
  1341. model = {
  1342. "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl"
  1343. },
  1344. description = [[You are a fleet memeber make sure the ship is safe.]],
  1345. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1346. command = "Admiral",
  1347. max = 0,
  1348. salary = 10000000,
  1349. admin = 0,
  1350. vote = false,
  1351. hasLicense = false,
  1352. candemote = false,
  1353. category = "Fleet",
  1354. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1355. PlayerDeath = function(ply) end,
  1356.  
  1357. })
  1358.  
  1359.  
  1360. TEAM_FLEETFA = DarkRP.createJob("Fleet Admiral", {
  1361. color = Color(3, 0, 95, 255),
  1362. model = {
  1363. "models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl"
  1364. },
  1365. description = [[You are a fleet memeber make sure the ship is safe.]],
  1366. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1367. command = "Fleet Admiral",
  1368. max = 0,
  1369. salary = 100000000,
  1370. admin = 0,
  1371. vote = false,
  1372. hasLicense = false,
  1373. candemote = false,
  1374. category = "Fleet",
  1375. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1376. PlayerDeath = function(ply) end,
  1377. })
  1378.  
  1379.  
  1380.  
  1381.  
  1382. TEAM_FLEETHA = DarkRP.createJob("High Admiral", {
  1383. color = Color(3, 0, 95, 255),
  1384. model = {
  1385. "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl"
  1386. },
  1387. description = [[You are a fleet memeber make sure the ship is safe.]],
  1388. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1389. command = "High Admiral",
  1390. max = 0,
  1391. salary = 1000000000,
  1392. admin = 0,
  1393. vote = false,
  1394. hasLicense = false,
  1395. candemote = false,
  1396. category = "Fleet",
  1397. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1398. PlayerDeath = function(ply) end,
  1399. })
  1400.  
  1401.  
  1402.  
  1403.  
  1404. TEAM_FLEETM = DarkRP.createJob("Moff", {
  1405. color = Color(3, 0, 95, 255),
  1406. model = {
  1407. "models/player/valley/tarkin.mdl"
  1408. },
  1409. description = [[You are a fleet memeber make sure the ship is safe.]],
  1410. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1411. command = "Moff",
  1412. max = 1,
  1413. salary = 10000000000,
  1414. admin = 0,
  1415. vote = false,
  1416. hasLicense = false,
  1417. candemote = false,
  1418. category = "Fleet",
  1419. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1420. PlayerDeath = function(ply) end,
  1421. })
  1422.  
  1423.  
  1424. TEAM_FLEETGM = DarkRP.createJob("Grand Moff", {
  1425. color = Color(3, 0, 95, 255),
  1426. model = {
  1427. "models/player/hydro/swbf_krennic/swbf_krennic.mdl"
  1428. },
  1429. description = [[You are a fleet memeber make sure the ship is safe.]],
  1430. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1431. command = "Grand Moff",
  1432. max = 1,
  1433. salary = 100000000000,
  1434. admin = 0,
  1435. vote = false,
  1436. hasLicense = false,
  1437. candemote = false,
  1438. category = "Fleet",
  1439. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1440. PlayerDeath = function(ply) end,
  1441. })
  1442.  
  1443.  
  1444. TEAM_FLEETGA = DarkRP.createJob("Grand Admiral", {
  1445. color = Color(3, 0, 95, 255),
  1446. model = {
  1447. "models/player/sono/swbf_thrawn.mdl"
  1448. },
  1449. description = [[You are a fleet memeber make sure the ship is safe].]],
  1450. weapons = {"arrest_stick", "stunstick","unarrest_stick","weapon_752bf3_se14c","stungun"},
  1451. command = "Grand Admiral",
  1452. max = 1,
  1453. salary = 100000000000,
  1454. admin = 0,
  1455. vote = false,
  1456. hasLicense = false,
  1457. candemote = false,
  1458. category = "Fleet",
  1459. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1460. PlayerDeath = function(ply) end,
  1461. })
  1462.  
  1463. TEAM_ISBO = DarkRP.createJob("ISB Officer", {
  1464. color = Color(3, 0, 95, 255),
  1465. model = {
  1466. "models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"
  1467. },
  1468. description = [[You are a fleet memeber make sure the ship is safe.]],
  1469. weapons = {"stungun", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_752bf3_se14r","weapon_relbyv10"},
  1470. command = "ISB Officer",
  1471. max = 1,
  1472. salary = 50000,
  1473. admin = 0,
  1474. vote = false,
  1475. hasLicense = false,
  1476. candemote = false,
  1477. category = "ISB",
  1478. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1479. PlayerDeath = function(ply) end,
  1480. })
  1481.  
  1482. TEAM_ISBA = DarkRP.createJob("ISB Lieutenant", {
  1483. color = Color(3, 0, 95, 255),
  1484. model = {
  1485. "models/player/swbf_imperial_officer_ncov2/swbf_imperial_officer_ncov2.mdl"
  1486. },
  1487. description = [[You are a fleet memeber make sure the ship is safe].]],
  1488. weapons = {"stungun", "stunstick","unarrest_stick","weapon_752bf3_se14c","weapon_752bf3_se14r","weapon_relbyv10"},
  1489. command = "ISB Lieutenant",
  1490. max = 4,
  1491. salary = 500000,
  1492. admin = 0,
  1493. vote = false,
  1494. hasLicense = false,
  1495. candemote = false,
  1496. category = "ISB",
  1497. PlayerSpawn = function(ply) ply:SetHealth(2000) ply:SetArmor(1) end,
  1498. PlayerDeath = function(ply) end,
  1499. })
  1500.  
  1501. TEAM_SK = DarkRP.createJob("Starkiller", {
  1502. color = Color(60, 60, 60, 255),
  1503. model = {
  1504. "models/nate159/req/swtfu/tie_flightsuit.mdl",
  1505. "models/nate159/req/swtfu/malecdeathstar.mdl"
  1506. },
  1507. description = [[ Your Apprentice Of Vader And Wrath Of Emperor Palpatine]],
  1508. weapons = {"weapon_lightsaber"},
  1509. command = "sk",
  1510. max = 1,
  1511. salary = 15000,
  1512. admin = 0,
  1513. vote = false,
  1514. hasLicense = false,
  1515. candemote = false,
  1516. CustomCheckFailMsg = "You are not whitelisted to this job.",
  1517. category = "Sith",
  1518. PlayerSpawn = function(ply) ply:SetHealth(4500) ply:SetArmor(0) end,
  1519. PlayerDeath = function(ply) end,
  1520. })
  1521.  
  1522. TEAM_TT = DarkRP.createJob("Terror Trooper", {
  1523. color = Color(60, 60, 60, 255),
  1524. model = {
  1525. "models/player/starwars/mistersweetroll/terrortrooper.mdl"
  1526. },
  1527. description = [[ Take a Orders From 2LT+ And Give Elite Troopers The Buisness]],
  1528. weapons = {"tfa_relby", "weapon_752bf3_dh17", "tfa_wsp_2"},
  1529. command = "tt",
  1530. max = 4,
  1531. salary = 5000,
  1532. admin = 0,
  1533. vote = false,
  1534. hasLicense = false,
  1535. candemote = false,
  1536. CustomCheckFailMsg = "You are not whitelisted to this job.",
  1537. category = "Vip",
  1538. PlayerSpawn = function(ply) ply:SetHealth(650) ply:SetArmor(0) end,
  1539. PlayerDeath = function(ply) end,
  1540. })
  1541.  
  1542. --[[---------------------------------------------------------------------------
  1543. Define which team joining players spawn into and what team you change to if demoted
  1544. ---------------------------------------------------------------------------]]
  1545. GAMEMODE.DefaultTeam = TEAM_RECRUIT
  1546.  
  1547.  
  1548. --[[---------------------------------------------------------------------------
  1549. Define which teams belong to civil protection
  1550. Civil protection can set warrants, make people wanted and do some other police related things
  1551. ---------------------------------------------------------------------------]]
  1552. GAMEMODE.CivilProtection = {
  1553. [TEAM_POLICE] = true,
  1554. [TEAM_CHIEF] = true,
  1555. [TEAM_MAYOR] = true,
  1556. }
  1557.  
  1558. --[[---------------------------------------------------------------------------
  1559. Jobs that are hitmen (enables the hitman menu)
  1560. ---------------------------------------------------------------------------]]
  1561. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement