Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 85.21 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. -----------------------------------------------------
  22. -----------------------------------------------------
  23.  
  24. --[[---------------------------------------------------------------------------
  25.  
  26. DarkRP custom jobs
  27.  
  28. ---------------------------------------------------------------------------
  29.  
  30.  
  31.  
  32. This file contains your custom jobs.
  33.  
  34. This file should also contain jobs from DarkRP that you edited.
  35.  
  36.  
  37.  
  38. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  39.  
  40. Once you've done that, copy and paste the job to this file and edit it.
  41.  
  42.  
  43.  
  44. The default jobs can be found here:
  45.  
  46. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  47.  
  48.  
  49.  
  50. For examples and explanation please visit this wiki page:
  51.  
  52. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  53.  
  54.  
  55.  
  56.  
  57.  
  58. Add jobs under the following line:
  59.  
  60. ---------------------------------------------------------------------------]]
  61.  
  62.  
  63.  
  64. TEAM_CADET = DarkRP.createJob("Cadet", {
  65.  
  66. color = Color(200, 222, 0, 255),
  67.  
  68. model = {"models/player/testc/cgi cadet.mdl"},
  69.  
  70. description = [[You Are A Cadet Wait To Be Trained by a Sergeant +. Do not leave the cadet room.]],
  71.  
  72. weapons = {},
  73.  
  74. command = "cadet",
  75.  
  76. max = 0,
  77.  
  78. salary = 0,
  79.  
  80. admin = 0,
  81.  
  82. vote = false,
  83.  
  84. hasLicense = false,
  85.  
  86. category = "Cadet",
  87.  
  88.  
  89.  
  90. -- Insert customCheck here if you have one and want one.
  91.  
  92. })
  93.  
  94.  
  95.  
  96. TEAM_CT = DarkRP.createJob("Clone Trooper", {
  97.  
  98. color = Color(30, 165, 232, 255),
  99.  
  100. model = {"models/Player/SGG/Starwars/clonetrooper_clean.mdl"},
  101.  
  102. description = [[Congratulations You Have Passed Your Training! Welcome to the Republic!!]],
  103.  
  104. weapons = {"tfa_swch_dc17","tfa_swch_dc15s"},
  105.  
  106. command = "clone",
  107.  
  108. max = 0,
  109.  
  110. salary = 100,
  111.  
  112. admin = 0,
  113.  
  114. vote = false,
  115.  
  116. hasLicense = false,
  117.  
  118. category = "Clone Troopers",
  119.  
  120. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") end if CLIENT then return true end end,
  121.  
  122. PlayerLoadout = function(ply) ply:SetHealth(2000) ply:GiveAmmo(5000, "ar2") end,
  123.  
  124. PlayerSpawn = function(ply) ply:SetMaxHealth(2000) end,
  125.  
  126.  
  127.  
  128. -- Insert customCheck here if you have one and want one.
  129.  
  130. })
  131.  
  132.  
  133.  
  134. TEAM_CTCOMMANDER = DarkRP.createJob("Clone Trooper Commander", {
  135.  
  136. color = Color(30, 165, 232, 255),
  137.  
  138. model = {"models/player/sgg/starwars/clonetrooper_deviss.mdl"},
  139.  
  140. description = [[Congratulations You Are Now Commander of The Clone Troopers!]],
  141.  
  142. weapons = {"tfa_sw_dc17dual","tfa_swch_dc15s","weapon_cuff_elastic"},
  143.  
  144. command = "clonecommander",
  145.  
  146. max = 3,
  147.  
  148. salary = 500,
  149.  
  150. admin = 0,
  151.  
  152. vote = false,
  153.  
  154. hasLicense = false,
  155.  
  156. category = "Clone Troopers",
  157.  
  158. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper Commander") end if CLIENT then return true end end,
  159.  
  160. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  161.  
  162. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  163.  
  164. level = 90
  165.  
  166. -- Insert customCheck here if you have one and want one.
  167.  
  168. })
  169.  
  170.  
  171.  
  172. TEAM_CTDRILL = DarkRP.createJob("Clone Drill Sergeant", {
  173.  
  174. color = Color(30, 165, 232, 255),
  175.  
  176. model = {"models/player/sgg/starwars/clonetrooper_deviss.mdl"},
  177.  
  178. description = [[Congratulations You Are The Drill Sergeant For The Clone Troopers!]],
  179.  
  180. weapons = {"tfa_sw_dc17dual","tfa_swch_dc15s","weapon_cuff_elastic"},
  181.  
  182. command = "clonedrill",
  183.  
  184. max = 4,
  185.  
  186. salary = 500,
  187.  
  188. admin = 0,
  189.  
  190. vote = false,
  191.  
  192. hasLicense = false,
  193.  
  194. category = "Clone Troopers",
  195.  
  196. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Drill Sergeant") end if CLIENT then return true end end,
  197.  
  198. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  199.  
  200. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  201.  
  202. level = 80
  203.  
  204. -- Insert customCheck here if you have one and want one.
  205.  
  206. })
  207.  
  208.  
  209.  
  210. TEAM_501STCOMMANDER = DarkRP.createJob("501st Commander", {
  211.  
  212. color = Color(0, 51, 255, 255),
  213.  
  214. model = {"models/clones/clonedavis.mdl"},
  215.  
  216. description = [[Congratulations You Are A Commander of Your Own Regiment!]],
  217.  
  218. weapons = {"tfa_swch_dc17","weapon_tfa_dc15a501","tfa_sw_repshot"},
  219.  
  220. command = "501stco",
  221.  
  222. max = 1,
  223.  
  224. salary = 500,
  225.  
  226. admin = 0,
  227.  
  228. vote = false,
  229.  
  230. hasLicense = false,
  231.  
  232. category = "501st",
  233.  
  234. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Commander") end if CLIENT then return true end end,
  235.  
  236. PlayerLoadout = function(ply) ply:SetHealth(7500) ply:GiveAmmo(5000, "ar2") end,
  237.  
  238. PlayerSpawn = function(ply) ply:SetMaxHealth(7500) end,
  239.  
  240. level = 90
  241.  
  242.  
  243.  
  244. -- Insert customCheck here if you have one and want one.
  245.  
  246. })
  247.  
  248.  
  249.  
  250. TEAM_501STVICECOMMANDER = DarkRP.createJob("501st Vice Commander", {
  251.  
  252. color = Color(0, 51, 255, 255),
  253.  
  254. model = {"models/clones/clonedavis.mdl"},
  255.  
  256. description = [[Congratulations You Are A Member Of The 501st!]],
  257.  
  258. weapons = {"tfa_swch_dc17","tfa_dc15a_expanded","tfa_sw_repshot"},
  259.  
  260. command = "501stvc",
  261.  
  262. max = 1,
  263.  
  264. salary = 450,
  265.  
  266. admin = 0,
  267.  
  268. vote = false,
  269.  
  270. hasLicense = false,
  271.  
  272. category = "501st",
  273.  
  274. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Vice Commander") end if CLIENT then return true end end,
  275.  
  276. PlayerLoadout = function(ply) ply:SetHealth(5500) ply:GiveAmmo(5000, "ar2") end,
  277.  
  278. PlayerSpawn = function(ply) ply:SetMaxHealth(5500) end,
  279.  
  280. level = 80
  281.  
  282.  
  283.  
  284. -- Insert customCheck here if you have one and want one.
  285.  
  286. })
  287.  
  288.  
  289.  
  290. TEAM_501STLT = DarkRP.createJob("501st Lieutenant", {
  291.  
  292. color = Color(0, 51, 255, 255),
  293.  
  294. model = {"models/player/asgclonewars/trooper_501st_para/clonetrooper_501st_para.mdl"},
  295.  
  296. description = [[Congratulations You Are Now A Member Of The 501st!]],
  297.  
  298. weapons = {"tfa_swch_dc17","tfa_dc15a_expanded","tfa_sw_repshot"},
  299.  
  300. command = "501stlt",
  301.  
  302. max = 5,
  303.  
  304. salary = 450,
  305.  
  306. admin = 0,
  307.  
  308. vote = false,
  309.  
  310. hasLicense = false,
  311.  
  312. category = "501st",
  313.  
  314. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Lieutenant") end if CLIENT then return true end end,
  315.  
  316. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  317.  
  318. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  319.  
  320. level = 50
  321.  
  322. -- Insert customCheck here if you have one and want one.
  323.  
  324. })
  325.  
  326.  
  327.  
  328. TEAM_501STSGT = DarkRP.createJob("501st Sergeant", {
  329.  
  330. color = Color(0, 51, 255, 255),
  331.  
  332. model = {"models/player/sgg/starwars/clonetrooper_501st.mdl"},
  333.  
  334. description = [[Congratulations You Are Now A Member Of The 501st!]],
  335.  
  336. weapons = {"tfa_swch_dc17","tfa_dc15a_expanded","tfa_sw_repshot"},
  337.  
  338. command = "501stsgt",
  339.  
  340. max = 0,
  341.  
  342. salary = 350,
  343.  
  344. admin = 0,
  345.  
  346. vote = false,
  347.  
  348. hasLicense = false,
  349.  
  350. category = "501st",
  351.  
  352. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Sergeant") end if CLIENT then return true end end,
  353.  
  354. PlayerLoadout = function(ply) ply:SetHealth(3500) ply:GiveAmmo(5000, "ar2") end,
  355.  
  356. PlayerSpawn = function(ply) ply:SetMaxHealth(3500) end,
  357.  
  358. level = 10
  359.  
  360. -- Insert customCheck here if you have one and want one.
  361.  
  362. })
  363.  
  364.  
  365.  
  366. TEAM_501STTRP = DarkRP.createJob("501st Trooper", {
  367.  
  368. color = Color(0, 51, 255, 255),
  369.  
  370. model = {"models/player/sgg/starwars/clonetrooper_501st.mdl"},
  371.  
  372. description = [[Congratulations You Are Now A Member Of The 501st!]],
  373.  
  374. weapons = {"tfa_swch_dc17","tfa_dc15a_expanded","tfa_sw_repshot"},
  375.  
  376. command = "501sttrp",
  377.  
  378. max = 0,
  379.  
  380. salary = 250,
  381.  
  382. admin = 0,
  383.  
  384. vote = false,
  385.  
  386. hasLicense = false,
  387.  
  388. category = "501st",
  389.  
  390. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Trooper") end if CLIENT then return true end end,
  391.  
  392. PlayerLoadout = function(ply) ply:SetHealth(2500) ply:GiveAmmo(5000, "ar2") end,
  393.  
  394. PlayerSpawn = function(ply) ply:SetMaxHealth(2500) end,
  395.  
  396. level = 0
  397.  
  398. -- Insert customCheck here if you have one and want one.
  399.  
  400. })
  401.  
  402.  
  403.  
  404. TEAM_501SMEDIC = DarkRP.createJob("501st Medic", {
  405.  
  406. color = Color(0, 51, 255, 255),
  407.  
  408. model = {"models/player/sgg/starwars/clonetrooper_501st.mdl"},
  409.  
  410. description = [[Congratulations You Are Now A Member Of The 501st!]],
  411.  
  412. weapons = {"tfa_swch_dc17","tfa_dc15a_expanded","med_kit"},
  413.  
  414. command = "501stmedic",
  415.  
  416. max = 2,
  417.  
  418. salary = 250,
  419.  
  420. admin = 0,
  421.  
  422. vote = false,
  423.  
  424. hasLicense = false,
  425.  
  426. category = "501st",
  427.  
  428. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"501st Medic") end if CLIENT then return true end end,
  429.  
  430. PlayerLoadout = function(ply) ply:SetHealth(2500) ply:GiveAmmo(5000, "ar2") end,
  431.  
  432. PlayerSpawn = function(ply) ply:SetMaxHealth(2500) end,
  433.  
  434. level = 0
  435.  
  436. -- Insert customCheck here if you have one and want one.
  437.  
  438. })
  439.  
  440.  
  441.  
  442. TEAM_212THCOMMANDER = DarkRP.createJob("212th Commander", {
  443.  
  444. color = Color(255,144,0,255),
  445.  
  446. model = {"models/Player/SGG/Starwars/clonetrooper_cody.mdl"},
  447.  
  448. description = [[Congratulations You Are A Commander of Your Own Regiment!]],
  449.  
  450. weapons = {"weapon_tfa_dc15a212","tfa_swch_dc17"},
  451.  
  452. command = "212thco",
  453.  
  454. max = 1,
  455.  
  456. salary = 500,
  457.  
  458. admin = 0,
  459.  
  460. vote = false,
  461.  
  462. hasLicense = false,
  463.  
  464. category = "212th",
  465.  
  466. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Commander") end if CLIENT then return true end end,
  467.  
  468. PlayerLoadout = function(ply) ply:SetHealth(7500) ply:GiveAmmo(5000, "ar2") end,
  469.  
  470. PlayerSpawn = function(ply) ply:SetMaxHealth(7500) end,
  471.  
  472. level = 90
  473.  
  474.  
  475.  
  476. -- Insert customCheck here if you have one and want one.
  477.  
  478. })
  479.  
  480.  
  481.  
  482. TEAM_212THVICECOMMANDER = DarkRP.createJob("212th Vice Commander", {
  483.  
  484. color = Color(255,144,0,255),
  485.  
  486. model = {"models/player/emp/starwars/212support.mdl"},
  487.  
  488. description = [[Congratulations You Are the VC of Your Regiment!]],
  489.  
  490. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  491.  
  492. command = "212thvc",
  493.  
  494. max = 1,
  495.  
  496. salary = 450,
  497.  
  498. admin = 0,
  499.  
  500. vote = false,
  501.  
  502. hasLicense = false,
  503.  
  504. category = "212th",
  505.  
  506. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Vice Commander") end if CLIENT then return true end end,
  507.  
  508. PlayerLoadout = function(ply) ply:SetHealth(5500) ply:GiveAmmo(5000, "ar2") end,
  509.  
  510. PlayerSpawn = function(ply) ply:SetMaxHealth(5500) end,
  511.  
  512. level = 80
  513.  
  514. -- Insert customCheck here if you have one and want one.
  515.  
  516. })
  517.  
  518.  
  519.  
  520. TEAM_212MAJOR = DarkRP.createJob("212th EXO", {
  521.  
  522. color = Color(255,144,0,255),
  523.  
  524. model = {"models/player/emp/starwars/212esharp.mdl"},
  525.  
  526. description = [[Congratulations You Are Now A Member Of The 212th!]],
  527.  
  528. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  529.  
  530. command = "212exo",
  531.  
  532. max = 2,
  533.  
  534. salary = 450,
  535.  
  536. admin = 0,
  537.  
  538. vote = false,
  539.  
  540. hasLicense = false,
  541.  
  542. category = "212th",
  543.  
  544. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th EXO") end if CLIENT then return true end end,
  545.  
  546. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  547.  
  548. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  549.  
  550. level = 70
  551.  
  552. -- Insert customCheck here if you have one and want one.
  553.  
  554. })
  555.  
  556.  
  557.  
  558. TEAM_212THLT = DarkRP.createJob("212th Lieutenant", {
  559.  
  560. color = Color(255,144,0,255),
  561.  
  562. model = {"models/player/emp/starwars/212lt.mdl"},
  563.  
  564. description = [[Congratulations You Are Now A Member Of The 212th!]],
  565.  
  566. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  567.  
  568. command = "212thlt",
  569.  
  570. max = 4,
  571.  
  572. salary = 450,
  573.  
  574. admin = 0,
  575.  
  576. vote = false,
  577.  
  578. hasLicense = false,
  579.  
  580. category = "212th",
  581.  
  582. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Lieutenant") end if CLIENT then return true end end,
  583.  
  584. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  585.  
  586. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  587.  
  588. level = 50
  589.  
  590. -- Insert customCheck here if you have one and want one.
  591.  
  592. })
  593.  
  594.  
  595.  
  596. TEAM_212SGTMAJOR = DarkRP.createJob("212th Sergeant Major", {
  597.  
  598. color = Color(255,144,0,255),
  599.  
  600. model = {"models/player/emp/starwars/212combat.mdl"},
  601.  
  602. description = [[Congratulations You Are Now A Member Of The 212th!]],
  603.  
  604. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  605.  
  606. command = "212major",
  607.  
  608. max = 3,
  609.  
  610. salary = 450,
  611.  
  612. admin = 0,
  613.  
  614. vote = false,
  615.  
  616. hasLicense = false,
  617.  
  618. category = "212th",
  619.  
  620. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Sergeant Major") end if CLIENT then return true end end,
  621.  
  622. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  623.  
  624. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  625.  
  626. level = 40
  627.  
  628. -- Insert customCheck here if you have one and want one.
  629.  
  630. })
  631.  
  632.  
  633.  
  634. TEAM_212THSGT = DarkRP.createJob("212th Sergeant", {
  635.  
  636. color = Color(255,144,0,255),
  637.  
  638. model = {"models/player/emp/starwars/212hvy.mdl"},
  639.  
  640. description = [[Congratulations You Are Now A Member Of The 212th!]],
  641.  
  642. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  643.  
  644. command = "212thsgt",
  645.  
  646. max = 0,
  647.  
  648. salary = 350,
  649.  
  650. admin = 0,
  651.  
  652. vote = false,
  653.  
  654. hasLicense = false,
  655.  
  656. category = "212th",
  657.  
  658. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Sergeant") end if CLIENT then return true end end,
  659.  
  660. PlayerLoadout = function(ply) ply:SetHealth(3500) ply:GiveAmmo(5000, "ar2") end,
  661.  
  662. PlayerSpawn = function(ply) ply:SetMaxHealth(3500) end,
  663.  
  664. level = 10
  665.  
  666. -- Insert customCheck here if you have one and want one.
  667.  
  668. })
  669.  
  670.  
  671.  
  672. TEAM_212THTRP = DarkRP.createJob("212th Trooper", {
  673.  
  674. color = Color(255,144,0,255),
  675.  
  676. model = {"models/player/sgg/starwars/clonetrooper_212nd.mdl"},
  677.  
  678. description = [[Congratulations You Are Now A Member Of The 212th!]],
  679.  
  680. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  681.  
  682. command = "212thtrp",
  683.  
  684. max = 0,
  685.  
  686. salary = 250,
  687.  
  688. admin = 0,
  689.  
  690. vote = false,
  691.  
  692. hasLicense = false,
  693.  
  694. category = "212th",
  695.  
  696. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Trooper") end if CLIENT then return true end end,
  697.  
  698. PlayerLoadout = function(ply) ply:SetHealth(2500) ply:GiveAmmo(5000, "ar2") end,
  699.  
  700. PlayerSpawn = function(ply) ply:SetMaxHealth(2500) end,
  701.  
  702. level = 0
  703.  
  704. -- Insert customCheck here if you have one and want one.
  705.  
  706. })
  707.  
  708.  
  709.  
  710. TEAM_212THMEDIC = DarkRP.createJob("212th Medic", {
  711.  
  712. color = Color(255,144,0,255),
  713.  
  714. model = {"models/player/sgg/starwars/clonetrooper_212nd.mdl"},
  715.  
  716. description = [[Congratulations You Are Now A Member Of The 212th!]],
  717.  
  718. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","med_kit"},
  719.  
  720. command = "212thmedic",
  721.  
  722. max = 2,
  723.  
  724. salary = 250,
  725.  
  726. admin = 0,
  727.  
  728. vote = false,
  729.  
  730. hasLicense = false,
  731.  
  732. category = "212th",
  733.  
  734. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Medic") end if CLIENT then return true end end,
  735.  
  736. PlayerLoadout = function(ply) ply:SetHealth(2500) ply:GiveAmmo(5000, "ar2") end,
  737.  
  738. PlayerSpawn = function(ply) ply:SetMaxHealth(2500) end,
  739.  
  740. level = 0
  741.  
  742. -- Insert customCheck here if you have one and want one.
  743.  
  744. })
  745.  
  746.  
  747.  
  748. TEAM_212THFLAME = DarkRP.createJob("212th Flame Thrower", {
  749.  
  750. color = Color(255,144,0,255),
  751.  
  752. model = {"models/player/emp/starwars/212haz.mdl"},
  753.  
  754. description = [[Congratulations You Are Now A Member Of The 212th!]],
  755.  
  756. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","weapon_ai_flamethrower"},
  757.  
  758. command = "212thflame",
  759.  
  760. max = 0,
  761.  
  762. salary = 250,
  763.  
  764. admin = 0,
  765.  
  766. vote = false,
  767.  
  768. hasLicense = false,
  769.  
  770. category = "212th",
  771.  
  772. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"212th Flame Thrower") end if CLIENT then return true end end,
  773.  
  774. PlayerLoadout = function(ply) ply:SetHealth(2500) ply:GiveAmmo(5000, "ar2") ply:GiveAmmo(1000, "ai_flame_fuel") end,
  775.  
  776. PlayerSpawn = function(ply) ply:SetMaxHealth(2500) end,
  777.  
  778. level = 0
  779.  
  780. -- Insert customCheck here if you have one and want one.
  781.  
  782. })
  783.  
  784.  
  785.  
  786. TEAM_GREENCOMMANDER = DarkRP.createJob("Green Company Commander", {
  787.  
  788. color = Color(0, 255, 64, 255),
  789.  
  790. model = {"models/player/sgg/starwars/clonetrooper_gree.mdl"},
  791.  
  792. description = [[Congratulations You Are A Commander of Your Own Regiment! Can Spawn: Barc Speeder]],
  793.  
  794. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  795.  
  796. command = "greenco",
  797.  
  798. max = 2,
  799.  
  800. salary = 500,
  801.  
  802. admin = 0,
  803.  
  804. vote = false,
  805.  
  806. hasLicense = false,
  807.  
  808. category = "Green Company",
  809.  
  810. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Commander") end if CLIENT then return true end end,
  811.  
  812. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  813.  
  814. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  815.  
  816. level = 90
  817.  
  818.  
  819.  
  820. -- Insert customCheck here if you have one and want one.
  821.  
  822. })
  823.  
  824.  
  825.  
  826. TEAM_GREENLT = DarkRP.createJob("Green Company Lieutenant", {
  827.  
  828. color = Color(0, 255, 64, 255),
  829.  
  830. model = {"models/player/emp/starwars/gcaslt.mdl"},
  831.  
  832. description = [[Congratulations You Are Now A Member Of Green Company! Can Spawn: Barc Speeder]],
  833.  
  834. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  835.  
  836. command = "greenlt",
  837.  
  838. max = 5,
  839.  
  840. salary = 450,
  841.  
  842. admin = 0,
  843.  
  844. vote = false,
  845.  
  846. hasLicense = false,
  847.  
  848. category = "Green Company",
  849.  
  850. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Lieutenant") end if CLIENT then return true end end,
  851.  
  852. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  853.  
  854. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  855.  
  856. level = 50
  857.  
  858. -- Insert customCheck here if you have one and want one.
  859.  
  860. })
  861.  
  862.  
  863.  
  864. TEAM_GREENSGT = DarkRP.createJob("Green Company Sergeant", {
  865.  
  866. color = Color(0, 255, 64, 255),
  867.  
  868. model = {"models/player/emp/starwars/gchvy.mdl"},
  869.  
  870. description = [[Congratulations You Are Now A Member Of Green Company!]],
  871.  
  872. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  873.  
  874. command = "greensgt",
  875.  
  876. max = 0,
  877.  
  878. salary = 350,
  879.  
  880. admin = 0,
  881.  
  882. vote = false,
  883.  
  884. hasLicense = false,
  885.  
  886. category = "Green Company",
  887.  
  888. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Sergeant") end if CLIENT then return true end end,
  889.  
  890. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  891.  
  892. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  893.  
  894. level = 10
  895.  
  896. -- Insert customCheck here if you have one and want one.
  897.  
  898. })
  899.  
  900.  
  901.  
  902. TEAM_GREENTRP = DarkRP.createJob("Green Company Trooper", {
  903.  
  904. color = Color(0, 255, 64, 255),
  905.  
  906. model = {"models/player/emp/starwars/gcmark.mdl"},
  907.  
  908. description = [[Congratulations You Are Now A Member Of Company!]],
  909.  
  910. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  911.  
  912. command = "greentrp",
  913.  
  914. max = 0,
  915.  
  916. salary = 250,
  917.  
  918. admin = 0,
  919.  
  920. vote = false,
  921.  
  922. hasLicense = false,
  923.  
  924. category = "Green Company",
  925.  
  926. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Trooper") end if CLIENT then return true end end,
  927.  
  928. PlayerLoadout = function(ply) ply:SetHealth(4000) ply:GiveAmmo(5000, "ar2") end,
  929.  
  930. PlayerSpawn = function(ply) ply:SetMaxHealth(4000) end,
  931.  
  932. level = 0
  933.  
  934. -- Insert customCheck here if you have one and want one.
  935.  
  936. })
  937.  
  938.  
  939.  
  940.  
  941.  
  942. TEAM_CGVICECOM = DarkRP.createJob("Green Company Vice Commander", {
  943.  
  944. color = Color(0, 255, 64, 255),
  945.  
  946. model = {"models/player/emp/starwars/gccpt.mdl"},
  947.  
  948. description = [[Congratulations You Are Now A Member Of The Clone Guard! Can Spawn: Handcuffs]],
  949.  
  950. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  951.  
  952. command = "gcvc",
  953.  
  954. max = 1,
  955.  
  956. salary = 450,
  957.  
  958. admin = 0,
  959.  
  960. vote = false,
  961.  
  962. hasLicense = false,
  963.  
  964. category = "Green Company",
  965.  
  966. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Vice Commander") end if CLIENT then return true end end,
  967.  
  968. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  969.  
  970. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  971.  
  972. level = 80
  973.  
  974. -- Insert customCheck here if you have one and want one.
  975.  
  976. })
  977.  
  978.  
  979.  
  980. TEAM_CGEXO = DarkRP.createJob("Green Company EXO", {
  981.  
  982. color = Color(0, 255, 64, 255),
  983.  
  984. model = {"models/player/emp/starwars/gcsupport.mdl"},
  985.  
  986. description = [[Congratulations You Are Now A Member Of The Clone Guard! Can Spawn: Handcuffs]],
  987.  
  988. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  989.  
  990. command = "gcexo",
  991.  
  992. max = 2,
  993.  
  994. salary = 450,
  995.  
  996. admin = 0,
  997.  
  998. vote = false,
  999.  
  1000. hasLicense = false,
  1001.  
  1002. category = "Green Company",
  1003.  
  1004. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company EXO") end if CLIENT then return true end end,
  1005.  
  1006. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1007.  
  1008. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1009.  
  1010. level = 80
  1011.  
  1012. -- Insert customCheck here if you have one and want one.
  1013.  
  1014. })
  1015.  
  1016.  
  1017.  
  1018.  
  1019.  
  1020. TEAM_CGMAJOR = DarkRP.createJob("Green Company Major", {
  1021.  
  1022. color = Color(0, 255, 64, 255),
  1023.  
  1024. model = {"models/player/emp/starwars/gcelite.mdl"},
  1025.  
  1026. description = [[Congratulations You Are Now A Member Of The Clone Guard! Can Spawn: Handcuffs]],
  1027.  
  1028. weapons = {"weapon_tfa_dc15a_wla","tfa_swch_dc17","tfa_sw_repsnip"},
  1029.  
  1030. command = "gcmajor",
  1031.  
  1032. max = 3,
  1033.  
  1034. salary = 450,
  1035.  
  1036. admin = 0,
  1037.  
  1038. vote = false,
  1039.  
  1040. hasLicense = false,
  1041.  
  1042. category = "Green Company",
  1043.  
  1044. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Green Company Major") end if CLIENT then return true end end,
  1045.  
  1046. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1047.  
  1048. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1049.  
  1050. level = 40
  1051.  
  1052. -- Insert customCheck here if you have one and want one.
  1053.  
  1054. })
  1055.  
  1056.  
  1057.  
  1058. TEAM_ARCCOMMANDER = DarkRP.createJob("ARC Commander", {
  1059.  
  1060. color = Color(0, 0, 255, 255),
  1061.  
  1062. model = {"models/Player/SGG/Starwars/clonetrooper_arc_commander.mdl"},
  1063.  
  1064. description = [[Congratulations You Are A Commander of Your Own Regiment! Can Spawn: Rocket Boots]],
  1065.  
  1066. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6"},
  1067.  
  1068. command = "arcco",
  1069.  
  1070. max = 1,
  1071.  
  1072. salary = 500,
  1073.  
  1074. admin = 0,
  1075.  
  1076. vote = false,
  1077.  
  1078. hasLicense = false,
  1079.  
  1080. category = "ARC",
  1081.  
  1082. sortOrder = 1,
  1083.  
  1084. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Commander") end if CLIENT then return true end end,
  1085.  
  1086. PlayerLoadout = function(ply) ply:SetHealth(7500) ply:GiveAmmo(5000, "ar2") end,
  1087.  
  1088. PlayerSpawn = function(ply) ply:SetMaxHealth(7500) end,
  1089.  
  1090. level = 90
  1091.  
  1092.  
  1093.  
  1094. -- Insert customCheck here if you have one and want one.
  1095.  
  1096. })
  1097.  
  1098.  
  1099.  
  1100. TEAM_ARCCPT = DarkRP.createJob("ARC Vice Commander", {
  1101.  
  1102. color = Color(0, 0, 255, 255),
  1103.  
  1104. model = {"models/Player/SGG/Starwars/clonetrooper_arc_captain.mdl"},
  1105.  
  1106. description = [[Congratulations You Are Now A Member Of The Advanced Recon Commandos! Can Spawn: Rocket Boots]],
  1107.  
  1108. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6"},
  1109.  
  1110. command = "arccpt",
  1111.  
  1112. max = 1,
  1113.  
  1114. salary = 450,
  1115.  
  1116. admin = 0,
  1117.  
  1118. vote = false,
  1119.  
  1120. hasLicense = false,
  1121.  
  1122. category = "ARC",
  1123.  
  1124. sortOrder = 2,
  1125.  
  1126. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Vice Commander") end if CLIENT then return true end end,
  1127.  
  1128. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1129.  
  1130. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1131.  
  1132. level = 60
  1133.  
  1134. -- Insert customCheck here if you have one and want one.
  1135.  
  1136. })
  1137.  
  1138.  
  1139.  
  1140. TEAM_ARCLT = DarkRP.createJob("ARC Lieutenant", {
  1141.  
  1142. color = Color(0, 0, 255, 255),
  1143.  
  1144. model = {"models/Player/SGG/Starwars/clonetrooper_arc_soldier.mdl"},
  1145.  
  1146. description = [[Congratulations You Are Now A Member Of The Advanced Recon Commandos! Can Spawn: Rocket Boots]],
  1147.  
  1148. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6"},
  1149.  
  1150. command = "arclt",
  1151.  
  1152. max = 5,
  1153.  
  1154. salary = 450,
  1155.  
  1156. admin = 0,
  1157.  
  1158. vote = false,
  1159.  
  1160. hasLicense = false,
  1161.  
  1162. category = "ARC",
  1163.  
  1164. sortOrder = 3,
  1165.  
  1166. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Lieutenant") end if CLIENT then return true end end,
  1167.  
  1168. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1169.  
  1170. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1171.  
  1172. level = 50
  1173.  
  1174. -- Insert customCheck here if you have one and want one.
  1175.  
  1176. })
  1177.  
  1178.  
  1179.  
  1180. TEAM_ARCSGT = DarkRP.createJob("ARC Sergeant", {
  1181.  
  1182. color = Color(0, 0, 255, 255),
  1183.  
  1184. model = {"models/player/asgclonewars/arc_sergeant/clonetrooper_arc_sergeant.mdl"},
  1185.  
  1186. description = [[Congratulations You Are Now A Member Of The Advanced Recon Commandos! Can Spawn: Rocket Boots]],
  1187.  
  1188. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6"},
  1189.  
  1190. command = "arcsgt",
  1191.  
  1192. max = 0,
  1193.  
  1194. salary = 350,
  1195.  
  1196. admin = 0,
  1197.  
  1198. vote = false,
  1199.  
  1200. hasLicense = false,
  1201.  
  1202. category = "ARC",
  1203.  
  1204. sortOrder = 4,
  1205.  
  1206. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Sergeant") end if CLIENT then return true end end,
  1207.  
  1208. PlayerLoadout = function(ply) ply:SetHealth(4000) ply:GiveAmmo(5000, "ar2") end,
  1209.  
  1210. PlayerSpawn = function(ply) ply:SetMaxHealth(4000) end,
  1211.  
  1212. level = 10
  1213.  
  1214. -- Insert customCheck here if you have one and want one.
  1215.  
  1216. })
  1217.  
  1218.  
  1219.  
  1220. TEAM_ARCTRP = DarkRP.createJob("ARC Trooper", {
  1221.  
  1222. color = Color(0, 0, 255, 255),
  1223.  
  1224. model = {"models/Player/SGG/Starwars/clonetrooper_arc_defaut.mdl"},
  1225.  
  1226. description = [[Congratulations You Are Now A Member Of The Advanced Recon Commandos! Can Spawn: Rocket Boots]],
  1227.  
  1228. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6"},
  1229.  
  1230. command = "arctrp",
  1231.  
  1232. max = 0,
  1233.  
  1234. salary = 250,
  1235.  
  1236. admin = 0,
  1237.  
  1238. vote = false,
  1239.  
  1240. hasLicense = false,
  1241.  
  1242. category = "ARC",
  1243.  
  1244. sortOrder = 6,
  1245.  
  1246. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Trooper") end if CLIENT then return true end end,
  1247.  
  1248. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  1249.  
  1250. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  1251.  
  1252. level = 0
  1253.  
  1254. -- Insert customCheck here if you have one and want one.
  1255.  
  1256. })
  1257.  
  1258.  
  1259.  
  1260. TEAM_ARCMEDIC = DarkRP.createJob("ARC Medic", {
  1261.  
  1262. color = Color(0, 0, 255, 255),
  1263.  
  1264. model = {"models/Player/SGG/Starwars/clonetrooper_arc_defaut.mdl"},
  1265.  
  1266. description = [[Congratulations You Are Now A Member Of The Advanced Recon Commandos! Can Spawn: Rocket Boots]],
  1267.  
  1268. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","tfa_swch_z6","med_kit"},
  1269.  
  1270. command = "arcmedic",
  1271.  
  1272. max = 2,
  1273.  
  1274. salary = 250,
  1275.  
  1276. admin = 0,
  1277.  
  1278. vote = false,
  1279.  
  1280. hasLicense = false,
  1281.  
  1282. category = "ARC",
  1283.  
  1284. sortOrder = 6,
  1285.  
  1286. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"ARC Medic") end if CLIENT then return true end end,
  1287.  
  1288. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  1289.  
  1290. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  1291.  
  1292. level = 0
  1293.  
  1294. -- Insert customCheck here if you have one and want one.
  1295.  
  1296. })
  1297.  
  1298.  
  1299.  
  1300. TEAM_CTPCOMMANDER = DarkRP.createJob("CTP Commander", {
  1301.  
  1302. color = Color(255, 251, 0, 255),
  1303.  
  1304. model = {"models/player/asgclonewars/clone_commander_yellow/clone_commander_yellow.mdl"},
  1305.  
  1306. description = [[Congratulations You Are A Commander of Your Own Regiment! Can Spawn: A-Wing, Arc-170, Y-Wing]],
  1307.  
  1308. weapons = {"weapon_tfa_dc15actp","tfa_swch_dc17"},
  1309.  
  1310. command = "ctpco",
  1311.  
  1312. max = 2,
  1313.  
  1314. salary = 500,
  1315.  
  1316. admin = 0,
  1317.  
  1318. vote = false,
  1319.  
  1320. hasLicense = false,
  1321.  
  1322. category = "CTP",
  1323.  
  1324. sortOrder = 1,
  1325.  
  1326. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"CTP Commander") end if CLIENT then return true end end,
  1327.  
  1328. PlayerLoadout = function(ply) ply:SetHealth(6000) ply:GiveAmmo(5000, "ar2") end,
  1329.  
  1330. PlayerSpawn = function(ply) ply:SetMaxHealth(6000) end,
  1331.  
  1332. level = 90
  1333.  
  1334.  
  1335.  
  1336. -- Insert customCheck here if you have one and want one.
  1337.  
  1338. })
  1339.  
  1340.  
  1341.  
  1342. TEAM_CTPLT = DarkRP.createJob("CTP Lieutenant", {
  1343.  
  1344. color = Color(255, 251, 0, 255),
  1345.  
  1346. model = {"models/Player/SGG/Starwars/clonetrooper_pilot.mdl"},
  1347.  
  1348. description = [[Congratulations You Are Now A Member Of The Clone Trooper Pilots! Can Spawn: A-Wing, Arc-170, Y-Wing]],
  1349.  
  1350. weapons = {"tfa_swch_dc15s","tfa_swch_dc17"},
  1351.  
  1352. command = "ctplt",
  1353.  
  1354. max = 5,
  1355.  
  1356. salary = 450,
  1357.  
  1358. admin = 0,
  1359.  
  1360. vote = false,
  1361.  
  1362. hasLicense = false,
  1363.  
  1364. category = "CTP",
  1365.  
  1366. sortOrder = 2,
  1367.  
  1368. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"CTP Lieutenant") end if CLIENT then return true end end,
  1369.  
  1370. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1371.  
  1372. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1373.  
  1374. level = 50
  1375.  
  1376. -- Insert customCheck here if you have one and want one.
  1377.  
  1378. })
  1379.  
  1380.  
  1381.  
  1382. TEAM_CTPSGT = DarkRP.createJob("CTP Sergeant", {
  1383.  
  1384. color = Color(255, 251, 0, 255),
  1385.  
  1386. model = {"models/Player/SGG/Starwars/clonetrooper_pilot.mdl"},
  1387.  
  1388. description = [[Congratulations You Are Now A Member Of The Clone Trooper Pilots! Can Spawn: A-Wing, Arc-170, Y-Wing]],
  1389.  
  1390. weapons = {"tfa_swch_dc15s","tfa_swch_dc17"},
  1391.  
  1392. command = "ctpsgt",
  1393.  
  1394. max = 0,
  1395.  
  1396. salary = 350,
  1397.  
  1398. admin = 0,
  1399.  
  1400. vote = false,
  1401.  
  1402. hasLicense = false,
  1403.  
  1404. category = "CTP",
  1405.  
  1406. sortOrder = 3,
  1407.  
  1408. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"CTP Sergeant") end if CLIENT then return true end end,
  1409.  
  1410. PlayerLoadout = function(ply) ply:SetHealth(4000) ply:GiveAmmo(5000, "ar2") end,
  1411.  
  1412. PlayerSpawn = function(ply) ply:SetMaxHealth(4000) end,
  1413.  
  1414. level = 10
  1415.  
  1416. -- Insert customCheck here if you have one and want one.
  1417.  
  1418. })
  1419.  
  1420.  
  1421.  
  1422. TEAM_CTPTRP = DarkRP.createJob("CTP Pilot", {
  1423.  
  1424. color = Color(255, 251, 0, 255),
  1425.  
  1426. model = {"models/Player/SGG/Starwars/clonetrooper_pilot.mdl"},
  1427.  
  1428. description = [[Congratulations You Are Now A Member Of The Clone Trooper Pilots! Can Spawn: A-Wing, Arc-170, Y-Wing]],
  1429.  
  1430. weapons = {"tfa_swch_dc15s","tfa_swch_dc17"},
  1431.  
  1432. command = "ctptrp",
  1433.  
  1434. max = 0,
  1435.  
  1436. salary = 250,
  1437.  
  1438. admin = 0,
  1439.  
  1440. vote = false,
  1441.  
  1442. hasLicense = false,
  1443.  
  1444. category = "CTP",
  1445.  
  1446. sortOrder = 4,
  1447.  
  1448. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"CTP Pilot") end if CLIENT then return true end end,
  1449.  
  1450. PlayerLoadout = function(ply) ply:SetHealth(3500) ply:GiveAmmo(5000, "ar2") end,
  1451.  
  1452. PlayerSpawn = function(ply) ply:SetMaxHealth(3500) end,
  1453.  
  1454. level = 0
  1455.  
  1456. -- Insert customCheck here if you have one and want one.
  1457.  
  1458. })
  1459.  
  1460.  
  1461.  
  1462. TEAM_RCBOSS = DarkRP.createJob("RC Boss", {
  1463.  
  1464. color = Color(255, 157, 0, 255),
  1465.  
  1466. model = {"models/Player/SGG/Starwars/clone_commando_38.mdl"},
  1467.  
  1468. description = [[You Are RC Boss Leader of Delta Squad!]],
  1469.  
  1470. weapons = {"tfa_swch_dc17m_br","tfa_swch_dc15sa","weapon_camo"},
  1471.  
  1472. command = "rcboss",
  1473.  
  1474. max = 1,
  1475.  
  1476. salary = 750,
  1477.  
  1478. admin = 0,
  1479.  
  1480. vote = false,
  1481.  
  1482. hasLicense = false,
  1483.  
  1484. category = "Delta Squad",
  1485.  
  1486. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"RC Boss") end if CLIENT then return true end end,
  1487.  
  1488. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  1489.  
  1490. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  1491.  
  1492. level = 90
  1493.  
  1494.  
  1495.  
  1496. -- Insert customCheck here if you have one and want one.
  1497.  
  1498. })
  1499.  
  1500.  
  1501.  
  1502. TEAM_RCFIXER = DarkRP.createJob("RC Fixer", {
  1503.  
  1504. color = Color(255, 157, 0, 255),
  1505.  
  1506. model = {"models/Player/SGG/Starwars/clone_commando_40.mdl"},
  1507.  
  1508. description = [[You Are RC Fixer ]],
  1509.  
  1510. weapons = {"tfa_swch_dc17m_br","tfa_swch_dc15sa","weapon_camo","med_kit","gmod_tool"},
  1511.  
  1512. command = "rcfixer",
  1513.  
  1514. max = 1,
  1515.  
  1516. salary = 750,
  1517.  
  1518. admin = 0,
  1519.  
  1520. vote = false,
  1521.  
  1522. hasLicense = false,
  1523.  
  1524. category = "Delta Squad",
  1525.  
  1526. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"RC Fixer") end if CLIENT then return true end end,
  1527.  
  1528. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  1529.  
  1530. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  1531.  
  1532. level = 90
  1533.  
  1534.  
  1535.  
  1536. -- Insert customCheck here if you have one and want one.
  1537.  
  1538. })
  1539.  
  1540.  
  1541.  
  1542. TEAM_RCSEV = DarkRP.createJob("RC Sev", {
  1543.  
  1544. color = Color(255, 157, 0, 255),
  1545.  
  1546. model = {"models/Player/SGG/Starwars/clone_commando_07.mdl"},
  1547.  
  1548. description = [[You Are RC Sev The Sniper Of Delta Squad!]],
  1549.  
  1550. weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn","weapon_752_dc15sa","weapon_camo","gmod_tool"},
  1551.  
  1552. command = "rcsev",
  1553.  
  1554. max = 1,
  1555.  
  1556. salary = 750,
  1557.  
  1558. admin = 0,
  1559.  
  1560. vote = false,
  1561.  
  1562. hasLicense = false,
  1563.  
  1564. category = "Delta Squad",
  1565.  
  1566. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"RC Sev") end if CLIENT then return true end end,
  1567.  
  1568. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  1569.  
  1570. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  1571.  
  1572. level = 90
  1573.  
  1574.  
  1575.  
  1576. -- Insert customCheck here if you have one and want one.
  1577.  
  1578. })
  1579.  
  1580.  
  1581.  
  1582. TEAM_RCSCORCH = DarkRP.createJob("RC Scorch", {
  1583.  
  1584. color = Color(255, 157, 0, 255),
  1585.  
  1586. model = {"models/Player/SGG/Starwars/clone_commando_62.mdl"},
  1587.  
  1588. description = [[You Are RC Scorch!]],
  1589.  
  1590. weapons = {"tfa_swch_dc17m_br","tfa_swch_dc17m_at","tfa_swch_dc15sa","weapon_camo","weapon_slam","gmod_tool"},
  1591.  
  1592. command = "rcscorch",
  1593.  
  1594. max = 1,
  1595.  
  1596. salary = 750,
  1597.  
  1598. admin = 0,
  1599.  
  1600. vote = false,
  1601.  
  1602. hasLicense = false,
  1603.  
  1604. category = "Delta Squad",
  1605.  
  1606. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"RC Scorch") end if CLIENT then return true end end,
  1607.  
  1608. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  1609.  
  1610. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  1611.  
  1612. level = 90
  1613.  
  1614.  
  1615.  
  1616. -- Insert customCheck here if you have one and want one.
  1617.  
  1618. })
  1619.  
  1620.  
  1621.  
  1622. TEAM_RCGREGOR = DarkRP.createJob("RC Gregor", {
  1623.  
  1624. color = Color(255, 157, 0, 255),
  1625.  
  1626. model = {"models/player/sgg/starwars/clone_commando.mdl"},
  1627.  
  1628. description = [[You Are RC Gregor, The Newest Member of Delta Squad!]],
  1629.  
  1630. weapons = {"tfa_swch_dc17m_br","weapon_752_dc15sa","weapon_camo","gmod_tool"},
  1631.  
  1632. command = "rcgregor",
  1633.  
  1634. max = 1,
  1635.  
  1636. salary = 750,
  1637.  
  1638. admin = 0,
  1639.  
  1640. vote = false,
  1641.  
  1642. hasLicense = false,
  1643.  
  1644. category = "Delta Squad",
  1645.  
  1646. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"RC Gregor") end if CLIENT then return true end end,
  1647.  
  1648. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  1649.  
  1650. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  1651.  
  1652. level = 90
  1653.  
  1654.  
  1655.  
  1656. -- Insert customCheck here if you have one and want one.
  1657.  
  1658. })
  1659.  
  1660.  
  1661.  
  1662. TEAM_OMEGASQUADCOMMANDER = DarkRP.createJob("Omega Squad Commander", {
  1663.  
  1664. color = Color(255, 251, 0, 255),
  1665.  
  1666. model = {"models/player/sgg/starwars/clone_commando_mp_a.mdl"},
  1667.  
  1668. description = [[You Are The Leader of The Elite Omega Squad!]],
  1669.  
  1670. weapons = {"tfa_swch_dc17m_br","tfa_swch_dc15sa","weapon_camo"},
  1671.  
  1672. command = "omegaco",
  1673.  
  1674. max = 2,
  1675.  
  1676. salary = 750,
  1677.  
  1678. admin = 0,
  1679.  
  1680. vote = false,
  1681.  
  1682. hasLicense = false,
  1683.  
  1684. category = "Omega Squad",
  1685.  
  1686. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Omega Squad Commander") end if CLIENT then return true end end,
  1687.  
  1688. PlayerLoadout = function(ply) ply:SetHealth(8000) ply:GiveAmmo(5000, "ar2") end,
  1689.  
  1690. PlayerSpawn = function(ply) ply:SetMaxHealth(8000) ply:SetBodygroup(4,1) end,
  1691.  
  1692. level = 90
  1693.  
  1694.  
  1695.  
  1696. -- Insert customCheck here if you have one and want one.
  1697.  
  1698. })
  1699.  
  1700.  
  1701.  
  1702. TEAM_OMEGASQUAD = DarkRP.createJob("Omega Squad Member", {
  1703.  
  1704. color = Color(255, 251, 0, 255),
  1705.  
  1706. model = {"models/player/sgg/starwars/clone_commando_mp_a.mdl"},
  1707.  
  1708. description = [[You Are Part of The Elite Omega Squad!]],
  1709.  
  1710. weapons = {"tfa_swch_dc17m_br","weapon_752_dc15sa","weapon_camo","gmod_tool"},
  1711.  
  1712. command = "omega",
  1713.  
  1714. max = 0,
  1715.  
  1716. salary = 750,
  1717.  
  1718. admin = 0,
  1719.  
  1720. vote = false,
  1721.  
  1722. hasLicense = false,
  1723.  
  1724. category = "Omega Squad",
  1725.  
  1726. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Omega Squad Member") end if CLIENT then return true end end,
  1727.  
  1728. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  1729.  
  1730. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  1731.  
  1732. level = 0
  1733.  
  1734.  
  1735.  
  1736. -- Insert customCheck here if you have one and want one.
  1737.  
  1738. })
  1739.  
  1740.  
  1741.  
  1742.  
  1743.  
  1744. TEAM_EODCOM = DarkRP.createJob("EOD Commander", {
  1745.  
  1746. color = Color(224, 209, 45, 255),
  1747.  
  1748. model = {"models/player/emp/starwars/eodcommander.mdl"},
  1749.  
  1750. description = [[Congratulations, you now command your own regiment!]],
  1751.  
  1752. weapons = {"weapon_tfa_dc15aeod","tfa_swch_dc17","repair_tool"},
  1753.  
  1754. command = "eodcom",
  1755.  
  1756. max = 2,
  1757.  
  1758. salary = 750,
  1759.  
  1760. admin = 0,
  1761.  
  1762. vote = false,
  1763.  
  1764. hasLicense = false,
  1765.  
  1766. category = "Clone Engineers",
  1767.  
  1768. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"EOD Commander") end if CLIENT then return true end end,
  1769.  
  1770. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  1771.  
  1772. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  1773.  
  1774. level = 0
  1775.  
  1776.  
  1777.  
  1778. -- Insert customCheck here if you have one and want one.
  1779.  
  1780. })
  1781.  
  1782.  
  1783.  
  1784. TEAM_EODLIT = DarkRP.createJob("EOD Lieutenant", {
  1785.  
  1786. color = Color(224, 209, 45, 255),
  1787.  
  1788. model = {"models/player/emp/starwars/eodaslt.mdl"},
  1789.  
  1790. description = [[Congratulations, you are now a member of the Clone Engineers!]],
  1791.  
  1792. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","repair_tool"},
  1793.  
  1794. command = "eodlit",
  1795.  
  1796. max = 5,
  1797.  
  1798. salary = 750,
  1799.  
  1800. admin = 0,
  1801.  
  1802. vote = false,
  1803.  
  1804. hasLicense = false,
  1805.  
  1806. category = "Clone Engineers",
  1807.  
  1808. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"EOD Lieutenant") end if CLIENT then return true end end,
  1809.  
  1810. PlayerLoadout = function(ply) ply:SetHealth(6000) ply:GiveAmmo(5000, "ar2") end,
  1811.  
  1812. PlayerSpawn = function(ply) ply:SetMaxHealth(6000) end,
  1813.  
  1814. level = 0
  1815.  
  1816.  
  1817.  
  1818. -- Insert customCheck here if you have one and want one.
  1819.  
  1820. })
  1821.  
  1822.  
  1823.  
  1824. TEAM_EODTRP = DarkRP.createJob("EOD Trooper", {
  1825.  
  1826. color = Color(224, 209, 45, 255),
  1827.  
  1828. model = {"models/player/emp/starwars/eodmed.mdl"},
  1829.  
  1830. description = [[Congratulations, you are now a member of the Clone Engineers!]],
  1831.  
  1832. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","repair_tool"},
  1833.  
  1834. command = "eodtrp",
  1835.  
  1836. max = 0,
  1837.  
  1838. salary = 750,
  1839.  
  1840. admin = 0,
  1841.  
  1842. vote = false,
  1843.  
  1844. hasLicense = false,
  1845.  
  1846. category = "Clone Engineers",
  1847.  
  1848. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"EOD Trooper") end if CLIENT then return true end end,
  1849.  
  1850. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1851.  
  1852. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1853.  
  1854. level = 0
  1855.  
  1856.  
  1857.  
  1858. -- Insert customCheck here if you have one and want one.
  1859.  
  1860. })
  1861.  
  1862.  
  1863.  
  1864. TEAM_EODMEDIC = DarkRP.createJob("EOD Medic", {
  1865.  
  1866. color = Color(224, 209, 45, 255),
  1867.  
  1868. model = {"models/player/emp/starwars/eodmed.mdl"},
  1869.  
  1870. description = [[Congratulations, you are now a member of the Clone Engineers!]],
  1871.  
  1872. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","repair_tool"},
  1873.  
  1874. command = "eodmedic",
  1875.  
  1876. max = 0,
  1877.  
  1878. salary = 750,
  1879.  
  1880. admin = 0,
  1881.  
  1882. vote = false,
  1883.  
  1884. hasLicense = false,
  1885.  
  1886. category = "Clone Engineers",
  1887.  
  1888. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"EOD Medic") end if CLIENT then return true end end,
  1889.  
  1890. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1891.  
  1892. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1893.  
  1894. level = 0
  1895.  
  1896.  
  1897.  
  1898. -- Insert customCheck here if you have one and want one.
  1899.  
  1900. })
  1901.  
  1902.  
  1903.  
  1904. TEAM_EODSRG = DarkRP.createJob("EOD Sergeant", {
  1905.  
  1906. color = Color(224, 209, 45, 255),
  1907.  
  1908. model = {"models/player/emp/starwars/eodlit.mdl"},
  1909.  
  1910. description = [[Congratulations, you are now a member of the Clone Engineers!]],
  1911.  
  1912. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","repair_tool"},
  1913.  
  1914. command = "eodsrg",
  1915.  
  1916. max = 0,
  1917.  
  1918. salary = 750,
  1919.  
  1920. admin = 0,
  1921.  
  1922. vote = false,
  1923.  
  1924. hasLicense = false,
  1925.  
  1926. category = "Clone Engineers",
  1927.  
  1928. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"EOD Sergeant") end if CLIENT then return true end end,
  1929.  
  1930. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  1931.  
  1932. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  1933.  
  1934. level = 0
  1935.  
  1936.  
  1937.  
  1938. -- Insert customCheck here if you have one and want one.
  1939.  
  1940. })
  1941.  
  1942.  
  1943.  
  1944. TEAM_RMTCOMMANDER = DarkRP.createJob("Platinum VIP Republic Melee Trooper Commander", {
  1945.  
  1946. color = Color(219, 219, 219, 255),
  1947.  
  1948. model = {"models/kriegsyntax/sw_752/meleetrooper_est.mdl"},
  1949.  
  1950. description = [[Congratulations You Are a Commander of Your Own Regiment!]],
  1951.  
  1952. weapons = {"tfa_swch_dc17", "weapon_lightsaber", "weapon_camo"},
  1953.  
  1954. command = "rmtco",
  1955.  
  1956. max = 2,
  1957.  
  1958. salary = 500,
  1959.  
  1960. admin = 0,
  1961.  
  1962. vote = false,
  1963.  
  1964. hasLicense = false,
  1965.  
  1966. category = "Republic Melee Troopers",
  1967.  
  1968. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Platinum VIP Republic Melee Trooper Commander") and ply:CheckGroup("platinum") end if CLIENT then return true end end,
  1969.  
  1970. PlayerLoadout = function(ply) ply:SetHealth(15000) ply:GiveAmmo(5000, "ar2") end,
  1971.  
  1972. PlayerSpawn = function(ply) ply:SetMaxHealth(15000) end,
  1973.  
  1974. level = 90
  1975.  
  1976. -- Insert customCheck here if you have one and want one.
  1977.  
  1978. })
  1979.  
  1980.  
  1981.  
  1982. TEAM_RMTLT = DarkRP.createJob("Platinum VIP Republic Melee Trooper Lieutenant", {
  1983.  
  1984. color = Color(219, 219, 219, 255),
  1985.  
  1986. model = {"models/kriegsyntax/sw_752/meleetrooper_est.mdl"},
  1987.  
  1988. description = [[Congratulations You Are Now A Lieutenant Of The Republic Melee Troopers!]],
  1989.  
  1990. weapons = {"tfa_swch_dc17", "weapon_lightsaber", "weapon_camo"},
  1991.  
  1992. command = "rmtlt",
  1993.  
  1994. max = 5,
  1995.  
  1996. salary = 450,
  1997.  
  1998. admin = 0,
  1999.  
  2000. vote = false,
  2001.  
  2002. hasLicense = false,
  2003.  
  2004. category = "Republic Melee Troopers",
  2005.  
  2006. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("platinum") end if CLIENT then return true end end,
  2007.  
  2008. PlayerLoadout = function(ply) ply:SetHealth(15000) ply:GiveAmmo(5000, "ar2") end,
  2009.  
  2010. PlayerSpawn = function(ply) ply:SetMaxHealth(15000) end,
  2011.  
  2012. level = 0
  2013.  
  2014. -- Insert customCheck here if you have one and want one.
  2015.  
  2016. })
  2017.  
  2018.  
  2019.  
  2020. TEAM_RMTTRP = DarkRP.createJob("Platinum VIP Republic Melee Trooper", {
  2021.  
  2022. color = Color(219, 219, 219, 255),
  2023.  
  2024. model = {"models/kriegsyntax/sw_752/meleetrooper_est.mdl"},
  2025.  
  2026. description = [[Congratulations You Are Now A Member Of The Republic Melee Troopers!]],
  2027.  
  2028. weapons = {"tfa_swch_dc17", "weapon_lightsaber", "weapon_camo"},
  2029.  
  2030. command = "rmttrp",
  2031.  
  2032. max = 0,
  2033.  
  2034. salary = 450,
  2035.  
  2036. admin = 0,
  2037.  
  2038. vote = false,
  2039.  
  2040. hasLicense = false,
  2041.  
  2042. category = "Republic Melee Troopers",
  2043.  
  2044. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("platinum") end if CLIENT then return true end end,
  2045.  
  2046. PlayerLoadout = function(ply) ply:SetHealth(15000) ply:GiveAmmo(5000, "ar2") end,
  2047.  
  2048. PlayerSpawn = function(ply) ply:SetMaxHealth(15000) end,
  2049.  
  2050. level = 0
  2051.  
  2052. -- Insert customCheck here if you have one and want one.
  2053.  
  2054. })
  2055.  
  2056.  
  2057.  
  2058. TEAM_C3PO = DarkRP.createJob("VIP Protocol Droid", {
  2059.  
  2060. color = Color(235, 215, 0, 255),
  2061.  
  2062. model = {"models/player/b4p/b4p_c3po.mdl"},
  2063.  
  2064. description = [[You are a Protocol Droid. Aid the republic in any way you can.]],
  2065.  
  2066. command = "c3po",
  2067.  
  2068. max = 0,
  2069.  
  2070. salary = 450,
  2071.  
  2072. admin = 0,
  2073.  
  2074. vote = false,
  2075.  
  2076. hasLicense = false,
  2077.  
  2078. category = "Neutral",
  2079.  
  2080. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("vip") end if CLIENT then return true end end,
  2081.  
  2082. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  2083.  
  2084. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  2085.  
  2086. level = 0
  2087.  
  2088. -- Insert customCheck here if you have one and want one.
  2089.  
  2090. })
  2091.  
  2092.  
  2093.  
  2094. TEAM_R2 = DarkRP.createJob("VIP Astromech Droid", {
  2095.  
  2096. color = Color(65, 190, 232, 255),
  2097.  
  2098. model = {"models/francis115/r2d2_whole.mdl"},
  2099.  
  2100. description = [[You are a Astromech Droid. Find a jedi to be your master and aid the republic in any way you can.]],
  2101.  
  2102. weapons = {"repair_tool"},
  2103.  
  2104. command = "r2",
  2105.  
  2106. max = 0,
  2107.  
  2108. salary = 450,
  2109.  
  2110. admin = 0,
  2111.  
  2112. vote = false,
  2113.  
  2114. hasLicense = false,
  2115.  
  2116. category = "Neutral",
  2117.  
  2118. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("vip") end if CLIENT then return true end end,
  2119.  
  2120. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  2121.  
  2122. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  2123.  
  2124. level = 0
  2125.  
  2126. -- Insert customCheck here if you have one and want one.
  2127.  
  2128. })
  2129.  
  2130.  
  2131.  
  2132. TEAM_JAWA = DarkRP.createJob("VIP Jawa", {
  2133.  
  2134. color = Color(156, 99, 0, 255),
  2135.  
  2136. model = {"models/player/b4p/b4p_jawa.mdl"},
  2137.  
  2138. description = [[You are a Jawa! DO NOT MINGE, You are a guest on the ship.]],
  2139.  
  2140. weapons = {"repair_tool"},
  2141.  
  2142. command = "jawa",
  2143.  
  2144. max = 0,
  2145.  
  2146. salary = 450,
  2147.  
  2148. admin = 0,
  2149.  
  2150. vote = false,
  2151.  
  2152. hasLicense = false,
  2153.  
  2154. category = "Neutral",
  2155.  
  2156. modelScale = 0.6,
  2157.  
  2158. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("vip") end if CLIENT then return true end end,
  2159.  
  2160. PlayerLoadout = function(ply) ply:SetHealth(2000) ply:GiveAmmo(5000, "ar2") end,
  2161.  
  2162. PlayerSpawn = function(ply) ply:SetMaxHealth(2000) end,
  2163.  
  2164. level = 0
  2165.  
  2166. -- Insert customCheck here if you have one and want one.
  2167.  
  2168. })
  2169.  
  2170.  
  2171.  
  2172. TEAM_GRANDADMIRAL = DarkRP.createJob("Grand Admiral", {
  2173.  
  2174. color = Color(122, 122, 122, 255),
  2175.  
  2176. model = {"models/player/scifi_bill.mdl"},
  2177.  
  2178. description = [[You Are The Grand Admiral! Can Spawn: N-1 Fighter]],
  2179.  
  2180. weapons = {"tfa_sw_pestardual","tfa_sw_pestardual"},
  2181.  
  2182. command = "grandadmiral",
  2183.  
  2184. max = 1,
  2185.  
  2186. salary = 700,
  2187.  
  2188. admin = 0,
  2189.  
  2190. vote = false,
  2191.  
  2192. hasLicense = false,
  2193.  
  2194. category = "Fleet Officers",
  2195.  
  2196. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Grand Admiral") end if CLIENT then return true end end,
  2197.  
  2198. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  2199.  
  2200. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  2201.  
  2202. level = 100,
  2203.  
  2204. sortOrder = 1
  2205.  
  2206. -- Insert customCheck here if you have one and want one.
  2207.  
  2208. })
  2209.  
  2210.  
  2211.  
  2212. TEAM_FLEETADMIRAL = DarkRP.createJob("Admiral", {
  2213.  
  2214. color = Color(255, 0, 224, 255),
  2215.  
  2216. model = {"models/lt_c/sci_fi/humans/male_08.mdl"}, --models/player/wullf/wullf.mdl
  2217.  
  2218. description = [[You Are The Admiral!]],
  2219.  
  2220. weapons = {"weapon_tfa_pestar34"},
  2221.  
  2222. command = "viceadmiral",
  2223.  
  2224. max = 2,
  2225.  
  2226. salary = 700,
  2227.  
  2228. admin = 0,
  2229.  
  2230. vote = false,
  2231.  
  2232. hasLicense = true,
  2233.  
  2234. candemote = true,
  2235.  
  2236. category = "Fleet Officers",
  2237.  
  2238. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Admiral") end if CLIENT then return true end end,
  2239.  
  2240. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  2241.  
  2242. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  2243.  
  2244. level = 95,
  2245.  
  2246. sortOrder = 10
  2247.  
  2248. })
  2249.  
  2250.  
  2251.  
  2252. TEAM_FLEETOFFICER = DarkRP.createJob("Fleet Officer", {
  2253.  
  2254. color = Color(122, 122, 122, 255),
  2255.  
  2256. model = {"models/player/scifi_female_01.mdl", "models/player/scifi_male_06.mdl", "models/player/scifi_fang.mdl", "models/player/scifi_male_02.mdl", "models/player/scifi_male_09.mdl",
  2257.  
  2258. "models/player/scifi_mp3.mdl", "models/player/scifi_rochelle.mdl", "models/player/scifi_wraith.mdl", "models/player/scifi_zoey.mdl"},
  2259.  
  2260. description = [[Congratulations You Are Now A Member Of The Fleet! Can Spawn: N-1 Fighter]],
  2261.  
  2262. weapons = {"tfa_swch_elg3a"},
  2263.  
  2264. command = "fleetofficer",
  2265.  
  2266. max = 0,
  2267.  
  2268. salary = 700,
  2269.  
  2270. admin = 0,
  2271.  
  2272. vote = false,
  2273.  
  2274. hasLicense = false,
  2275.  
  2276. category = "Fleet Officers",
  2277.  
  2278. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Fleet Officer") end if CLIENT then return true end end,
  2279.  
  2280. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  2281.  
  2282. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  2283.  
  2284. level = 90,
  2285.  
  2286. sortOrder = 10
  2287.  
  2288. -- Insert customCheck here if you have one and want one.
  2289.  
  2290. })
  2291.  
  2292.  
  2293.  
  2294.  
  2295.  
  2296. TEAM_BATTALIONGENERAL = DarkRP.createJob("Battalion General", {
  2297.  
  2298. color = Color(122, 122, 122, 255),
  2299.  
  2300. model = {
  2301.  
  2302. "models/player/asgclonewars/shadow_commander/shadow_commander.mdl"
  2303.  
  2304. },
  2305.  
  2306. description = [[Congratulations Your Are The General Of Your Own Battalion!]],
  2307.  
  2308. weapons = {"tfa_sw_dc17dual","tfa_dc15a_expanded"},
  2309.  
  2310. command = "bg",
  2311.  
  2312. max = 1,
  2313.  
  2314. salary = 700,
  2315.  
  2316. admin = 0,
  2317.  
  2318. vote = false,
  2319.  
  2320. hasLicense = false,
  2321.  
  2322. category = "Fleet Officers",
  2323.  
  2324. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Battalion General") end if CLIENT then return true end end,
  2325.  
  2326. PlayerLoadout = function(ply) ply:SetHealth(9000) ply:GiveAmmo(5000, "ar2") end,
  2327.  
  2328. PlayerSpawn = function(ply) ply:SetMaxHealth(9000) end,
  2329.  
  2330. level = 100,
  2331.  
  2332. sortOrder = 2
  2333.  
  2334. -- Insert customCheck here if you have one and want one.
  2335.  
  2336. })
  2337.  
  2338.  
  2339.  
  2340. TEAM_WOOKIE = DarkRP.createJob("VIP Wookie", {
  2341.  
  2342. color = Color(0, 255, 128, 255),
  2343.  
  2344. model = {"models/player/b4p/b4p_chewbacca.mdl"},
  2345.  
  2346. description = [[You Are A Wookie! ]],
  2347.  
  2348. weapons = {"tfa_sw_bowcaster"},
  2349.  
  2350. command = "wookie",
  2351.  
  2352. max = 0,
  2353.  
  2354. salary = 700,
  2355.  
  2356. admin = 0,
  2357.  
  2358. vote = false,
  2359.  
  2360. hasLicense = false,
  2361.  
  2362. category = "Neutral",
  2363.  
  2364. modelScale = 1.2,
  2365.  
  2366.  
  2367. PlayerLoadout = function(ply) ply:SetHealth(8000) ply:GiveAmmo(5000, "ar2") end,
  2368.  
  2369. PlayerSpawn = function(ply) ply:SetMaxHealth(8000) end,
  2370.  
  2371. level = 0
  2372.  
  2373. -- Insert customCheck here if you have one and want one.
  2374.  
  2375. })
  2376.  
  2377.  
  2378.  
  2379. TEAM_BOUNTYHUNTER = DarkRP.createJob("VIP Republic Bounty Hunter", {
  2380.  
  2381. color = Color(0, 255, 128, 255),
  2382.  
  2383. model = {"models/porky-da-corgi/starwars/mandalorians/bountyhunter.mdl"},
  2384.  
  2385. description = [[You Are A Bounty Hunter that works for the Republic.
  2386.  
  2387.  
  2388.  
  2389. Maybe one day you'll be as savage as Kraven Vos...]],
  2390.  
  2391. weapons = {"tfa_sw_kyd21","tfa_swch_ee3","tfa_sw_cisshot"},
  2392.  
  2393. command = "bountyhunter",
  2394.  
  2395. max = 0,
  2396.  
  2397. salary = 700,
  2398.  
  2399. admin = 0,
  2400.  
  2401. vote = false,
  2402.  
  2403. hasLicense = false,
  2404.  
  2405. category = "Neutral",
  2406.  
  2407. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("vip") end if CLIENT then return true end end,
  2408.  
  2409. PlayerLoadout = function(ply) ply:SetHealth(7500) ply:GiveAmmo(5000, "ar2") end,
  2410.  
  2411. PlayerSpawn = function(ply) ply:SetMaxHealth(7500) ply:SetBodygroup(1,1) end,
  2412.  
  2413. level = 0
  2414.  
  2415. -- Insert customCheck here if you have one and want one.
  2416.  
  2417. })
  2418.  
  2419.  
  2420.  
  2421. TEAM_JEDIMASTER = DarkRP.createJob("Platinum VIP Jedi Master", {
  2422.  
  2423. color = Color(0, 166, 255, 255),
  2424.  
  2425. model = {
  2426.  
  2427. "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl",
  2428.  
  2429. },
  2430.  
  2431. description = [[You Are A Master One of The Leading Members Of The Jedi Order! Can Spawn: Eta-2, Azure Angel]],
  2432.  
  2433. weapons = {"weapon_lightsaber", "tfa_swch_de10","gmod_tool"},
  2434.  
  2435. command = "master",
  2436.  
  2437. max = 0,
  2438.  
  2439. salary = 1000,
  2440.  
  2441. admin = 0,
  2442.  
  2443. vote = false,
  2444.  
  2445. hasLicense = false,
  2446.  
  2447. category = "Jedi",
  2448.  
  2449. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("platinum") end if CLIENT then return true end end,
  2450.  
  2451. PlayerLoadout = function(ply) ply:SetHealth(20000) ply:GiveAmmo(5000, "ar2") end,
  2452.  
  2453. PlayerSpawn = function(ply) ply:SetMaxHealth(20000) end,
  2454.  
  2455. level = 90
  2456.  
  2457. -- Insert customCheck here if you have one and want one.
  2458.  
  2459. })
  2460.  
  2461.  
  2462.  
  2463. TEAM_JEDIKNIGHT = DarkRP.createJob("Elite VIP Jedi Knight", {
  2464.  
  2465. color = Color(0, 166, 255, 255),
  2466.  
  2467. model = {"models/grealms/characters/jedibattlelord/jedibattlelord_06.mdl"},
  2468.  
  2469. description = [[You Are A Knight, The Backbone Of The Jedi Order! Can Spawn: Eta-2, Azure Angel]],
  2470.  
  2471. weapons = {"weapon_lightsaber","tfa_swch_de10","gmod_tool"},
  2472.  
  2473. command = "knight",
  2474.  
  2475. max = 0,
  2476.  
  2477. salary = 1000,
  2478.  
  2479. admin = 0,
  2480.  
  2481. vote = false,
  2482.  
  2483. hasLicense = false,
  2484.  
  2485. category = "Jedi",
  2486.  
  2487. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("elitevip") end if CLIENT then return true end end,
  2488.  
  2489. PlayerLoadout = function(ply) ply:SetHealth(15000) ply:GiveAmmo(5000, "ar2") end,
  2490.  
  2491. PlayerSpawn = function(ply) ply:SetMaxHealth(15000) end,
  2492.  
  2493. level = 60
  2494.  
  2495. -- Insert customCheck here if you have one and want one.
  2496.  
  2497. })
  2498.  
  2499.  
  2500.  
  2501. TEAM_JEDIPADAWAN = DarkRP.createJob("VIP Jedi Padawan", {
  2502.  
  2503. color = Color(0, 166, 255, 255),
  2504.  
  2505. model = {"models/grealms/characters/casualjedi/casualjedi_02.mdl"},
  2506.  
  2507. description = [[You Are A Padawan, You Must Follow Your Masters Teachings! Can Spawn: Eta-2, Azure Angel]],
  2508.  
  2509. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2510.  
  2511. command = "padawan",
  2512.  
  2513. max = 0,
  2514.  
  2515. salary = 1000,
  2516.  
  2517. admin = 0,
  2518.  
  2519. vote = false,
  2520.  
  2521. hasLicense = false,
  2522.  
  2523. category = "Jedi",
  2524.  
  2525. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Trooper") and ply:CheckGroup("vip") end if CLIENT then return true end end,
  2526.  
  2527. PlayerLoadout = function(ply) ply:SetHealth(10000) ply:GiveAmmo(5000, "ar2") end,
  2528.  
  2529. PlayerSpawn = function(ply) ply:SetMaxHealth(10000) end,
  2530.  
  2531. level = 30
  2532.  
  2533. -- Insert customCheck here if you have one and want one.
  2534.  
  2535. })
  2536.  
  2537.  
  2538.  
  2539. TEAM_YODA = DarkRP.createJob("Yoda", {
  2540.  
  2541. color = Color(65, 230, 0, 255),
  2542.  
  2543. model = {"models/tfa/comm/gg/pm_sw_yodanojig.mdl"},
  2544.  
  2545. description = [[You Are Yoda, The Leading Member Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2546.  
  2547. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2548.  
  2549. command = "yoda",
  2550.  
  2551. max = 1,
  2552.  
  2553. salary = 1000,
  2554.  
  2555. admin = 0,
  2556.  
  2557. vote = false,
  2558.  
  2559. hasLicense = false,
  2560.  
  2561. category = "Jedi",
  2562.  
  2563. modelScale = 0.6,
  2564.  
  2565. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Yoda") end if CLIENT then return true end end,
  2566.  
  2567. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2568.  
  2569. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2570.  
  2571. level = 100
  2572.  
  2573. -- Insert customCheck here if you have one and want one.
  2574.  
  2575. })
  2576.  
  2577.  
  2578.  
  2579. TEAM_MACE = DarkRP.createJob("Mace Windu", {
  2580.  
  2581. color = Color(242, 0, 255, 255),
  2582.  
  2583. model = {"models/player/mace/mace.mdl"},
  2584.  
  2585. description = [[You Are Mace Windu, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2586.  
  2587. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2588.  
  2589. command = "mace",
  2590.  
  2591. max = 1,
  2592.  
  2593. salary = 1000,
  2594.  
  2595. admin = 0,
  2596.  
  2597. vote = false,
  2598.  
  2599. hasLicense = false,
  2600.  
  2601. category = "Jedi",
  2602.  
  2603. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Mace Windu") end if CLIENT then return true end end,
  2604.  
  2605. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2606.  
  2607. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2608.  
  2609. level = 100
  2610.  
  2611. -- Insert customCheck here if you have one and want one.
  2612.  
  2613. })
  2614.  
  2615.  
  2616.  
  2617. TEAM_ANAKIN = DarkRP.createJob("Anakin Skywalker", {
  2618.  
  2619. color = Color(0, 166, 255, 255),
  2620.  
  2621. model = {"models/tfa/comm/gg/pm_sw_anakin_v2.mdl"},
  2622.  
  2623. description = [[You Are Anakin Skywalker, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2624.  
  2625. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2626.  
  2627. command = "anakin",
  2628.  
  2629. max = 1,
  2630.  
  2631. salary = 1000,
  2632.  
  2633. admin = 0,
  2634.  
  2635. vote = false,
  2636.  
  2637. hasLicense = false,
  2638.  
  2639. category = "Jedi",
  2640.  
  2641. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Anakin Skywalker") end if CLIENT then return true end end,
  2642.  
  2643. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2644.  
  2645. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2646.  
  2647. level = 100
  2648.  
  2649. -- Insert customCheck here if you have one and want one.
  2650.  
  2651. })
  2652.  
  2653.  
  2654.  
  2655. TEAM_OBIWAN = DarkRP.createJob("Obi-Wan Kenobi", {
  2656.  
  2657. color = Color(0, 166, 255, 255),
  2658.  
  2659. model = {"models/player/generalkenobi/cgikenobi.mdl"},
  2660.  
  2661. description = [[You Are Obi-Wan Kenobi, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2662.  
  2663. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2664.  
  2665. command = "obiwan",
  2666.  
  2667. max = 1,
  2668.  
  2669. salary = 1000,
  2670.  
  2671. admin = 0,
  2672.  
  2673. vote = false,
  2674.  
  2675. hasLicense = false,
  2676.  
  2677. category = "Jedi",
  2678.  
  2679. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Obi-Wan Kenobi") end if CLIENT then return true end end,
  2680.  
  2681. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2682.  
  2683. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2684.  
  2685. level = 100
  2686.  
  2687. -- Insert customCheck here if you have one and want one.
  2688.  
  2689. })
  2690.  
  2691.  
  2692.  
  2693. TEAM_PLOKOON = DarkRP.createJob("Plo Koon", {
  2694.  
  2695. color = Color(0, 166, 255, 255),
  2696.  
  2697. model = {"models/player/plokoon/plokoon.mdl"},
  2698.  
  2699. description = [[You Are Plo Koon, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2700.  
  2701. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2702.  
  2703. command = "plo",
  2704.  
  2705. max = 1,
  2706.  
  2707. salary = 1000,
  2708.  
  2709. admin = 0,
  2710.  
  2711. vote = false,
  2712.  
  2713. hasLicense = false,
  2714.  
  2715. category = "Jedi",
  2716.  
  2717. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Plo Koon") end if CLIENT then return true end end,
  2718.  
  2719. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2720.  
  2721. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2722.  
  2723. level = 100
  2724.  
  2725. -- Insert customCheck here if you have one and want one.
  2726.  
  2727. })
  2728.  
  2729.  
  2730.  
  2731. TEAM_AHSOKA = DarkRP.createJob("Ahsoka", {
  2732.  
  2733. color = Color(255, 98, 0, 255),
  2734.  
  2735. model = {"models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl"},
  2736.  
  2737. description = [[You Are Ahsoka Tano, One The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2738.  
  2739. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2740.  
  2741. command = "ahsoka",
  2742.  
  2743. max = 1,
  2744.  
  2745. salary = 1000,
  2746.  
  2747. admin = 0,
  2748.  
  2749. vote = false,
  2750.  
  2751. hasLicense = false,
  2752.  
  2753. category = "Jedi",
  2754.  
  2755. modelScale = 1,
  2756.  
  2757. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Ahsoka") end if CLIENT then return true end end,
  2758.  
  2759. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2760.  
  2761. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2762.  
  2763. level = 100
  2764.  
  2765. -- Insert customCheck here if you have one and want one.
  2766.  
  2767. })
  2768.  
  2769.  
  2770.  
  2771. TEAM_MUNDI = DarkRP.createJob("Ki Adi Mundi", {
  2772.  
  2773. color = Color(0, 166, 255, 255),
  2774.  
  2775. model = {"models/player/nav/mundi.mdl"},
  2776.  
  2777. description = [[You Are Ki Adi Mundi, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2778.  
  2779. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2780.  
  2781. command = "mundi",
  2782.  
  2783. max = 1,
  2784.  
  2785. salary = 1000,
  2786.  
  2787. admin = 0,
  2788.  
  2789. vote = false,
  2790.  
  2791. hasLicense = false,
  2792.  
  2793. category = "Jedi",
  2794.  
  2795. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Ki Adi Mundi") end if CLIENT then return true end end,
  2796.  
  2797. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2798.  
  2799. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2800.  
  2801. level = 100
  2802.  
  2803. -- Insert customCheck here if you have one and want one.
  2804.  
  2805. })
  2806.  
  2807.  
  2808.  
  2809. TEAM_AAYLA = DarkRP.createJob("Aayla Secura", {
  2810.  
  2811. color = Color(0, 166, 255, 255),
  2812.  
  2813. model = {"models/player/nav/aayla.mdl"},
  2814.  
  2815. description = [[You Are Aayla Secura, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2816.  
  2817. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2818.  
  2819. command = "aayla",
  2820.  
  2821. max = 1,
  2822.  
  2823. salary = 1000,
  2824.  
  2825. admin = 0,
  2826.  
  2827. vote = false,
  2828.  
  2829. hasLicense = false,
  2830.  
  2831. category = "Jedi",
  2832.  
  2833. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Aayla Secura") end if CLIENT then return true end end,
  2834.  
  2835. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2836.  
  2837. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2838.  
  2839. level = 100
  2840.  
  2841. -- Insert customCheck here if you have one and want one.
  2842.  
  2843. })
  2844.  
  2845.  
  2846.  
  2847. TEAM_FISTO = DarkRP.createJob("Kit Fisto", {
  2848.  
  2849. color = Color(65, 230, 0, 255),
  2850.  
  2851. model = {"models/player/nav/kitfisto.mdl"},
  2852.  
  2853. description = [[You Are Kit Fisto, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2854.  
  2855. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2856.  
  2857. command = "fisto",
  2858.  
  2859. max = 1,
  2860.  
  2861. salary = 1000,
  2862.  
  2863. admin = 0,
  2864.  
  2865. vote = false,
  2866.  
  2867. hasLicense = false,
  2868.  
  2869. category = "Jedi",
  2870.  
  2871. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Kit Fisto") end if CLIENT then return true end end,
  2872.  
  2873. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2874.  
  2875. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2876.  
  2877. level = 100
  2878.  
  2879. -- Insert customCheck here if you have one and want one.
  2880.  
  2881. })
  2882.  
  2883.  
  2884.  
  2885. TEAM_SHAAKTI = DarkRP.createJob("Shaak Ti", {
  2886.  
  2887. color = Color(255, 56, 56, 255),
  2888.  
  2889. model = {"models/tfa/comm/gg/pm_sw_shaakti.mdl"},
  2890.  
  2891. description = [[You Are Shaak Ti, One of The Leading Members Of The Jedi Council! Can Spawn: Eta-2, Azure Angel]],
  2892.  
  2893. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2894.  
  2895. command = "shaakti",
  2896.  
  2897. max = 1,
  2898.  
  2899. salary = 1000,
  2900.  
  2901. admin = 0,
  2902.  
  2903. vote = false,
  2904.  
  2905. hasLicense = false,
  2906.  
  2907. category = "Jedi",
  2908.  
  2909. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Shaak Ti") end if CLIENT then return true end end,
  2910.  
  2911. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2912.  
  2913. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2914.  
  2915. level = 100
  2916.  
  2917. -- Insert customCheck here if you have one and want one.
  2918.  
  2919. })
  2920.  
  2921.  
  2922.  
  2923. TEAM_JEDIGUARDIAN = DarkRP.createJob("Jedi Guardian", {
  2924.  
  2925. color = Color(213, 219, 35, 255),
  2926.  
  2927. model = {"models/jazzmcfly/jka/jtg/jtg.mdl"},
  2928.  
  2929. description = [[]],
  2930.  
  2931. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2932.  
  2933. command = "jediguardian",
  2934.  
  2935. max = 1,
  2936.  
  2937. salary = 1000,
  2938.  
  2939. admin = 0,
  2940.  
  2941. vote = false,
  2942.  
  2943. hasLicense = false,
  2944.  
  2945. category = "Jedi",
  2946.  
  2947. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Jedi Guardian") end if CLIENT then return true end end,
  2948.  
  2949. PlayerLoadout = function(ply) ply:SetHealth(20000) ply:GiveAmmo(5000, "ar2") end,
  2950.  
  2951. PlayerSpawn = function(ply) ply:SetMaxHealth(20000) end,
  2952.  
  2953. level = 100
  2954.  
  2955. -- Insert customCheck here if you have one and want one.
  2956.  
  2957. })
  2958.  
  2959.  
  2960.  
  2961. TEAM_QUINTANVOS = DarkRP.createJob("Quinlan Vos", {
  2962.  
  2963. color = Color(28, 189, 47, 255),
  2964.  
  2965. model = {"models/tfa/comm/gg/pm_sw_quinlanvos.mdl"},
  2966.  
  2967. description = [[Jedi General of the 442nd]],
  2968.  
  2969. weapons = {"weapon_lightsaber","tfa_swch_de10"},
  2970.  
  2971. command = "quintanvos",
  2972.  
  2973. max = 1,
  2974.  
  2975. salary = 1000,
  2976.  
  2977. admin = 0,
  2978.  
  2979. vote = false,
  2980.  
  2981. hasLicense = false,
  2982.  
  2983. category = "Jedi",
  2984.  
  2985. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Quinlan Vos") end if CLIENT then return true end end,
  2986.  
  2987. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  2988.  
  2989. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  2990.  
  2991. level = 100
  2992.  
  2993. -- Insert customCheck here if you have one and want one.
  2994.  
  2995. })
  2996.  
  2997. -- Insert customCheck here if you have one and want one.
  2998.  
  2999. })
  3000. -- Insert customCheck here if you have one and want one.
  3001.  
  3002. })
  3003.  
  3004.  
  3005.  
  3006. TEAM_AOD = DarkRP.createJob("Staff On Duty", {
  3007.  
  3008. color = Color(255, 250, 110, 255),
  3009.  
  3010. model = {"models/player/asgclonewars/geonosian_drone/geonosian_drone.mdl"},
  3011.  
  3012. description = [[For staff when they are not roleplaying]],
  3013.  
  3014. weapons = {"weapon_physgun"},
  3015.  
  3016. command = "sod",
  3017.  
  3018. max = 0,
  3019.  
  3020. salary = 0,
  3021.  
  3022. admin = 0,
  3023.  
  3024. vote = false,
  3025.  
  3026. hasLicense = false,
  3027.  
  3028. category = "OOC",
  3029.  
  3030. customCheck = function(ply) return CLIENT or ply:CheckGroup("trialmod") or ply:IsAdmin() end,
  3031.  
  3032. PlayerLoadout = function(ply) ply:SetHealth(30000) ply:GiveAmmo(5000, "ar2") end,
  3033.  
  3034. PlayerSpawn = function(ply) ply:SetMaxHealth(30000) end,
  3035.  
  3036. level = 0
  3037.  
  3038. -- Insert customCheck here if you have one and want one.
  3039.  
  3040. })
  3041.  
  3042.  
  3043.  
  3044.  
  3045.  
  3046. -- 327th reg
  3047.  
  3048.  
  3049.  
  3050. TEAM_327COM = DarkRP.createJob("327th Commander", {
  3051.  
  3052. color = Color(100, 255, 221, 255),
  3053.  
  3054. model = {"models/player/sgg/starwars/clonetrooper_bly.mdl"},
  3055.  
  3056. description = [[327th Commander]],
  3057.  
  3058. weapons = {"weapon_tfa_dc15a327","tfa_swch_dc17"},
  3059.  
  3060. command = "327thcmd",
  3061.  
  3062. max = 2,
  3063.  
  3064. salary = 700,
  3065.  
  3066. admin = 0,
  3067.  
  3068. vote = false,
  3069.  
  3070. hasLicense = false,
  3071.  
  3072. category = "327th",
  3073.  
  3074. sortOrder = 1,
  3075.  
  3076. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Commander") end if CLIENT then return true end end,
  3077.  
  3078. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  3079.  
  3080. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  3081.  
  3082. level = 0
  3083.  
  3084. -- Insert customCheck here if you have one and want one.
  3085.  
  3086. })
  3087.  
  3088.  
  3089.  
  3090. TEAM_327EXO = DarkRP.createJob("327th EXO", {
  3091.  
  3092. color = Color(100, 255, 221, 255),
  3093.  
  3094. model = {"models/player/ewq/starwars/assault.mdl"},
  3095.  
  3096. description = [[327th EXO]],
  3097.  
  3098. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3099.  
  3100. command = "327thexo",
  3101.  
  3102. max = 1,
  3103.  
  3104. salary = 700,
  3105.  
  3106. admin = 0,
  3107.  
  3108. vote = false,
  3109.  
  3110. hasLicense = false,
  3111.  
  3112. category = "327th",
  3113.  
  3114. sortOrder = 2,
  3115.  
  3116. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th EXO") end if CLIENT then return true end end,
  3117.  
  3118. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  3119.  
  3120. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  3121.  
  3122. level = 0
  3123.  
  3124. -- Insert customCheck here if you have one and want one.
  3125.  
  3126. })
  3127.  
  3128.  
  3129.  
  3130. TEAM_327Engineer = DarkRP.createJob("327th Engineer", {
  3131.  
  3132. color = Color(100, 255, 221, 255),
  3133.  
  3134. model = {"models/player/ewq/starwars/eng.mdl"},
  3135.  
  3136. description = [[327th Engineer]],
  3137.  
  3138. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","repair_tool"},
  3139.  
  3140. command = "327eng",
  3141.  
  3142. max = 2,
  3143.  
  3144. salary = 700,
  3145.  
  3146. admin = 0,
  3147.  
  3148. vote = false,
  3149.  
  3150. hasLicense = false,
  3151.  
  3152. category = "327th",
  3153.  
  3154. sortOrder = 3,
  3155.  
  3156. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Engineer") end if CLIENT then return true end end,
  3157.  
  3158. PlayerLoadout = function(ply) ply:SetHealth(4000) ply:GiveAmmo(5000, "ar2") end,
  3159.  
  3160. PlayerSpawn = function(ply) ply:SetMaxHealth(4000) end,
  3161.  
  3162. level = 0
  3163.  
  3164. -- Insert customCheck here if you have one and want one.
  3165.  
  3166. })
  3167.  
  3168.  
  3169.  
  3170. TEAM_327EliteTrp = DarkRP.createJob("327th Elite Trooper", {
  3171.  
  3172. color = Color(100, 255, 221, 255),
  3173.  
  3174. model = {"models/player/ewq/starwars/elite.mdl"},
  3175.  
  3176. description = [[327th Elite Trooper]],
  3177.  
  3178. weapons = {"tfa_swch_dc17","tfa_swch_alphablaster"},
  3179.  
  3180. command = "327elite",
  3181.  
  3182. max = 3,
  3183.  
  3184. salary = 700,
  3185.  
  3186. admin = 0,
  3187.  
  3188. vote = false,
  3189.  
  3190. hasLicense = false,
  3191.  
  3192. category = "327th",
  3193.  
  3194. sortOrder = 4,
  3195.  
  3196. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Elite Trooper") end if CLIENT then return true end end,
  3197.  
  3198. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3199.  
  3200. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3201.  
  3202. level = 0
  3203.  
  3204. -- Insert customCheck here if you have one and want one.
  3205.  
  3206. })
  3207.  
  3208.  
  3209.  
  3210. TEAM_327Captain = DarkRP.createJob("327th Captain", {
  3211.  
  3212. color = Color(100, 255, 221, 255),
  3213.  
  3214. model = {"models/player/ewq/starwars/cpt.mdl"},
  3215.  
  3216. description = [[327th Captain]],
  3217.  
  3218. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3219.  
  3220. command = "327captain",
  3221.  
  3222. max = 1,
  3223.  
  3224. salary = 700,
  3225.  
  3226. admin = 0,
  3227.  
  3228. vote = false,
  3229.  
  3230. hasLicense = false,
  3231.  
  3232. category = "327th",
  3233.  
  3234. sortOrder = 5,
  3235.  
  3236. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Captain") end if CLIENT then return true end end,
  3237.  
  3238. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3239.  
  3240. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3241.  
  3242. level = 0
  3243.  
  3244. -- Insert customCheck here if you have one and want one.
  3245.  
  3246. })
  3247.  
  3248.  
  3249.  
  3250. TEAM_327Lieutenant = DarkRP.createJob("327th Lieutenant", {
  3251.  
  3252. color = Color(100, 255, 221, 255),
  3253.  
  3254. model = {"models/player/ewq/starwars/lt.mdl"},
  3255.  
  3256. description = [[327th Lieutenant]],
  3257.  
  3258. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3259.  
  3260. command = "327lietenant",
  3261.  
  3262. max = 6,
  3263.  
  3264. salary = 700,
  3265.  
  3266. admin = 0,
  3267.  
  3268. vote = false,
  3269.  
  3270. hasLicense = false,
  3271.  
  3272. category = "327th",
  3273.  
  3274. sortOrder = 6,
  3275.  
  3276. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Lieutenant") end if CLIENT then return true end end,
  3277.  
  3278. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3279.  
  3280. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3281.  
  3282. level = 0
  3283.  
  3284. -- Insert customCheck here if you have one and want one.
  3285.  
  3286. })
  3287.  
  3288.  
  3289.  
  3290. TEAM_327sgtmajor = DarkRP.createJob("327th Sgt Major", {
  3291.  
  3292. color = Color(100, 255, 221, 255),
  3293.  
  3294. model = {"models/player/ewq/starwars/combat.mdl"},
  3295.  
  3296. description = [[327th Sgt Major]],
  3297.  
  3298. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3299.  
  3300. command = "327sgtmajor",
  3301.  
  3302. max = 5,
  3303.  
  3304. salary = 700,
  3305.  
  3306. admin = 0,
  3307.  
  3308. vote = false,
  3309.  
  3310. hasLicense = false,
  3311.  
  3312. category = "327th",
  3313.  
  3314. sortOrder = 7,
  3315.  
  3316. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Sgt Major") end if CLIENT then return true end end,
  3317.  
  3318. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3319.  
  3320. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3321.  
  3322. level = 0
  3323.  
  3324. -- Insert customCheck here if you have one and want one.
  3325.  
  3326. })
  3327.  
  3328.  
  3329.  
  3330. TEAM_327sgt = DarkRP.createJob("327th Sergeant", {
  3331.  
  3332. color = Color(100, 255, 221, 255),
  3333.  
  3334. model = {"models/player/ewq/starwars/heavy.mdl"},
  3335.  
  3336. description = [[327th Sergeant]],
  3337.  
  3338. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3339.  
  3340. command = "327sgt",
  3341.  
  3342. max = 5,
  3343.  
  3344. salary = 700,
  3345.  
  3346. admin = 0,
  3347.  
  3348. vote = false,
  3349.  
  3350. hasLicense = false,
  3351.  
  3352. category = "327th",
  3353.  
  3354. sortOrder = 8,
  3355.  
  3356. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Sergeant") end if CLIENT then return true end end,
  3357.  
  3358. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3359.  
  3360. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3361.  
  3362. level = 0
  3363.  
  3364. -- Insert customCheck here if you have one and want one.
  3365.  
  3366. })
  3367.  
  3368.  
  3369.  
  3370. TEAM_327trper = DarkRP.createJob("327th Trooper", {
  3371.  
  3372. color = Color(100, 255, 221, 255),
  3373.  
  3374. model = {"models/player/ewq/starwars/trooper.mdl"},
  3375.  
  3376. description = [[327th Sergeant]],
  3377.  
  3378. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17"},
  3379.  
  3380. command = "327trp",
  3381.  
  3382. max = 5,
  3383.  
  3384. salary = 700,
  3385.  
  3386. admin = 0,
  3387.  
  3388. vote = false,
  3389.  
  3390. hasLicense = false,
  3391.  
  3392. category = "327th",
  3393.  
  3394. sortOrder = 9,
  3395.  
  3396. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Trooper") end if CLIENT then return true end end,
  3397.  
  3398. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3399.  
  3400. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3401.  
  3402. level = 0
  3403.  
  3404. -- Insert customCheck here if you have one and want one.
  3405.  
  3406. })
  3407.  
  3408.  
  3409.  
  3410. TEAM_327MEDIC = DarkRP.createJob("327th Medic", {
  3411.  
  3412. color = Color(100, 255, 221, 255),
  3413.  
  3414. model = {"models/player/ewq/starwars/trooper.mdl"},
  3415.  
  3416. description = [[327th Sergeant]],
  3417.  
  3418. weapons = {"tfa_dc15a_expanded","tfa_swch_dc17","med_kit"},
  3419.  
  3420. command = "327medic",
  3421.  
  3422. max = 2,
  3423.  
  3424. salary = 700,
  3425.  
  3426. admin = 0,
  3427.  
  3428. vote = false,
  3429.  
  3430. hasLicense = false,
  3431.  
  3432. category = "327th",
  3433.  
  3434. sortOrder = 9,
  3435.  
  3436. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"327th Medic") end if CLIENT then return true end end,
  3437.  
  3438. PlayerLoadout = function(ply) ply:SetHealth(3000) ply:GiveAmmo(5000, "ar2") end,
  3439.  
  3440. PlayerSpawn = function(ply) ply:SetMaxHealth(3000) end,
  3441.  
  3442. level = 0
  3443.  
  3444. -- Insert customCheck here if you have one and want one.
  3445.  
  3446. })
  3447.  
  3448.  
  3449.  
  3450.  
  3451.  
  3452. -- 5th Fleet Security
  3453.  
  3454.  
  3455.  
  3456. TEAM_5thCO = DarkRP.createJob("5th Fleet Commander", {
  3457.  
  3458. color = Color(42, 103, 209, 255),
  3459.  
  3460. model = {"models/player/5/starwars/elite.mdl"},
  3461.  
  3462. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3463.  
  3464. Their armor sported blue lines across the helmet, torso and thigh.
  3465.  
  3466.  
  3467.  
  3468. You are the Commander lead them with honor.]],
  3469.  
  3470. weapons = {"tfa_swch_alphablaster","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s","gmod_tool","weapon_physgun"},
  3471.  
  3472. command = "5thco",
  3473.  
  3474. max = 1,
  3475.  
  3476. salary = 700,
  3477.  
  3478. admin = 0,
  3479.  
  3480. vote = false,
  3481.  
  3482. hasLicense = false,
  3483.  
  3484. category = "5th Fleet",
  3485.  
  3486. sortOrder = 1,
  3487.  
  3488. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet Commander") end if CLIENT then return true end end,
  3489.  
  3490. PlayerLoadout = function(ply) ply:SetHealth(8500) ply:GiveAmmo(5000, "ar2") end,
  3491.  
  3492. PlayerSpawn = function(ply) ply:SetMaxHealth(8500) end,
  3493.  
  3494. level = 0
  3495.  
  3496. -- Insert customCheck here if you have one and want one.
  3497.  
  3498. })
  3499.  
  3500.  
  3501.  
  3502. TEAM_5thEXO = DarkRP.createJob("5th Fleet EXO", {
  3503.  
  3504. color = Color(42, 103, 209, 255),
  3505.  
  3506. model = {"models/player/5/starwars/commander.mdl"},
  3507.  
  3508. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3509.  
  3510. Their armor sported blue lines across the helmet, torso and thigh.
  3511.  
  3512.  
  3513.  
  3514. You are one of the Senior Officers, it is your responsibility to maintain the regiment and promote those who show excellence in their duties.]],
  3515.  
  3516. weapons = {"tfa_swch_dc15a","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s","gmod_tool","weapon_physgun"},
  3517.  
  3518. command = "5thexo",
  3519.  
  3520. max = 2,
  3521.  
  3522. salary = 700,
  3523.  
  3524. admin = 0,
  3525.  
  3526. vote = false,
  3527.  
  3528. hasLicense = false,
  3529.  
  3530. category = "5th Fleet",
  3531.  
  3532. sortOrder = 2,
  3533.  
  3534. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet EXO") end if CLIENT then return true end end,
  3535.  
  3536. PlayerLoadout = function(ply) ply:SetHealth(7500) ply:GiveAmmo(5000, "ar2") end,
  3537.  
  3538. PlayerSpawn = function(ply) ply:SetMaxHealth(7500) end,
  3539.  
  3540. level = 0
  3541.  
  3542. -- Insert customCheck here if you have one and want one.
  3543.  
  3544. })
  3545.  
  3546.  
  3547.  
  3548. TEAM_5thLT = DarkRP.createJob("5th Fleet Lieutenant", {
  3549.  
  3550. color = Color(42, 103, 209, 255),
  3551.  
  3552. model = {"models/player/5/starwars/esharp.mdl"},
  3553.  
  3554. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3555.  
  3556. Their armor sported blue lines across the helmet, torso and thigh.
  3557.  
  3558.  
  3559.  
  3560. You are an Officers, keep the men in line and lead them to victory or death.]],
  3561.  
  3562. weapons = {"tfa_swch_dc15a","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s"},
  3563.  
  3564. command = "5thlt",
  3565.  
  3566. max = 3,
  3567.  
  3568. salary = 700,
  3569.  
  3570. admin = 0,
  3571.  
  3572. vote = false,
  3573.  
  3574. hasLicense = false,
  3575.  
  3576. category = "5th Fleet",
  3577.  
  3578. sortOrder = 3,
  3579.  
  3580. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet Lieutenant") end if CLIENT then return true end end,
  3581.  
  3582. PlayerLoadout = function(ply) ply:SetHealth(6500) ply:GiveAmmo(5000, "ar2") end,
  3583.  
  3584. PlayerSpawn = function(ply) ply:SetMaxHealth(6500) end,
  3585.  
  3586. level = 0
  3587.  
  3588. -- Insert customCheck here if you have one and want one.
  3589.  
  3590. })
  3591.  
  3592.  
  3593.  
  3594. TEAM_5thSGT = DarkRP.createJob("5th Fleet Sergeant", {
  3595.  
  3596. color = Color(42, 103, 209, 255),
  3597.  
  3598. model = {"models/player/5/starwars/combat.mdl","models/player/5/starwars/sharp.mdl"},
  3599.  
  3600. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3601.  
  3602. Their armor sported blue lines across the helmet, torso and thigh.
  3603.  
  3604.  
  3605.  
  3606. You are now a Sergeant, you are expected to drill the shinies and teach everything you know.]],
  3607.  
  3608. weapons = {"tfa_swch_dc15a","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s"},
  3609.  
  3610. command = "5thsgt",
  3611.  
  3612. max = 5,
  3613.  
  3614. salary = 700,
  3615.  
  3616. admin = 0,
  3617.  
  3618. vote = false,
  3619.  
  3620. hasLicense = false,
  3621.  
  3622. category = "5th Fleet",
  3623.  
  3624. sortOrder = 4,
  3625.  
  3626. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet Sergeant") end if CLIENT then return true end end,
  3627.  
  3628. PlayerLoadout = function(ply) ply:SetHealth(6000) ply:GiveAmmo(5000, "ar2") end,
  3629.  
  3630. PlayerSpawn = function(ply) ply:SetMaxHealth(6000) end,
  3631.  
  3632. level = 0
  3633.  
  3634. -- Insert customCheck here if you have one and want one.
  3635.  
  3636. })
  3637.  
  3638.  
  3639.  
  3640. TEAM_5thMEDIC = DarkRP.createJob("5th Fleet Medic", {
  3641.  
  3642. color = Color(42, 103, 209, 255),
  3643.  
  3644. model = {"models/player/5/starwars/medic.mdl"},
  3645.  
  3646. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3647.  
  3648. Their armor sported blue lines across the helmet, torso and thigh.
  3649.  
  3650.  
  3651.  
  3652. Ignore the their mental health, just stop them from bleeding out damn it!]],
  3653.  
  3654. weapons = {"tfa_swch_dc15a","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s","med_kit"},
  3655.  
  3656. command = "5thmedic",
  3657.  
  3658. max = 2,
  3659.  
  3660. salary = 700,
  3661.  
  3662. admin = 0,
  3663.  
  3664. vote = false,
  3665.  
  3666. hasLicense = false,
  3667.  
  3668. category = "5th Fleet",
  3669.  
  3670. sortOrder = 5,
  3671.  
  3672. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet Medic") end if CLIENT then return true end end,
  3673.  
  3674. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  3675.  
  3676. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  3677.  
  3678. level = 0
  3679.  
  3680. -- Insert customCheck here if you have one and want one.
  3681.  
  3682. })
  3683.  
  3684.  
  3685.  
  3686. TEAM_5thTROOPER = DarkRP.createJob("5th Fleet Trooper", {
  3687.  
  3688. color = Color(42, 103, 209, 255),
  3689.  
  3690. model = {"models/player/5/starwars/trooper.mdl"},
  3691.  
  3692. description = [[The 5th Fleet Security are a group of Clones who specialise in VIP protection and Policing.
  3693.  
  3694. Their armor sported blue lines across the helmet, torso and thigh.
  3695.  
  3696.  
  3697.  
  3698. Welcome to the 5th, keep you head held high, say 'Sir Yes Sir' or 'Sir No Sir'... You'll do fine, trust me.]],
  3699.  
  3700. weapons = {"tfa_swch_dc15a","weapon_cuff_elastic","tfa_swch_dc17","weapon_stunstick","weapon_jew_dc15s"},
  3701.  
  3702. command = "5thtrooper",
  3703.  
  3704. max = 0,
  3705.  
  3706. salary = 700,
  3707.  
  3708. admin = 0,
  3709.  
  3710. vote = false,
  3711.  
  3712. hasLicense = false,
  3713.  
  3714. category = "5th Fleet",
  3715.  
  3716. sortOrder = 6,
  3717.  
  3718. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"5th Fleet Trooper") end if CLIENT then return true end end,
  3719.  
  3720. PlayerLoadout = function(ply) ply:SetHealth(5000) ply:GiveAmmo(5000, "ar2") end,
  3721.  
  3722. PlayerSpawn = function(ply) ply:SetMaxHealth(5000) end,
  3723.  
  3724. level = 0
  3725.  
  3726. -- Insert customCheck here if you have one and want one.
  3727.  
  3728. })
  3729.  
  3730.  
  3731.  
  3732. TEAM_CT = DarkRP.createJob("Clone Private", {
  3733.  
  3734. color = Color(30, 165, 232, 255),
  3735.  
  3736. model = {"models/Player/SGG/Starwars/clonetrooper_clean.mdl"},
  3737.  
  3738. description = [[Congratulations You Have Passed Your Training! Welcome to the Republic!]],
  3739.  
  3740. weapons = {"tfa_swch_dc17","tfa_swch_dc15s"},
  3741.  
  3742. command = "clonepvt",
  3743.  
  3744. max = 0,
  3745.  
  3746. salary = 100,
  3747.  
  3748. admin = 0,
  3749.  
  3750. vote = false,
  3751.  
  3752. hasLicense = false,
  3753.  
  3754. category = "Clone Troopers",
  3755.  
  3756. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Clone Private") end if CLIENT then return true end end,
  3757.  
  3758. PlayerLoadout = function(ply) ply:SetHealth(2000) ply:GiveAmmo(5000, "ar2") end,
  3759.  
  3760. PlayerSpawn = function(ply) ply:SetMaxHealth(2000) end,
  3761.  
  3762.  
  3763.  
  3764. -- Insert customCheck here if you have one and want one.
  3765.  
  3766. })
  3767.  
  3768.  
  3769.  
  3770.  
  3771.  
  3772. TEAM_OMEGASQUADMEDIC = DarkRP.createJob("Omega Squad Medic", {
  3773.  
  3774. color = Color(255, 251, 0, 255),
  3775.  
  3776. model = {"models/player/sgg/starwars/clone_commando_mp_a.mdl"},
  3777.  
  3778. description = [[You Are Part of The Elite Omega Squad!]],
  3779.  
  3780. weapons = {"tfa_swch_dc17m_br","weapon_camo","med_kit","gmod_tool"},
  3781.  
  3782. command = "omegamedic",
  3783.  
  3784. max = 1,
  3785.  
  3786. salary = 750,
  3787.  
  3788. admin = 0,
  3789.  
  3790. vote = false,
  3791.  
  3792. hasLicense = false,
  3793.  
  3794. category = "Omega Squad",
  3795.  
  3796. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Omega Squad Medic") end if CLIENT then return true end end,
  3797.  
  3798. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  3799.  
  3800. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  3801.  
  3802. level = 0
  3803.  
  3804.  
  3805.  
  3806. -- Insert customCheck here if you have one and want one.
  3807.  
  3808. })
  3809.  
  3810.  
  3811.  
  3812. TEAM_OMEGASQUADSNIPER = DarkRP.createJob("Omega Squad Sniper", {
  3813.  
  3814. color = Color(255, 251, 0, 255),
  3815.  
  3816. model = {"models/player/sgg/starwars/clone_commando_mp_a.mdl"},
  3817.  
  3818. description = [[You Are Part of The Elite Omega Squad!]],
  3819.  
  3820. weapons = {"tfa_swch_dc17m_br", "tfa_swch_dc17m_sn", "weapon_752_dc15sa", "weapon_camo", "gmod_tool"},
  3821.  
  3822. command = "omegasniper",
  3823.  
  3824. max = 1,
  3825.  
  3826. salary = 750,
  3827.  
  3828. admin = 0,
  3829.  
  3830. vote = false,
  3831.  
  3832. hasLicense = false,
  3833.  
  3834. category = "Omega Squad",
  3835.  
  3836. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Omega Squad Sniper") end if CLIENT then return true end end,
  3837.  
  3838. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  3839.  
  3840. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  3841.  
  3842. level = 0
  3843.  
  3844.  
  3845.  
  3846. -- Insert customCheck here if you have one and want one.
  3847.  
  3848. })
  3849.  
  3850.  
  3851.  
  3852. TEAM_OMEGASQUADDEMO = DarkRP.createJob("Omega Squad EOD", {
  3853.  
  3854. color = Color(255, 251, 0, 255),
  3855.  
  3856. model = {"models/player/sgg/starwars/clone_commando_mp_a.mdl"},
  3857.  
  3858. description = [[You Are Part of The Elite Omega Squad!]],
  3859.  
  3860. weapons = {"tfa_swch_dc17m_br","tfa_swch_dc17m_at","tfa_swch_dc15sa","weapon_camo","weapon_slam","gmod_tool"},
  3861.  
  3862. command = "omegademo",
  3863.  
  3864. max = 1,
  3865.  
  3866. salary = 750,
  3867.  
  3868. admin = 0,
  3869.  
  3870. vote = false,
  3871.  
  3872. hasLicense = false,
  3873.  
  3874. category = "Omega Squad",
  3875.  
  3876. customCheck = function(ply)if SERVER then return PlychangeAllowed(ply,"Omega Squad EOD") end if CLIENT then return true end end,
  3877.  
  3878. PlayerLoadout = function(ply) ply:SetHealth(7000) ply:GiveAmmo(5000, "ar2") end,
  3879.  
  3880. PlayerSpawn = function(ply) ply:SetMaxHealth(7000) end,
  3881.  
  3882. level = 0
  3883.  
  3884.  
  3885.  
  3886. -- Insert customCheck here if you have one and want one.
  3887.  
  3888. })
  3889.  
  3890.  
  3891.  
  3892.  
  3893.  
  3894. --[[---------------------------------------------------------------------------
  3895.  
  3896. Define which team joining players spawn into and what team you change to if demoted
  3897.  
  3898. ---------------------------------------------------------------------------]]
  3899.  
  3900. GAMEMODE.DefaultTeam = TEAM_CADET
  3901.  
  3902.  
  3903.  
  3904.  
  3905.  
  3906. --[[---------------------------------------------------------------------------
  3907.  
  3908. Define which teams belong to civil protection
  3909.  
  3910. Civil protection can set warrants, make people wanted and do some other police related things
  3911.  
  3912. ---------------------------------------------------------------------------]]
  3913.  
  3914. GAMEMODE.CivilProtection = {
  3915.  
  3916. [TEAM_POLICE] = false,
  3917.  
  3918. [TEAM_CHIEF] = false,
  3919.  
  3920. [TEAM_MAYOR] = false,
  3921.  
  3922. }
  3923. --[[---------------------------------------------------------------------------
  3924. Define which team joining players spawn into and what team you change to if demoted
  3925. ---------------------------------------------------------------------------]]
  3926. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  3927.  
  3928.  
  3929. --[[---------------------------------------------------------------------------
  3930. Define which teams belong to civil protection
  3931. Civil protection can set warrants, make people wanted and do some other police related things
  3932. ---------------------------------------------------------------------------]]
  3933. GAMEMODE.CivilProtection = {
  3934. [TEAM_POLICE] = true,
  3935. [TEAM_CHIEF] = true,
  3936. [TEAM_MAYOR] = true,
  3937. }
  3938.  
  3939. --[[---------------------------------------------------------------------------
  3940. Jobs that are hitmen (enables the hitman menu)
  3941. ---------------------------------------------------------------------------]]
  3942. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement