Advertisement
Guest User

star wars jobs from looap

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