Advertisement
Guest User

Untitled

a guest
Oct 10th, 2015
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 101.88 KB | None | 0 0
  1.  
  2. -----------------------------------------------------
  3. --[[---------------------------------------------------------------------------
  4.  
  5. DarkRP custom jobs
  6.  
  7. ---------------------------------------------------------------------------
  8.  
  9. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  10.  
  11. Once you've done that, copy and paste the job to this file and edit it.
  12.  
  13.  
  14.  
  15. The default jobs can be found here:
  16.  
  17. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  18.  
  19.  
  20.  
  21. For examples and explanation please visit this wiki page:
  22.  
  23. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  24.  
  25.  
  26.  
  27.  
  28.  
  29. Add jobs under the following line:
  30.  
  31. ---------------------------------------------------------------------------]]
  32.  
  33.  
  34.  
  35. /* CUSTOM COMMANDS FOR JOBS
  36.  
  37.  
  38.  
  39. modelScale = 1.25 -- 90% of the default SIZE OF MODEL.
  40.  
  41.  
  42.  
  43. */
  44.  
  45.  
  46.  
  47. TEAM_CITIZEN = DarkRP.createJob("Clone Recruit", {
  48.  
  49. color = Color(20, 150, 20, 255),
  50.  
  51. model = "models/player/testc/cgi cadet.mdl",
  52.  
  53. description = [[You area Clone Recruit waiting to be trained as a soldier.]],
  54.  
  55. weapons = {},
  56.  
  57. command = "citizen",
  58.  
  59. max = 0,
  60.  
  61. salary = GAMEMODE.Config.normalsalary,
  62.  
  63. admin = 0,
  64.  
  65. vote = false,
  66.  
  67. hasLicense = false,
  68.  
  69. candemote = false,
  70.  
  71. })
  72.  
  73.  
  74.  
  75. TEAM_Clone = AddExtraTeam("Clone Trooper", {
  76.  
  77. color = Color(0, 239, 255, 255),
  78.  
  79. model = "models/player/sgg/starwars/clonetrooper_mark2.mdl",
  80.  
  81. description = [[Clone troopers were an army of identical, genetically-modified clones, created to serve in the Grand Army of the Republic during the full-scale intergalactic conflict that came to be known as the Clone Wars. Grown at an accelerated rate and raised in the laboratories and facilities of Kamino, the clone troopers were trained throughout the first ten years of their lives to become one of the most efficient military forces in galactic history. Bred for the sole purpose of combat, the clones were indoctrinated with unwavering obedience to the Galactic Republic.]],
  82.  
  83. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  84.  
  85. command = "Clone",
  86.  
  87. max = 30,
  88.  
  89. salary = 5,
  90.  
  91. admin = 0,
  92.  
  93. vote = false,
  94.  
  95. hasLicense = false,
  96.  
  97. customCheck = function(ply) return PlychangeAllowed(ply,"Clone Trooper") end,
  98.  
  99. CustomCheckFailMsg = "You are not in the withelist!",
  100.  
  101. category = "Clones",
  102.  
  103. sortOrder = 1,
  104.  
  105. })
  106.  
  107.  
  108.  
  109. TEAM_CloneG = AddExtraTeam("Clone Shock Trooper", {
  110.  
  111. color = Color(0, 239, 255, 255),
  112.  
  113. model = "models/player/sgg/starwars/clonetrooper_thire.mdl",
  114.  
  115. description = [[Clone shock troopers were the special forces clone troopers that formed the Coruscant Guard during the Clone Wars between the Galactic Republic and the Confederacy of Independent Systems. They were trained as elite shock troopers specifically for deployment on the planet Coruscant. There, as well as on a few other select Core Worlds, the clone shock troopers served primarily as security police for Republic government buildings and as prison guards. They also performed duties such as bodyguards for Republic officials and as urban peacekeepers with some troopers trained specifically for riot control.]],
  116.  
  117. weapons = {"weapon_752_dc15a", "weapon_frag", "stunstick", "unarrest_stick", "arrest_stick", "handcuffs"},
  118.  
  119. command = "CloneG",
  120.  
  121. max = 5,
  122.  
  123. salary = 10,
  124.  
  125. admin = 0,
  126.  
  127. vote = false,
  128.  
  129. hasLicense = false,
  130.  
  131. customCheck = function(ply) return PlychangeAllowed(ply,"Clone Shock Trooper") end,
  132.  
  133. CustomCheckFailMsg = "You are not in the withelist!",
  134.  
  135. category = "Clones",
  136.  
  137. sortOrder = 4,
  138.  
  139. })
  140.  
  141.  
  142.  
  143. TEAM_CloneC = AddExtraTeam("Clone Commander", {
  144.  
  145. color = Color(0, 239, 255, 255),
  146.  
  147. model = "models/player/sgg/starwars/clonetrooper_neyo.mdl",
  148.  
  149. description = [[Clone Commander, also known as clone trooper commander, was a rank in the Grand Army of the Republic and was conferred upon clone troopers who each led a large number of fellow troops into combat. Clone Commanders were often in direct contact with, and received orders from, the Jedi who directed them.]],
  150.  
  151. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  152.  
  153. command = "CloneC",
  154.  
  155. max = 1,
  156.  
  157. salary = 20,
  158.  
  159. admin = 0,
  160.  
  161. vote = false,
  162.  
  163. hasLicense = false,
  164.  
  165. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  166.  
  167. customCheck = function(ply) return PlychangeAllowed(ply,"Clone Commander") end,
  168.  
  169. CustomCheckFailMsg = "You are not in the withelist!",
  170.  
  171. category = "Clones",
  172.  
  173. sortOrder = 2,
  174.  
  175. })
  176.  
  177.  
  178.  
  179. TEAM_CloneS = AddExtraTeam("Stripped Clone", {
  180.  
  181. color = Color(0, 239, 255, 255),
  182.  
  183. model = "models/player/Group02/male_06.mdl",
  184.  
  185. description = [[You are a Clone who has lost respect of all other units, It may be hard to earn your armour back and rank.]],
  186.  
  187. weapons = {},
  188.  
  189. command = "CloneS",
  190.  
  191. max = 30,
  192.  
  193. salary = 0,
  194.  
  195. admin = 0,
  196.  
  197. vote = false,
  198.  
  199. hasLicense = false,
  200.  
  201. customCheck = function(ply) return PlychangeAllowed(ply,"Stripped Clone") end,
  202.  
  203. CustomCheckFailMsg = "You are not in the withelist!",
  204.  
  205. category = "Clones",
  206.  
  207. sortOrder = 3,
  208.  
  209. })
  210.  
  211.  
  212.  
  213. TEAM_VOID = AddExtraTeam("Void Squad Commander", {
  214.  
  215. color = Color(255, 0, 0, 255),
  216.  
  217. model = "models/player/asgclonewars/shadow_commander/shadow_commander.mdl",
  218.  
  219. description = [[Clone Commander, also known as clone trooper commander, was a rank in the Grand Army of the Republic and was conferred upon clone troopers who each led a large number of fellow troops into combat. Clone Commanders were often in direct contact with, and received orders from, the Jedi who directed them.]],
  220.  
  221. weapons = {"sanctum2_sg", "sanctum2_ar", "sanctum2_sr", "weapon_thehiddenblade"},
  222.  
  223. command = "void",
  224.  
  225. max = 30,
  226.  
  227. salary = 10,
  228.  
  229. admin = 0,
  230.  
  231. vote = false,
  232.  
  233. hasLicense = false,
  234.  
  235. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  236.  
  237. customCheck = function(ply) return PlychangeAllowed(ply,"Void Squad Commander") end,
  238.  
  239. CustomCheckFailMsg = "You are not in the withelist!",
  240.  
  241. category = "Void",
  242.  
  243. sortOrder = 3,
  244.  
  245. })
  246.  
  247. TEAM_VoidMed = AddExtraTeam("Void Squad Medic", {
  248.  
  249. color = Color(255, 0, 0, 255),
  250.  
  251. model = "models/player/sgg/starwars/clonetrooper_shadow.mdl",
  252.  
  253. description = [[Clone Commander, also known as clone trooper commander, was a rank in the Grand Army of the Republic and was conferred upon clone troopers who each led a large number of fellow troops into combat. Clone Commanders were often in direct contact with, and received orders from, the Jedi who directed them.]],
  254.  
  255. weapons = {"sanctum2_smg", "med_kit", "weapon_thehiddenblade"},
  256.  
  257. command = "voidmed",
  258.  
  259. max = 30,
  260.  
  261. salary = 10,
  262.  
  263. admin = 0,
  264.  
  265. vote = false,
  266.  
  267. hasLicense = false,
  268.  
  269. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  270.  
  271. customCheck = function(ply) return PlychangeAllowed(ply,"Void Squad Medic") end,
  272.  
  273. CustomCheckFailMsg = "You are not in the withelist!",
  274.  
  275. category = "Void",
  276.  
  277. sortOrder = 3,
  278.  
  279. })
  280.  
  281. TEAM_VoidTroop = AddExtraTeam("Void Squad Trooper", {
  282.  
  283. color = Color(255, 0, 0, 255),
  284.  
  285. model = "models/player/sgg/starwars/clonetrooper_shadow.mdl",
  286.  
  287. description = [[Clone Commander, also known as clone trooper commander, was a rank in the Grand Army of the Republic and was conferred upon clone troopers who each led a large number of fellow troops into combat. Clone Commanders were often in direct contact with, and received orders from, the Jedi who directed them.]],
  288.  
  289. weapons = {"sanctum2_ar", "weapon_thehiddenblade"},
  290.  
  291. command = "voidtroop",
  292.  
  293. max = 30,
  294.  
  295. salary = 10,
  296.  
  297. admin = 0,
  298.  
  299. vote = false,
  300.  
  301. hasLicense = false,
  302.  
  303. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  304.  
  305. customCheck = function(ply) return PlychangeAllowed(ply,"Void Squad Trooper") end,
  306.  
  307. CustomCheckFailMsg = "You are not in the withelist!",
  308.  
  309. category = "Void",
  310.  
  311. sortOrder = 3,
  312.  
  313. })
  314.  
  315. TEAM_VoidSniper = AddExtraTeam("Void Squad Sniper", {
  316.  
  317. color = Color(255, 0, 0, 255),
  318.  
  319. model = "models/player/sgg/starwars/clonetrooper_shadow.mdl",
  320.  
  321. description = [[Clone Commander, also known as clone trooper commander, was a rank in the Grand Army of the Republic and was conferred upon clone troopers who each led a large number of fellow troops into combat. Clone Commanders were often in direct contact with, and received orders from, the Jedi who directed them.]],
  322.  
  323. weapons = {"sanctum2_sr", "sanctum2_mine", "weapon_thehiddenblade"},
  324.  
  325. command = "voidsnip",
  326.  
  327. max = 30,
  328.  
  329. salary = 10,
  330.  
  331. admin = 0,
  332.  
  333. vote = false,
  334.  
  335. hasLicense = false,
  336.  
  337. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  338.  
  339. customCheck = function(ply) return PlychangeAllowed(ply,"Void Squad Sniper") end,
  340.  
  341. CustomCheckFailMsg = "You are not in the withelist!",
  342.  
  343. category = "Void",
  344.  
  345. sortOrder = 3,
  346.  
  347. })
  348.  
  349.  
  350. -- 41st
  351.  
  352.  
  353.  
  354. TEAM_41stC = AddExtraTeam("41st Elite Corps Commander Gree", {
  355.  
  356. color = Color(97, 216, 116, 255),
  357.  
  358. model = "models/player/sgg/starwars/clonetrooper_gree.mdl",
  359.  
  360. description = [[CC-1004, nickname of Gree for his interest in alien species, was a clone commander during the Clone Wars and was the leader of the 41st Elite Corps and its divisions. Gree was placed under the command of Jedi General Luminara Unduli.]],
  361.  
  362. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  363.  
  364. command = "41stC",
  365.  
  366. max = 1,
  367.  
  368. salary = 20,
  369.  
  370. admin = 0,
  371.  
  372. vote = false,
  373.  
  374. hasLicense = false,
  375.  
  376. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  377.  
  378. customCheck = function(ply) return PlychangeAllowed(ply,"41st Elite Corps Commander Gree") end,
  379.  
  380. CustomCheckFailMsg = "You are not in the withelist!",
  381.  
  382. category = "41st",
  383.  
  384. sortOrder = 2,
  385.  
  386. })
  387.  
  388.  
  389.  
  390. TEAM_41st = AddExtraTeam("41st Elite Corps Trooper", {
  391.  
  392. color = Color(97, 216, 116, 255),
  393.  
  394. model = "models/player/sgg/starwars/clonetrooper_41st.mdl",
  395.  
  396. description = [[The 41st Elite Corps was a specially trained combat legion of elite clone troopers placed under command of Jedi Generals Yoda and Luminara Unduli and Commander Gree. Many smaller squads of clone troopers also belonged to the 41st, including Green Company. ]],
  397.  
  398. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  399.  
  400. command = "41st",
  401.  
  402. max = 10,
  403.  
  404. salary = 10,
  405.  
  406. admin = 0,
  407.  
  408. vote = false,
  409.  
  410. hasLicense = false,
  411.  
  412. customCheck = function(ply) return PlychangeAllowed(ply,"41st Elite Corps Trooper") end,
  413.  
  414. CustomCheckFailMsg = "You are not in the withelist!",
  415.  
  416. category = "41st",
  417.  
  418. sortOrder = 1,
  419.  
  420. })
  421.  
  422.  
  423.  
  424. -- 212th
  425.  
  426.  
  427.  
  428. TEAM_212CO = AddExtraTeam("212th Attack Battalion Commander Cody", {
  429.  
  430. color = Color(234, 255, 0, 255),
  431.  
  432. model = "models/player/sgg/starwars/clonetrooper_cody.mdl",
  433.  
  434. description = [[As leader of the 7th Sky Corps, CC-2224 was to be paired with a Jedi General. He was pleased to discover that he would be operating under the command of famed Jedi Knight Obi-Wan Kenobi. However, he did not participate in the First Battle of Geonosis.[7] He would later serve under Jedi Master Mace Windu at the Battle of Skor II.[6] In the beginning of the Clone Wars, CC-2224 was a captain, but when General Kenobi saw his skill, he recommended the trooper for a promotion. CC-2224 was then made a marshal commander.]],
  435.  
  436. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  437.  
  438. command = "212ndCO",
  439.  
  440. max = 1,
  441.  
  442. salary = 20,
  443.  
  444. admin = 0,
  445.  
  446. vote = false,
  447.  
  448. hasLicense = false,
  449.  
  450. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  451.  
  452. customCheck = function(ply) return PlychangeAllowed(ply,"212th Attack Battalion Commander Cody") end,
  453.  
  454. CustomCheckFailMsg = "You are not in the withelist!",
  455.  
  456. category = "212th",
  457.  
  458. sortOrder = 2,
  459.  
  460. })
  461.  
  462.  
  463.  
  464. TEAM_212th = AddExtraTeam("212th Attack Battalion Trooper", {
  465.  
  466. color = Color(234, 255, 0, 255),
  467.  
  468. model = "models/player/sgg/starwars/clonetrooper_212nd.mdl",
  469.  
  470. description = [[Though commanded by Commander Cody, the 212th Attack Battalion was also led by High Jedi General Obi-Wan Kenobi, who developed a friendship with the battalion commander during the Clone Wars.]],
  471.  
  472. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  473.  
  474. command = "212nd",
  475.  
  476. max = 10,
  477.  
  478. salary = 10,
  479.  
  480. admin = 0,
  481.  
  482. vote = false,
  483.  
  484. hasLicense = false,
  485.  
  486. customCheck = function(ply) return PlychangeAllowed(ply,"212th Attack Battalion Trooper") end,
  487.  
  488. CustomCheckFailMsg = "You are not in the withelist!",
  489.  
  490. category = "212th",
  491.  
  492. sortOrder = 1,
  493.  
  494. })
  495.  
  496.  
  497.  
  498. TEAM_212thp = AddExtraTeam("2nd Airborne Company Paratrooper", {
  499.  
  500. color = Color(234, 255, 0, 255),
  501.  
  502. model = "models/player/sgg/starwars/clonetrooper_bee.mdl",
  503.  
  504. description = [[The 2nd Airborne Company was a division of the Grand Army of the Republic during the Clone Wars that consisted of clone paratroopers. The 2nd Airborne was subordinate to the 212th Attack Battalion of the 7th Sky Corps of the Third Systems Army led by Clone marshal commander Cody and High Jedi General Obi-Wan Kenobi.]],
  505.  
  506. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  507.  
  508. command = "212thp",
  509.  
  510. max = 10,
  511.  
  512. salary = 10,
  513.  
  514. admin = 0,
  515.  
  516. vote = false,
  517.  
  518. hasLicense = false,
  519.  
  520. customCheck = function(ply) return PlychangeAllowed(ply,"2nd Airborne Company Paratrooper") end,
  521.  
  522. CustomCheckFailMsg = "You are not in the withelist!",
  523.  
  524. category = "212th",
  525.  
  526. sortOrder = 3,
  527.  
  528. })
  529.  
  530.  
  531.  
  532.  
  533.  
  534. -- Galactic Marines
  535.  
  536.  
  537.  
  538. TEAM_GALM = AddExtraTeam("Galactic Marine", {
  539.  
  540. color = Color(211, 15, 74, 255),
  541.  
  542. model = "models/player/sgg/starwars/clonetrooper_marine.mdl",
  543.  
  544. description = [[Galactic Marines wore special body armor with maroon or white[5] coloration � and a backplate. They were usually armed with DC-15A blaster rifles, but were also seen equipped with WESTAR-M5 blaster rifles. The Marines were distinguished by their unique visor gear: synthmesh designed to keep out various hazards such as snow, sand, airborne fungus, and ash.]],
  545.  
  546. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  547.  
  548. command = "GALM",
  549.  
  550. max = 10,
  551.  
  552. salary = 10,
  553.  
  554. admin = 0,
  555.  
  556. vote = false,
  557.  
  558. hasLicense = false,
  559.  
  560. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  561.  
  562. customCheck = function(ply) return PlychangeAllowed(ply,"Galactic Marine") end,
  563.  
  564. CustomCheckFailMsg = "You are not in the withelist!",
  565.  
  566. category = "Galactic Marine",
  567.  
  568. sortOrder = 1,
  569.  
  570. })
  571.  
  572.  
  573.  
  574. TEAM_GALC = AddExtraTeam("Galactic Marine Commander Bacara", {
  575.  
  576. color = Color(211, 15, 74, 255),
  577.  
  578. model = "models/player/sgg/starwars/clonetrooper_bacara.mdl",
  579.  
  580. description = [[Sometime after the completion of his clone training, the Clone Commander was given the command of the 21st Nova Corps, also known as the Galactic Marines, a unit of the Grand Army of the Republic's 4th Sector Army. In 22 BBY, the Battle of Geonosis triggered the galaxy-wide conflict known as the Clone Wars. To help defeat the Confederacy of Independent Systems and its military forces, Bacara fought alongside several Jedi, including Jedi Master and Council member Ki-Adi-Mundi. Bacara would develop a friendship with Mundi, and the Cerean Jedi Master even regarded the Clone Commander's behavior and aggressive tactics "as a thing of prodigy." However, at some point during the war, Bacara allowed himself to leave the battlefield and enter a training regimen run by the ARC trooper Alpha-17, nicknamed "Alpha."[4] The program was designed to bring out the independence and tactical genius which was dormant within all clones. The Clone Commander graduated early from Alpha's program.]],
  581.  
  582. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  583.  
  584. command = "GALC",
  585.  
  586. max = 1,
  587.  
  588. salary = 20,
  589.  
  590. admin = 0,
  591.  
  592. vote = false,
  593.  
  594. hasLicense = false,
  595.  
  596. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  597.  
  598. customCheck = function(ply) return PlychangeAllowed(ply,"GalacticMarine Commander") end,
  599.  
  600. CustomCheckFailMsg = "You are not in the withelist!",
  601.  
  602. category = "Galactic Marine",
  603.  
  604. sortOrder = 2,
  605.  
  606. })
  607.  
  608.  
  609.  
  610. -- 327th
  611.  
  612.  
  613.  
  614. TEAM_327c = AddExtraTeam("327th Star Corps Commander Bly", {
  615.  
  616. color = Color(252, 181, 0, 255),
  617.  
  618. model = "models/player/sgg/starwars/clonetrooper_bly.mdl",
  619.  
  620. description = [[Bly was trained as an Advanced Recon Commando himself, giving him a more independent mindset and allowing him to think "outside the manual" when it came to the shifting of tactical situations.[3] As a clone commander, it was Bly's job to act as an intermediary between the Jedi Generals and the regular clone troopers,[1] although he was bred to be loyal to the Republic above all others.[3] Bly was assigned to the 327th Star Corps, which fell under the 2nd Sector Army.[5] He personally served Jedi General Aayla Secura, and they began to develop a close relationship during their shared service in the ongoing Clone Wars.[7] When the Republic amassed a number of droids that needed their memory cores unlocked and wiped, Bly helped to recruit a Jedi Knight for the task, as the secrets in the droids could be crucial to the war effort.]],
  621.  
  622. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  623.  
  624. command = "327c",
  625.  
  626. max = 1,
  627.  
  628. salary = 20,
  629.  
  630. admin = 0,
  631.  
  632. vote = false,
  633.  
  634. hasLicense = false,
  635.  
  636. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  637.  
  638. customCheck = function(ply) return PlychangeAllowed(ply,"327th Star Corps Commander Bly") end,
  639.  
  640. CustomCheckFailMsg = "You are not in the withelist!",
  641.  
  642. category = "327th",
  643.  
  644. sortOrder = 2,
  645.  
  646. })
  647.  
  648.  
  649.  
  650. TEAM_327ct = AddExtraTeam("327th Star Corps Trooper", {
  651.  
  652. color = Color(252, 181, 0, 255),
  653.  
  654. model = "models/player/sgg/starwars/clonetrooper_327th.mdl",
  655.  
  656. description = [[Under the control of General Aayla Secura and Commander Bly, the 327th served as the Republic's spearhead into the Outer Rim Territories in the latter days of the Clone Wars. Their reputation was derived from the actions they engaged in on the Outer Rim, never seeing Coruscant and rarely stationed in one place for more than a week. The troopers of the 327th saw action on such diverse worlds as New Holstice, Anzat, Dromund Kaas, Honoghr, Quell, and Alzoc III.]],
  657.  
  658. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  659.  
  660. command = "327ct",
  661.  
  662. max = 10,
  663.  
  664. salary = 10,
  665.  
  666. admin = 0,
  667.  
  668. vote = false,
  669.  
  670. hasLicense = false,
  671.  
  672. customCheck = function(ply) return PlychangeAllowed(ply,"327th Star Corps Trooper") end,
  673.  
  674. CustomCheckFailMsg = "You are not in the withelist!",
  675.  
  676. category = "327th",
  677.  
  678. sortOrder = 1,
  679.  
  680. })
  681.  
  682.  
  683.  
  684. -- Fleet
  685.  
  686.  
  687.  
  688. TEAM_Officer = AddExtraTeam("Officer", {
  689.  
  690. color = Color(168, 143, 143, 255),
  691.  
  692. model = "models/player/scifi_wraith.mdl",
  693.  
  694. description = [[You are an Officer, A step after Cadet, listen to the Admiral.]],
  695.  
  696. weapons = {"weapon_752_elg3a"},
  697.  
  698. command = "OFF",
  699.  
  700. max = 4,
  701.  
  702. salary = 10,
  703.  
  704. admin = 0,
  705.  
  706. vote = false,
  707.  
  708. hasLicense = false,
  709.  
  710. customCheck = function(ply) return PlychangeAllowed(ply,"Officer") end,
  711.  
  712. CustomCheckFailMsg = "You are not in the withelist!",
  713.  
  714. category = "Fleet",
  715.  
  716. sortOrder = 2,
  717.  
  718. })
  719.  
  720.  
  721.  
  722. TEAM_Cadet = AddExtraTeam("Cadet", {
  723.  
  724. color = Color(168, 143, 143, 255),
  725.  
  726. model = "models/player/scifi_male_02.mdl",
  727.  
  728. description = [[You are a Cadet, A traine, listen to the Admiral.]],
  729.  
  730. weapons = {"weapon_752_elg3a"},
  731.  
  732. command = "CAD",
  733.  
  734. max = 5,
  735.  
  736. salary = 10,
  737.  
  738. admin = 0,
  739.  
  740. vote = false,
  741.  
  742. hasLicense = false,
  743.  
  744. customCheck = function(ply) return PlychangeAllowed(ply,"Cadet") end,
  745.  
  746. CustomCheckFailMsg = "You are not in the withelist!",
  747.  
  748. category = "Fleet",
  749.  
  750. sortOrder = 1,
  751.  
  752. })
  753.  
  754.  
  755.  
  756. TEAM_Major = AddExtraTeam("Major", {
  757.  
  758. color = Color(168, 143, 143, 255),
  759.  
  760. model = "models/player/scifi_male_03.mdl",
  761.  
  762. description = [[You are a Major, A step after Officer, listen to the Admiral.]],
  763.  
  764. weapons = {"weapon_752_elg3a"},
  765.  
  766. command = "MAJ",
  767.  
  768. max = 3,
  769.  
  770. salary = 20,
  771.  
  772. admin = 0,
  773.  
  774. vote = false,
  775.  
  776. hasLicense = false,
  777.  
  778. customCheck = function(ply) return PlychangeAllowed(ply,"Major") end,
  779.  
  780. CustomCheckFailMsg = "You are not in the withelist!",
  781.  
  782. category = "Fleet",
  783.  
  784. sortOrder = 3,
  785.  
  786. })
  787.  
  788.  
  789.  
  790. TEAM_Admiral = AddExtraTeam("Admiral", {
  791.  
  792. color = Color(168, 143, 143, 255),
  793.  
  794. model = {
  795.  
  796. "models/player/scifi_bill.mdl",
  797.  
  798. "models/player/scifi_hawke.mdl"
  799.  
  800. },
  801.  
  802. description = [[You are the Admiral, you lead the fleets.]],
  803.  
  804. weapons = {"weapon_752_elg3a", "gmod_tool"},
  805.  
  806. command = "ADM",
  807.  
  808. max = 1,
  809.  
  810. salary = 50,
  811.  
  812. admin = 0,
  813.  
  814. vote = false,
  815.  
  816. hasLicense = false,
  817.  
  818. customCheck = function(ply) return PlychangeAllowed(ply,"Admiral") end,
  819.  
  820. CustomCheckFailMsg = "You are not in the withelist!",
  821.  
  822. category = "Fleet",
  823.  
  824. sortOrder = 5,
  825.  
  826. })
  827.  
  828.  
  829.  
  830. TEAM_GAdmiral = AddExtraTeam("Grand Admiral", {
  831.  
  832. color = Color(168, 143, 143, 255),
  833.  
  834. model = {
  835.  
  836. "models/player/scifi_bill.mdl",
  837.  
  838. "models/player/scifi_hawke.mdl"
  839.  
  840. },
  841.  
  842. description = [[You are the Grand Admiral a big leader of the fleet, you lead the fleet and make them well fit, fed and in a good mood.]],
  843.  
  844. weapons = {"weapon_752_elg3a", "gmod_tool"},
  845.  
  846. command = "GRA",
  847.  
  848. max = 1,
  849.  
  850. salary = 50,
  851.  
  852. admin = 0,
  853.  
  854. vote = false,
  855.  
  856. hasLicense = false,
  857.  
  858. customCheck = function(ply) return PlychangeAllowed(ply,"Grand Admiral") end,
  859.  
  860. CustomCheckFailMsg = "You are not in the withelist!",
  861.  
  862. category = "Fleet",
  863.  
  864. sortOrder = 6,
  865.  
  866. })
  867.  
  868.  
  869.  
  870. TEAM_Colonel = AddExtraTeam("Colonel", {
  871.  
  872. color = Color(168, 143, 143, 255),
  873.  
  874. model = "models/player/scifi_female_02.mdl",
  875.  
  876. description = [[Your a Colonel listen to the Admirals orders.]],
  877.  
  878. weapons = {"weapon_752_elg3a"},
  879.  
  880. command = "COL",
  881.  
  882. max = 2,
  883.  
  884. salary = 30,
  885.  
  886. admin = 0,
  887.  
  888. vote = false,
  889.  
  890. hasLicense = false,
  891.  
  892. customCheck = function(ply) return PlychangeAllowed(ply,"Colonel") end,
  893.  
  894. CustomCheckFailMsg = "You are not in the withelist!",
  895.  
  896. category = "Fleet",
  897.  
  898. sortOrder = 4,
  899.  
  900. })
  901.  
  902.  
  903.  
  904. -- 501st
  905.  
  906.  
  907.  
  908. TEAM_501st = AddExtraTeam("501st Legion Trooper", {
  909.  
  910. color = Color(0, 25, 255, 255),
  911.  
  912. model = "models/player/sgg/starwars/clonetrooper_501st.mdl",
  913.  
  914. description = [[The core group of this legion was assigned to serve under Jedi General Anakin Skywalker and Clone Captain CT-7567, nicknamed "Rex." With Skywalker's help, the 501st quickly earned a reputation for incredible victories, often snatching victory from the jaws of defeat.[18] Among the 501st's earliest battles was the Battle of Christophsis, where they served under Skywalker, Captain Rex, and High Jedi General Obi-Wan Kenobi.]],
  915.  
  916. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  917.  
  918. command = "501st",
  919.  
  920. max = 10,
  921.  
  922. salary = 10,
  923.  
  924. admin = 0,
  925.  
  926. vote = false,
  927.  
  928. hasLicense = false,
  929.  
  930. customCheck = function(ply) return PlychangeAllowed(ply,"501st Legion Trooper") end,
  931.  
  932. CustomCheckFailMsg = "You are not in the withelist!",
  933.  
  934. category = "501st",
  935.  
  936. sortOrder = 1,
  937.  
  938. })
  939.  
  940.  
  941.  
  942.  
  943.  
  944. TEAM_501m = AddExtraTeam("501st Legion Medic", {
  945.  
  946. color = Color(0, 25, 255, 255),
  947.  
  948. model = "models/player/sgg/starwars/clonetrooper_501st.mdl",
  949.  
  950. description = [[The core group of this legion was assigned to serve under Jedi General Anakin Skywalker and Clone Captain CT-7567, nicknamed "Rex." With Skywalker's help, the 501st quickly earned a reputation for incredible victories, often snatching victory from the jaws of defeat.[18] Among the 501st's earliest battles was the Battle of Christophsis, where they served under Skywalker, Captain Rex, and High Jedi General Obi-Wan Kenobi.]],
  951.  
  952. weapons = {"weapon_752_dc15a", "weapon_752_dc17", "med_kit"},
  953.  
  954. command = "501m",
  955.  
  956. max = 5,
  957.  
  958. salary = 10,
  959.  
  960. admin = 0,
  961.  
  962. vote = false,
  963.  
  964. hasLicense = false,
  965.  
  966. customCheck = function(ply) return PlychangeAllowed(ply,"501st Legion Medic") end,
  967.  
  968. CustomCheckFailMsg = "You are not in the withelist!",
  969.  
  970. category = "501st",
  971.  
  972. sortOrder = 3,
  973.  
  974. })
  975.  
  976.  
  977.  
  978. TEAM_501c = AddExtraTeam("501st Legion CPT Rex", {
  979.  
  980. color = Color(0, 25, 255, 255),
  981.  
  982. model = "models/player/test/rex.mdl",
  983.  
  984. description = [[CT-7567 was a veteran clone trooper captain who led the Grand Army of the Republic's acclaimed 501st Legion during the Clone Wars. Bred and trained on the planet Kamino, CT-7567 entered into Republic service at the Battle of Geonosis in 22 BBY. He gained respect from Jedi officers and clone troopers alike as an honorable commander, becoming known as one of the best and toughest clone troopers in the Grand Army. He was even selected for special command training under Advanced Recon Commando Alpha-17, following which he took the nickname "Rex." As the captain of the 501st, Rex served as second-in-command to Jedi General Anakin Skywalker, whose bravery and unorthodoxy in battle he came to share.]],
  985.  
  986. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit"},
  987.  
  988. command = "501c",
  989.  
  990. max = 1,
  991.  
  992. salary = 20,
  993.  
  994. admin = 0,
  995.  
  996. vote = false,
  997.  
  998. hasLicense = false,
  999.  
  1000. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  1001.  
  1002. customCheck = function(ply) return PlychangeAllowed(ply,"501st Legion CPT Rex") end,
  1003.  
  1004. CustomCheckFailMsg = "You are not in the withelist!",
  1005.  
  1006. category = "501st",
  1007.  
  1008. sortOrder = 2,
  1009.  
  1010. })
  1011.  
  1012.  
  1013.  
  1014. -- ARC
  1015.  
  1016.  
  1017.  
  1018. TEAM_ARCC = AddExtraTeam("ARC Commander", {
  1019.  
  1020. color = Color(214, 249, 0, 255),
  1021.  
  1022. model = "models/player/sgg/starwars/clonetrooper_arc_commander.mdl",
  1023.  
  1024. description = [[Although some ARC trooper captains were promoted to the rank of commander and wore yellow ARC trooper armor, most of the officers that were labeled as "ARC Commander" were not originally Alpha-class ARC troopers. These ARC commanders were regular clone officer commanders that were specially trained by Alpha-17 to instill more independence, aggressiveness, and to think outside the box.]],
  1025.  
  1026. weapons = {"weapon_752_dc15s", "weapon_752_dc17", "weapon_752_dc15a", "med_kit", "weapon_frag"},
  1027.  
  1028. command = "ARCC",
  1029.  
  1030. max = 1,
  1031.  
  1032. salary = 20,
  1033.  
  1034. admin = 0,
  1035.  
  1036. vote = false,
  1037.  
  1038. hasLicense = false,
  1039.  
  1040. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  1041.  
  1042. customCheck = function(ply) return PlychangeAllowed(ply,"ARC Commander") end,
  1043.  
  1044. CustomCheckFailMsg = "You are not in the withelist!",
  1045.  
  1046. category = "ARC",
  1047.  
  1048. sortOrder = 4,
  1049.  
  1050. })
  1051.  
  1052.  
  1053.  
  1054. TEAM_ARCCA = AddExtraTeam("ARC Captain", {
  1055.  
  1056. color = Color(214, 249, 0, 255),
  1057.  
  1058. model = "models/player/sgg/starwars/clonetrooper_arc_captain.mdl",
  1059.  
  1060. description = [[These ARCs had authority over subordinate ARCs, commandos, and standard clone soldiers. The few times that squads of ARC troopers worked together, an ARC captain was usually in charge, serving under a Jedi General.]],
  1061.  
  1062. weapons = {"weapon_752_dc15a", "weapon_752_dh17", "weapon_752_dc15s", "med_kit", "weapon_frag"},
  1063.  
  1064. command = "ARCCA",
  1065.  
  1066. max = 5,
  1067.  
  1068. salary = 15,
  1069.  
  1070. admin = 0,
  1071.  
  1072. vote = false,
  1073.  
  1074. hasLicense = false,
  1075.  
  1076. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  1077.  
  1078. customCheck = function(ply) return PlychangeAllowed(ply,"ARC Captain") end,
  1079.  
  1080. CustomCheckFailMsg = "You are not in the withelist!",
  1081.  
  1082. category = "ARC",
  1083.  
  1084. sortOrder = 3,
  1085.  
  1086. })
  1087.  
  1088.  
  1089.  
  1090. TEAM_ARCS = AddExtraTeam("ARC Sergeant", {
  1091.  
  1092. color = Color(214, 249, 0, 255),
  1093.  
  1094. model = "models/player/asgclonewars/arc_sergeant/clonetrooper_arc_sergeant.mdl",
  1095.  
  1096. description = [[The only known ARC sergeant was the highly independent Null ARC Trooper N-12 A'den. Despite his low rank, as an ARC trooper N-12 had a great deal of autonomy as he worked in Clone Intelligence.]],
  1097.  
  1098. weapons = {"weapon_752_dc15a", "weapon_752_dc17", "med_kit", "weapon_752_dc15s"},
  1099.  
  1100. command = "ARCS",
  1101.  
  1102. max = 5,
  1103.  
  1104. salary = 10,
  1105.  
  1106. admin = 0,
  1107.  
  1108. vote = false,
  1109.  
  1110. hasLicense = false,
  1111.  
  1112. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  1113.  
  1114. customCheck = function(ply) return PlychangeAllowed(ply,"ARC Sergeant") end,
  1115.  
  1116. CustomCheckFailMsg = "You are not in the withelist!",
  1117.  
  1118. category = "ARC",
  1119.  
  1120. sortOrder = 2,
  1121.  
  1122. })
  1123.  
  1124.  
  1125.  
  1126. TEAM_ARCL = AddExtraTeam("ARC Lieutenant", {
  1127.  
  1128. color = Color(214, 249, 0, 255),
  1129.  
  1130. model = "models/sgg/starwars/clonetrooper_arc_soldier.mdl",
  1131.  
  1132. description = [[This was the first and most common ARC rank during the Clone Wars. Lieutenant ARC troopers fought in various battles including the Battle of Muunilinst.]],
  1133.  
  1134. weapons = {"weapon_752_dc15a", "weapon_752_dc17", "weapon_752_dc15s"},
  1135.  
  1136. command = "ARCL",
  1137.  
  1138. max = 15,
  1139.  
  1140. salary = 10,
  1141.  
  1142. admin = 0,
  1143.  
  1144. vote = false,
  1145.  
  1146. hasLicense = false,
  1147.  
  1148. PlayerSpawn = function(ply) ply:SetHealth(100) end,
  1149.  
  1150. customCheck = function(ply) return PlychangeAllowed(ply,"ARC Lieutenant") end,
  1151.  
  1152. CustomCheckFailMsg = "You are not in the withelist!",
  1153.  
  1154. category = "ARC",
  1155.  
  1156. sortOrder = 1,
  1157.  
  1158. })
  1159.  
  1160.  
  1161.  
  1162. -- Jedi
  1163.  
  1164.  
  1165.  
  1166. TEAM_JEDIPlo = AddExtraTeam("PloKoon", {
  1167.  
  1168. color = Color(156, 0, 252, 255),
  1169.  
  1170. model = "models/kriegsyntax/sw_752/plokoon_est.mdl",
  1171.  
  1172. description = [[You are PloKoon.]],
  1173.  
  1174. weapons = {"weapon_lightsaber"},
  1175.  
  1176. command = "JediPlo",
  1177.  
  1178. max = 1,
  1179.  
  1180. salary = 100,
  1181.  
  1182. admin = 0,
  1183.  
  1184. vote = false,
  1185.  
  1186. hasLicense = false,
  1187.  
  1188. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1189.  
  1190. customCheck = function(ply) return PlychangeAllowed(ply,"PloKoon") end,
  1191.  
  1192. CustomCheckFailMsg = "You are not in the withelist!",
  1193.  
  1194. category = "Jedi",
  1195.  
  1196. sortOrder = 7,
  1197.  
  1198. })
  1199.  
  1200.  
  1201.  
  1202. TEAM_JEDIY = AddExtraTeam("Yoda", {
  1203.  
  1204. color = Color(156, 0, 252, 255),
  1205.  
  1206. model = "models/player/b4p/b4p_yoda.mdl",
  1207.  
  1208. description = [[You are Master Yoda.]],
  1209.  
  1210. weapons = {"weapon_lightsaber"},
  1211.  
  1212. command = "Jediy",
  1213.  
  1214. max = 1,
  1215.  
  1216. salary = 100,
  1217.  
  1218. admin = 0,
  1219.  
  1220. vote = false,
  1221.  
  1222. hasLicense = false,
  1223.  
  1224. modelScale = 0.5,
  1225.  
  1226. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1227.  
  1228. customCheck = function(ply) return PlychangeAllowed(ply,"Yoda") end,
  1229.  
  1230. CustomCheckFailMsg = "You are not in the withelist!",
  1231.  
  1232. category = "Jedi",
  1233.  
  1234. sortOrder = 8,
  1235.  
  1236. })
  1237.  
  1238.  
  1239.  
  1240. TEAM_JEDIPa = AddExtraTeam("Anakin Skywalker", {
  1241.  
  1242. color = Color(156, 0, 252, 255),
  1243.  
  1244. model = "models/kriegsyntax/sw_752/anakin_est.mdl",
  1245.  
  1246. description = [[You are Anikan SKywalker.]],
  1247.  
  1248. weapons = {"weapon_lightsaber"},
  1249.  
  1250. command = "JediPa",
  1251.  
  1252. max = 1,
  1253.  
  1254. salary = 100,
  1255.  
  1256. admin = 0,
  1257.  
  1258. vote = false,
  1259.  
  1260. hasLicense = false,
  1261.  
  1262. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1263.  
  1264. customCheck = function(ply) return PlychangeAllowed(ply,"Anakin Skywalker") end,
  1265.  
  1266. CustomCheckFailMsg = "You are not in the withelist!",
  1267.  
  1268. category = "Jedi",
  1269.  
  1270. sortOrder = 4,
  1271.  
  1272. })
  1273.  
  1274.  
  1275.  
  1276. TEAM_JEDIPat = AddExtraTeam("Obi-Wan", {
  1277.  
  1278. color = Color(156, 0, 252, 255),
  1279.  
  1280. model = "models/kriegsyntax/sw_752/obiwan_est.mdl",
  1281.  
  1282. description = [[You are Obi-Wan.]],
  1283.  
  1284. weapons = {"weapon_lightsaber"},
  1285.  
  1286. command = "JediPat",
  1287.  
  1288. max = 1,
  1289.  
  1290. salary = 100,
  1291.  
  1292. admin = 0,
  1293.  
  1294. vote = false,
  1295.  
  1296. hasLicense = false,
  1297.  
  1298. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1299.  
  1300. customCheck = function(ply) return PlychangeAllowed(ply,"Obi-Wan") end,
  1301.  
  1302. CustomCheckFailMsg = "You are not in the withelist!",
  1303.  
  1304. category = "Jedi",
  1305.  
  1306. sortOrder = 5,
  1307.  
  1308. })
  1309.  
  1310.  
  1311.  
  1312. TEAM_JEDIK = AddExtraTeam("Jedi Knight", {
  1313.  
  1314. color = Color(156, 0, 252, 255),
  1315.  
  1316. model = "models/player/altair_ibnlaahad.mdl",
  1317.  
  1318. description = [[You are a Jedi Night you are allmost a master of of the light side.]],
  1319.  
  1320. weapons = {"weapon_lightsaber"},
  1321.  
  1322. command = "JediK",
  1323.  
  1324. max = 3,
  1325.  
  1326. salary = 1,
  1327.  
  1328. admin = 0,
  1329.  
  1330. vote = false,
  1331.  
  1332. hasLicense = false,
  1333.  
  1334. PlayerSpawn = function(ply) ply:SetHealth(6000) end,
  1335.  
  1336. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Knight") end,
  1337.  
  1338. CustomCheckFailMsg = "You are not in the withelist!",
  1339.  
  1340. category = "Jedi",
  1341.  
  1342. sortOrder = 2,
  1343.  
  1344. })
  1345.  
  1346.  
  1347.  
  1348. TEAM_JEDIMA = AddExtraTeam("Mace Windu", {
  1349.  
  1350. color = Color(156, 0, 252, 255),
  1351.  
  1352. model = "models/ryan7259/mace_windu/mace_windu_player.mdl",
  1353.  
  1354. description = [[You are Mace Windu.]],
  1355.  
  1356. weapons = {"weapon_lightsaber"},
  1357.  
  1358. command = "JediMA",
  1359.  
  1360. max = 1,
  1361.  
  1362. salary = 100,
  1363.  
  1364. admin = 0,
  1365.  
  1366. vote = false,
  1367.  
  1368. hasLicense = false,
  1369.  
  1370. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1371.  
  1372. customCheck = function(ply) return PlychangeAllowed(ply,"Mace Windu") end,
  1373.  
  1374. CustomCheckFailMsg = "You are not in the withelist!",
  1375.  
  1376. category = "Jedi",
  1377.  
  1378. sortOrder = 6,
  1379.  
  1380. })
  1381.  
  1382.  
  1383.  
  1384. TEAM_JEDIM = AddExtraTeam("Jedi Master", {
  1385.  
  1386. color = Color(156, 0, 252, 255),
  1387.  
  1388. model = "models/player/altair_ibnlaahad.mdl",
  1389.  
  1390. description = [[You are a Jedi Master you can have 1 Padawan to train, You can ony get a padawan by asking a Jedi councel member.]],
  1391.  
  1392. weapons = {"weapon_lightsaber"},
  1393.  
  1394. command = "JediM",
  1395.  
  1396. max = 2,
  1397.  
  1398. salary = 1,
  1399.  
  1400. admin = 0,
  1401.  
  1402. vote = false,
  1403.  
  1404. hasLicense = false,
  1405.  
  1406. PlayerSpawn = function(ply) ply:SetHealth(8000) end,
  1407.  
  1408. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Master") end,
  1409.  
  1410. CustomCheckFailMsg = "You are not in the withelist!",
  1411.  
  1412. category = "Jedi",
  1413.  
  1414. sortOrder = 3,
  1415.  
  1416. })
  1417.  
  1418.  
  1419.  
  1420. TEAM_JEDIP = AddExtraTeam("Jedi Padawan", {
  1421.  
  1422. color = Color(156, 0, 252, 255),
  1423.  
  1424. model = "models/player/altair_ibnlaahad.mdl",
  1425.  
  1426. description = [[You are a Jedi follow you're Master's path in the LightSide.]],
  1427.  
  1428. weapons = {"weapon_lightsaber"},
  1429.  
  1430. command = "JediP",
  1431.  
  1432. max = 3,
  1433.  
  1434. salary = 1,
  1435.  
  1436. admin = 0,
  1437.  
  1438. vote = false,
  1439.  
  1440. hasLicense = false,
  1441.  
  1442. PlayerSpawn = function(ply) ply:SetHealth(4000) end,
  1443.  
  1444. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Padawan") end,
  1445.  
  1446. CustomCheckFailMsg = "You are not in the withelist!",
  1447.  
  1448. category = "Jedi",
  1449.  
  1450. sortOrder = 1,
  1451.  
  1452. })
  1453.  
  1454.  
  1455.  
  1456. TEAM_JEDIYOUNG = AddExtraTeam("Jedi Youngling", {
  1457.  
  1458. color = Color(156, 0, 252, 255),
  1459.  
  1460. model = "models/player/altair_ibnlaahad.mdl",
  1461.  
  1462. description = [[You are a Jedi Youngling, you learn the way of the force from your Masters.]],
  1463.  
  1464. weapons = {"weapon_lightsaber"},
  1465.  
  1466. command = "JediYoung",
  1467.  
  1468. max = 5,
  1469.  
  1470. salary = 1,
  1471.  
  1472. admin = 0,
  1473.  
  1474. vote = false,
  1475.  
  1476. hasLicense = false,
  1477.  
  1478. PlayerSpawn = function(ply) ply:SetHealth(1000) end,
  1479.  
  1480. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Youngling") end,
  1481.  
  1482. CustomCheckFailMsg = "You are not in the withelist!",
  1483.  
  1484. category = "Jedi",
  1485.  
  1486. sortOrder = 9,
  1487.  
  1488. })
  1489.  
  1490.  
  1491.  
  1492. TEAM_JEDIPRO = AddExtraTeam("Jedi Protector", {
  1493.  
  1494. color = Color(156, 0, 252, 255),
  1495.  
  1496. model = "models/player/altair_ibnlaahad.mdl",
  1497.  
  1498. description = [[You are a Jedi Protector, you guard the councel and help defend the secrets to Jedi.]],
  1499.  
  1500. weapons = {"weapon_lightsaber"},
  1501.  
  1502. command = "JediPro",
  1503.  
  1504. max = 5,
  1505.  
  1506. salary = 1,
  1507.  
  1508. admin = 0,
  1509.  
  1510. vote = false,
  1511.  
  1512. hasLicense = false,
  1513.  
  1514. PlayerSpawn = function(ply) ply:SetHealth(2000) end,
  1515.  
  1516. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Protector") end,
  1517.  
  1518. CustomCheckFailMsg = "You are not in the withelist!",
  1519.  
  1520. category = "Jedi",
  1521.  
  1522. sortOrder = 10,
  1523.  
  1524. })
  1525.  
  1526.  
  1527.  
  1528. TEAM_JEDIGM = AddExtraTeam("Jedi Grand Master", {
  1529.  
  1530. color = Color(156, 0, 252, 255),
  1531.  
  1532. model = "models/player/altair_ibnlaahad.mdl",
  1533.  
  1534. description = [[You are a Jedi Grand Master, you teach guidence to the Force and help Younglings improve and evolve their skills.]],
  1535.  
  1536. weapons = {"weapon_lightsaber"},
  1537.  
  1538. command = "JediGM",
  1539.  
  1540. max = 3,
  1541.  
  1542. salary = 1,
  1543.  
  1544. admin = 0,
  1545.  
  1546. vote = false,
  1547.  
  1548. hasLicense = false,
  1549.  
  1550. PlayerSpawn = function(ply) ply:SetHealth(12000) end,
  1551.  
  1552. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Grand Master") end,
  1553.  
  1554. CustomCheckFailMsg = "You are not in the withelist!",
  1555.  
  1556. category = "Jedi",
  1557.  
  1558. sortOrder = 11,
  1559.  
  1560. })
  1561.  
  1562.  
  1563.  
  1564. TEAM_JEDICOUNCEL = AddExtraTeam("Jedi Councel Member", {
  1565.  
  1566. color = Color(156, 0, 252, 255),
  1567.  
  1568. model = "models/player/altair_ibnlaahad.mdl",
  1569.  
  1570. description = [[You are a Jedi Councel Member, you decide what happens, but you must listen to High Councel, you teach guidence to the Force and help Younglings improve and evolve their skills.]],
  1571.  
  1572. weapons = {"weapon_lightsaber"},
  1573.  
  1574. command = "JediCouncel",
  1575.  
  1576. max = 10,
  1577.  
  1578. salary = 1,
  1579.  
  1580. admin = 0,
  1581.  
  1582. vote = false,
  1583.  
  1584. hasLicense = false,
  1585.  
  1586. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1587.  
  1588. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Councel Member") end,
  1589.  
  1590. CustomCheckFailMsg = "You are not in the withelist!",
  1591.  
  1592. category = "Jedi",
  1593.  
  1594. sortOrder = 11,
  1595.  
  1596. })
  1597.  
  1598. TEAM_JEDIELITE = AddExtraTeam("Jedi Elite", {
  1599.  
  1600. color = Color(156, 0, 252, 255),
  1601.  
  1602. model = "models/player/altair_ibnlaahad.mdl",
  1603.  
  1604. description = [[You are a Jedi Councel Member, you decide what happens, but you must listen to High Councel, you teach guidence to the Force and help Younglings improve and evolve their skills.]],
  1605.  
  1606. weapons = {"weapon_lightsaber"},
  1607.  
  1608. command = "jedielite",
  1609.  
  1610. max = 10,
  1611.  
  1612. salary = 1,
  1613.  
  1614. admin = 0,
  1615.  
  1616. vote = false,
  1617.  
  1618. hasLicense = false,
  1619.  
  1620. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1621.  
  1622. customCheck = function(ply) return PlychangeAllowed(ply,"Jedi Elite") end,
  1623.  
  1624. CustomCheckFailMsg = "You are not in the withelist!",
  1625.  
  1626. category = "Jedi",
  1627.  
  1628. sortOrder = 11,
  1629.  
  1630. })
  1631.  
  1632.  
  1633.  
  1634. -- Event Jobs
  1635.  
  1636.  
  1637.  
  1638.  
  1639.  
  1640. TEAM_SITHVAD = AddExtraTeam("Lord Vader", {
  1641.  
  1642. color = Color(255, 0, 15, 255),
  1643.  
  1644. model = "models/player/b4p/b4p_vader.mdl",
  1645.  
  1646. description = [[You are one of the Main Sith, Crush the weak command the truth..]],
  1647.  
  1648. weapons = {"weapon_lightsaber"},
  1649.  
  1650. command = "SithVad",
  1651.  
  1652. max = 1,
  1653.  
  1654. salary = 5,
  1655.  
  1656. admin = 0,
  1657.  
  1658. vote = false,
  1659.  
  1660. hasLicense = false,
  1661.  
  1662. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1663.  
  1664. customCheck = function(ply) return PlychangeAllowed(ply,"Lord Vader") end,
  1665.  
  1666. CustomCheckFailMsg = "You are not in the withelist!",
  1667.  
  1668. category = "Event Classes",
  1669.  
  1670. sortOrder = 7,
  1671.  
  1672. })
  1673.  
  1674.  
  1675.  
  1676.  
  1677.  
  1678. TEAM_SITHEMP = AddExtraTeam("Darth Sidious", {
  1679.  
  1680. color = Color(255, 0, 15, 255),
  1681.  
  1682. model = "models/player/altair_ibnlaahad.mdl",
  1683.  
  1684. description = [[You are one of the Main Sith, Crush the weak command the truth..]],
  1685.  
  1686. weapons = {"weapon_lightsaber"},
  1687.  
  1688. command = "SithEmp",
  1689.  
  1690. max = 1,
  1691.  
  1692. salary = 5,
  1693.  
  1694. admin = 0,
  1695.  
  1696. vote = false,
  1697.  
  1698. hasLicense = false,
  1699.  
  1700. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1701.  
  1702. customCheck = function(ply) return PlychangeAllowed(ply,"Darth Sidious") end,
  1703.  
  1704. CustomCheckFailMsg = "You are not in the withelist!",
  1705.  
  1706. category = "Event Classes",
  1707.  
  1708. sortOrder = 7,
  1709.  
  1710. })
  1711.  
  1712.  
  1713.  
  1714. TEAM_SITHD = AddExtraTeam("Count Dooku", {
  1715.  
  1716. color = Color(255, 0, 15, 255),
  1717.  
  1718. model = "models/kriegsyntax/sw_752/dooku_est.mdl",
  1719.  
  1720. description = [[You are one of the Main Sith, Crush the weak command the truth..]],
  1721.  
  1722. weapons = {"weapon_lightsaber"},
  1723.  
  1724. command = "SithD",
  1725.  
  1726. max = 1,
  1727.  
  1728. salary = 5,
  1729.  
  1730. admin = 0,
  1731.  
  1732. vote = false,
  1733.  
  1734. hasLicense = false,
  1735.  
  1736. PlayerSpawn = function(ply) ply:SetHealth(15000) end,
  1737.  
  1738. customCheck = function(ply) return PlychangeAllowed(ply,"Count Dooku") end,
  1739.  
  1740. CustomCheckFailMsg = "You are not in the withelist!",
  1741.  
  1742. category = "Event Classes",
  1743.  
  1744. sortOrder = 7,
  1745.  
  1746. })
  1747.  
  1748.  
  1749.  
  1750. TEAM_SITHA = AddExtraTeam("Sith Apprentice", {
  1751.  
  1752. color = Color(255, 0, 15, 255),
  1753.  
  1754. model = "models/royal_guard_blue.mdl",
  1755.  
  1756. description = [[You are a Sith follow you're Master's path in the DarkSide.]],
  1757.  
  1758. weapons = {"weapon_lightsaber"},
  1759.  
  1760. command = "SithA",
  1761.  
  1762. max = 3,
  1763.  
  1764. salary = 1,
  1765.  
  1766. admin = 0,
  1767.  
  1768. vote = false,
  1769.  
  1770. hasLicense = false,
  1771.  
  1772. PlayerSpawn = function(ply) ply:SetHealth(4000) end,
  1773.  
  1774. customCheck = function(ply) return PlychangeAllowed(ply,"Sith Apprentice") end,
  1775.  
  1776. CustomCheckFailMsg = "You are not in the withelist!",
  1777.  
  1778. category = "Event Classes",
  1779.  
  1780. sortOrder = 5,
  1781.  
  1782. })
  1783.  
  1784.  
  1785.  
  1786. TEAM_SITHL = AddExtraTeam("Sith Lord", {
  1787.  
  1788. color = Color(255, 0, 15, 255),
  1789.  
  1790. model = "models/royal_guard_blue.mdl",
  1791.  
  1792. description = [[You are a Sith Lord punish the weak that do not listen to the DarkSide.]],
  1793.  
  1794. weapons = {"weapon_lightsaber"},
  1795.  
  1796. command = "SithL",
  1797.  
  1798. max = 2,
  1799.  
  1800. salary = 1,
  1801.  
  1802. admin = 0,
  1803.  
  1804. vote = false,
  1805.  
  1806. hasLicense = false,
  1807.  
  1808. PlayerSpawn = function(ply) ply:SetHealth(8000) end,
  1809.  
  1810. customCheck = function(ply) return PlychangeAllowed(ply,"Sith Lord") end,
  1811.  
  1812. CustomCheckFailMsg = "You are not in the withelist!",
  1813.  
  1814. category = "Event Classes",
  1815.  
  1816. sortOrder = 6,
  1817.  
  1818. })
  1819.  
  1820.  
  1821.  
  1822. TEAM_Droid = AddExtraTeam("Battle Droid", {
  1823.  
  1824. color = Color(206, 181, 92, 255),
  1825.  
  1826. model = "models/player/sgg/starwars/battledroid.mdl",
  1827.  
  1828. description = [[You are an event class, rp the class well.]],
  1829.  
  1830. weapons = {"weapon_752_e5"},
  1831.  
  1832. command = "Droid",
  1833.  
  1834. max = 5,
  1835.  
  1836. salary = 5,
  1837.  
  1838. admin = 0,
  1839.  
  1840. vote = false,
  1841.  
  1842. hasLicense = false,
  1843.  
  1844. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  1845.  
  1846. customCheck = function(ply) return PlychangeAllowed(ply,"Battle Droid") end,
  1847.  
  1848. CustomCheckFailMsg = "You are not in the withelist!",
  1849.  
  1850. category = "Event Classes",
  1851.  
  1852. sortOrder = 1,
  1853.  
  1854. })
  1855.  
  1856.  
  1857.  
  1858. TEAM_DroidS = AddExtraTeam("Battle Droid SGT", {
  1859.  
  1860. color = Color(206, 181, 92, 255),
  1861.  
  1862. model = "models/player/sgg/starwars/battledroid_security.mdl",
  1863.  
  1864. description = [[You are an event class, rp the class well.]],
  1865.  
  1866. weapons = {"weapon_752_e5"},
  1867.  
  1868. command = "DroidS",
  1869.  
  1870. max = 4,
  1871.  
  1872. salary = 5,
  1873.  
  1874. admin = 0,
  1875.  
  1876. vote = false,
  1877.  
  1878. hasLicense = false,
  1879.  
  1880. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  1881.  
  1882. customCheck = function(ply) return PlychangeAllowed(ply,"Battle Droid SGT") end,
  1883.  
  1884. CustomCheckFailMsg = "You are not in the withelist!",
  1885.  
  1886. category = "Event Classes",
  1887.  
  1888. sortOrder = 2,
  1889.  
  1890. })
  1891.  
  1892.  
  1893.  
  1894. TEAM_DroidC = AddExtraTeam("Battle Droid Commander", {
  1895.  
  1896. color = Color(206, 181, 92, 255),
  1897.  
  1898. model = "models/player/sgg/starwars/battledroid_commander.mdl",
  1899.  
  1900. description = [[You are an event class, rp the class well.]],
  1901.  
  1902. weapons = {"weapon_752_e5", "weapon_752_dh17"},
  1903.  
  1904. command = "DroidC",
  1905.  
  1906. max = 1,
  1907.  
  1908. salary = 10,
  1909.  
  1910. admin = 0,
  1911.  
  1912. vote = false,
  1913.  
  1914. hasLicense = false,
  1915.  
  1916. PlayerSpawn = function(ply) ply:SetHealth(500) end,
  1917.  
  1918. customCheck = function(ply) return PlychangeAllowed(ply,"Battle Droid Commander") end,
  1919.  
  1920. CustomCheckFailMsg = "You are not in the withelist!",
  1921.  
  1922. category = "Event Classes",
  1923.  
  1924. sortOrder = 3,
  1925.  
  1926. })
  1927.  
  1928.  
  1929.  
  1930. TEAM_CDroid = AddExtraTeam("Commando Droid", {
  1931.  
  1932. color = Color(206, 181, 92, 255),
  1933.  
  1934. model = "models/player/sgg/starwars/battledroid_geo.mdl",
  1935.  
  1936. description = [[You are an event class, rp the class well.]],
  1937.  
  1938. weapons = {"parkourmod", "weapon_752_e5", "weapon_752_kyd21", "weapon_thehiddenblade", "weapon_camo", "grub_combine_sniper"},
  1939.  
  1940. command = "CDroid",
  1941.  
  1942. max = 5,
  1943.  
  1944. salary = 30,
  1945.  
  1946. admin = 0,
  1947.  
  1948. vote = false,
  1949.  
  1950. hasLicense = false,
  1951.  
  1952. PlayerSpawn = function(ply) ply:SetHealth(1000) end,
  1953.  
  1954. customCheck = function(ply) return PlychangeAllowed(ply,"Commando Droid") end,
  1955.  
  1956. CustomCheckFailMsg = "You are not in the withelist!",
  1957.  
  1958. category = "Event Classes",
  1959.  
  1960. sortOrder = 8,
  1961.  
  1962. })
  1963.  
  1964.  
  1965.  
  1966. -- Pilots
  1967.  
  1968.  
  1969.  
  1970. TEAM_Pilot = AddExtraTeam("3rd Hawk Squadron Pilot", {
  1971.  
  1972. color = Color(0, 195, 154, 255),
  1973.  
  1974. model = "models/player/sgg/starwars/clonetrooper_pilot.mdl",
  1975.  
  1976. description = [[A pilot, sometimes called a flyboy, directly controlled the operation of a vehicle while located within the same craft. For small starships the pilot might be in charge of all aspects of the vehicle including navigation, sensors, communications and weapons. For larger ships, a pilot may be assisted by other crew members to handle different ship systems. The term "pilot" applied across vehicles used on land or in water, air, and/or space.]],
  1977.  
  1978. weapons = {"weapon_752_dc17", "weapon_752_dc15s"},
  1979.  
  1980. command = "Pilot",
  1981.  
  1982. max = 10,
  1983.  
  1984. salary = 10,
  1985.  
  1986. admin = 0,
  1987.  
  1988. vote = false,
  1989.  
  1990. hasLicense = false,
  1991.  
  1992. customCheck = function(ply) return PlychangeAllowed(ply,"3rd Hawk Squadron Pilot") end,
  1993.  
  1994. CustomCheckFailMsg = "You are not in the withelist!",
  1995.  
  1996. category = "Pilots",
  1997.  
  1998. sortOrder = 1,
  1999.  
  2000. })
  2001.  
  2002.  
  2003.  
  2004. TEAM_PilotC = AddExtraTeam("3rd Hawk Squadron Commander Lance", {
  2005.  
  2006. color = Color(0, 195, 154, 255),
  2007.  
  2008. model = "models/kriegsyntax/sw_752/2ndac/bearsquad/commander/playermodel.mdl",
  2009.  
  2010. description = [[A pilot, sometimes called a flyboy, directly controlled the operation of a vehicle while located within the same craft. For small starships the pilot might be in charge of all aspects of the vehicle including navigation, sensors, communications and weapons. For larger ships, a pilot may be assisted by other crew members to handle different ship systems. The term "pilot" applied across vehicles used on land or in water, air, and/or space.]],
  2011.  
  2012. weapons = {"weapon_752_dc17", "weapon_752_dc15s"},
  2013.  
  2014. command = "PilotC",
  2015.  
  2016. max = 1,
  2017.  
  2018. salary = 20,
  2019.  
  2020. admin = 0,
  2021.  
  2022. vote = false,
  2023.  
  2024. hasLicense = false,
  2025.  
  2026. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  2027.  
  2028. customCheck = function(ply) return PlychangeAllowed(ply,"3rd Hawk Squadron Commander Lance") end,
  2029.  
  2030. CustomCheckFailMsg = "You are not in the withelist!",
  2031.  
  2032. category = "Pilots",
  2033.  
  2034. sortOrder = 2,
  2035.  
  2036. })
  2037.  
  2038.  
  2039.  
  2040. -- Staff
  2041.  
  2042.  
  2043.  
  2044. TEAM_SOD = AddExtraTeam("Staff on Duty", {
  2045.  
  2046. color = Color(97, 216, 116, 255),
  2047.  
  2048. model = "models/nikout/swtor/npc/hk51.mdl",
  2049.  
  2050. description = [[Do not abuse commands, make the server a better place, keep rdm'rs and trolls at bay.]],
  2051.  
  2052. weapons = {"weapon_physgun", "gmod_tool", "weapon_physcannon"},
  2053.  
  2054. command = "SOD",
  2055.  
  2056. max = 5,
  2057.  
  2058. salary = 50,
  2059.  
  2060. admin = 0,
  2061.  
  2062. vote = false,
  2063.  
  2064. hasLicense = false,
  2065.  
  2066. customCheck = function(ply) return ply:GetUserGroup("trialmod") == "trialmod" or ply:GetUserGroup("moderator") == "moderator" or ply:GetUserGroup("Operator") == "Operator" or ply:GetUserGroup("Bronze VIP Operator") == "Bronze VIP Operator" or ply:GetUserGroup("Silver VIP Operator") == "Silver VIP Operator" or ply:GetUserGroup("Gold VIP Operator") == "Gold VIP Operator" or ply:GetUserGroup("Diamond VIP Operator") == "Diamond VIP Operator" or ply:GetUserGroup("admin") == "admin" or ply:GetUserGroup("owner") == "owner" or ply:GetUserGroup("headadmin") == "headadmin" or ply:GetUserGroup("staffmanager") == "staffmanager" or ply:GetUserGroup("serverlegendmember") == "serverlegendmember" or ply:GetUserGroup("owner") == "owner" or ply:GetUserGroup("coder") == "coder" or ply:GetUserGroup("serverlegendtrial") == "serverlegendtrial" or ply:GetUserGroup("legendary") == "legendary" or ply:GetUserGroup("co-owner") == "co-owner" or ply:GetUserGroup("2ndowner") == "2ndowner" or ply:GetUserGroup("3rdowner") == "3rdowner" end,
  2067.  
  2068. category = "Staff",
  2069.  
  2070. sortOrder = 1,
  2071.  
  2072. })
  2073.  
  2074.  
  2075.  
  2076. -- Custom Jobs
  2077.  
  2078.  
  2079.  
  2080. TEAM_187thC = AddExtraTeam("187th Legion Commander", {
  2081.  
  2082. color = Color(253, 1, 190, 255),
  2083.  
  2084. model = "models/player/asgclonewars/trooper_187th_para/clonetrooper_187th_para.mdl",
  2085.  
  2086. description = [[This clone commander was the commander of High Jedi General Mace Windu's 187th Legion of clone troopers. This commander had airborne trooper armor and was decorated with purple markings to represent Windu's purple lightsaber. The commander also wore a yellowish bandoleer and used a DC-15A blaster rifle. ]],
  2087.  
  2088. weapons = {"weapon_752_dc15s", "weapon_752_dc17"},
  2089.  
  2090. command = "187thC",
  2091.  
  2092. max = 1,
  2093.  
  2094. salary = 20,
  2095.  
  2096. admin = 0,
  2097.  
  2098. vote = false,
  2099.  
  2100. hasLicense = false,
  2101.  
  2102. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  2103.  
  2104. customCheck = function(ply) return PlychangeAllowed(ply,"187th Legion Commander") end,
  2105.  
  2106. CustomCheckFailMsg = "You are not in the withelist!",
  2107.  
  2108. category = "Custom",
  2109.  
  2110. sortOrder = 2,
  2111.  
  2112. })
  2113.  
  2114.  
  2115.  
  2116. TEAM_187thT = AddExtraTeam("187th Legion Trooper", {
  2117.  
  2118. color = Color(253, 1, 190, 255),
  2119.  
  2120. model = "models/player/asgclonewars/clonetrooper_187th/clonetrooper_187th.mdl",
  2121.  
  2122. description = [[The 187th Legion was a legion of clone troopers that served under the command of Jedi Master and High General Mace Windu. They were distinguished by the purple markings on their armor, signifying the color of Windu's lightsaber.]],
  2123.  
  2124. weapons = {"weapon_752_dc15a", "weapon_752_dc17"},
  2125.  
  2126. command = "187tht",
  2127.  
  2128. max = 10,
  2129.  
  2130. salary = 10,
  2131.  
  2132. admin = 0,
  2133.  
  2134. vote = false,
  2135.  
  2136. hasLicense = false,
  2137.  
  2138. customCheck = function(ply) return PlychangeAllowed(ply,"187th Legion Trooper") end,
  2139.  
  2140. CustomCheckFailMsg = "You are not in the withelist!",
  2141.  
  2142. category = "Custom",
  2143.  
  2144. sortOrder = 1,
  2145.  
  2146. })
  2147.  
  2148.  
  2149.  
  2150. TEAM_SEN = AddExtraTeam("Senator", {
  2151.  
  2152. color = Color(253, 166, 190, 255),
  2153.  
  2154. model = "models/player/b4p/b4p_rodian.mdl",
  2155.  
  2156. description = [[The Galactic Senate was a place where all the Republic's elected and appointed senators and representatives from the farthest reaches of the galaxy would discuss major problems and come to decisions. The Galactic Constitution invested the Senate with the power to regulate trade, maintain maps of the galaxy's hyperspace routes, and to maintain the Republic's military. It was still a relatively weak body at the end of the Old Sith Wars. Following the Ruusan Reformation, a large amount of power was removed from the Supreme Chancellor and granted to the Senate, which although resulting in greater regional involvement in galactic politics, also resulted in increased gridlock and corruption. One of the privileges a Supreme Chancellor still possessed was his or her ability to call an Extraordinary Session.]],
  2157.  
  2158. weapons = {"weapon_752_dc17"},
  2159.  
  2160. command = "SEN",
  2161.  
  2162. max = 10,
  2163.  
  2164. salary = 20,
  2165.  
  2166. admin = 0,
  2167.  
  2168. vote = false,
  2169.  
  2170. hasLicense = false,
  2171.  
  2172. PlayerSpawn = function(ply) ply:SetHealth(200) end,
  2173.  
  2174. customCheck = function(ply) return PlychangeAllowed(ply,"Senator") end,
  2175.  
  2176. CustomCheckFailMsg = "You are not in the withelist!",
  2177.  
  2178. category = "Custom",
  2179.  
  2180. sortOrder = 3,
  2181.  
  2182. })
  2183.  
  2184.  
  2185.  
  2186. -- Republic Commando
  2187.  
  2188.  
  2189.  
  2190. TEAM_Rep1 = AddExtraTeam("Delta RC Boss", {
  2191.  
  2192. color = Color(0, 25, 255, 255),
  2193.  
  2194. model = "models/player/sgg/starwars/clone_commando_38.mdl",
  2195.  
  2196. description = [[\You are Leader of your group of Republic Commandos, Lead them well.]],
  2197.  
  2198. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2199.  
  2200. command = "Rep1",
  2201.  
  2202. max = 1,
  2203.  
  2204. salary = 25,
  2205.  
  2206. admin = 0,
  2207.  
  2208. vote = false,
  2209.  
  2210. hasLicense = false,
  2211.  
  2212. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2213.  
  2214. customCheck = function(ply) return PlychangeAllowed(ply,"Delta RC Boss") end,
  2215.  
  2216. CustomCheckFailMsg = "You are not in the withelist!",
  2217.  
  2218. category = "Republic Commando",
  2219.  
  2220. sortOrder = 1,
  2221.  
  2222. })
  2223.  
  2224.  
  2225.  
  2226. TEAM_Rep2 = AddExtraTeam("Delta RC Fixer", {
  2227.  
  2228. color = Color(0, 25, 255, 255),
  2229.  
  2230. model = "models/player/sgg/starwars/clone_commando_40.mdl",
  2231.  
  2232. description = [[You are the Hacker of the Republic Commandos Listen to Boss.]],
  2233.  
  2234. weapons = {"lockpick", "weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2235.  
  2236. command = "Rep2",
  2237.  
  2238. max = 1,
  2239.  
  2240. salary = 25,
  2241.  
  2242. admin = 0,
  2243.  
  2244. vote = false,
  2245.  
  2246. hasLicense = false,
  2247.  
  2248. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2249.  
  2250. customCheck = function(ply) return PlychangeAllowed(ply,"Delta RC Fixer") end,
  2251.  
  2252. CustomCheckFailMsg = "You are not in the withelist!",
  2253.  
  2254. category = "Republic Commando",
  2255.  
  2256. sortOrder = 2,
  2257.  
  2258. })
  2259.  
  2260.  
  2261.  
  2262. TEAM_Rep3 = AddExtraTeam("Delta RC Sev", {
  2263.  
  2264. color = Color(0, 25, 255, 255),
  2265.  
  2266. model = "models/player/sgg/starwars/clone_commando_07.mdl",
  2267.  
  2268. description = [[You are the Sniper of the Republic Commandos, Listen to Boss.]],
  2269.  
  2270. weapons = {"weapon_752_dc17m_sn", "weapon_752_dc15sa"},
  2271.  
  2272. command = "Rep3",
  2273.  
  2274. max = 1,
  2275.  
  2276. salary = 25,
  2277.  
  2278. admin = 0,
  2279.  
  2280. vote = false,
  2281.  
  2282. hasLicense = false,
  2283.  
  2284. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2285.  
  2286. customCheck = function(ply) return PlychangeAllowed(ply,"Delta RC Sev", "weapon_thehiddenblade") end,
  2287.  
  2288. CustomCheckFailMsg = "You are not in the withelist!",
  2289.  
  2290. category = "Republic Commando",
  2291.  
  2292. sortOrder = 3,
  2293.  
  2294. })
  2295.  
  2296.  
  2297.  
  2298. TEAM_Rep4 = AddExtraTeam("Delta RC Scorch", {
  2299.  
  2300. color = Color(0, 25, 255, 255),
  2301.  
  2302. model = "models/player/sgg/starwars/clone_commando_62.mdl",
  2303.  
  2304. description = [[You are the Demolitions expert of Republic Commandos, Listen to Boss.]],
  2305.  
  2306. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_swrc_det", "weapon_thehiddenblade"},
  2307.  
  2308. command = "Rep4",
  2309.  
  2310. max = 1,
  2311.  
  2312. salary = 25,
  2313.  
  2314. admin = 0,
  2315.  
  2316. vote = false,
  2317.  
  2318. hasLicense = false,
  2319.  
  2320. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2321.  
  2322. customCheck = function(ply) return PlychangeAllowed(ply,"Delta RC Scorch") end,
  2323.  
  2324. CustomCheckFailMsg = "You are not in the withelist!",
  2325.  
  2326. category = "Republic Commando",
  2327.  
  2328. sortOrder = 4,
  2329.  
  2330. })
  2331.  
  2332.  
  2333.  
  2334. TEAM_Rep5 = AddExtraTeam("Republic Commando", {
  2335.  
  2336. color = Color(0, 25, 255, 255),
  2337.  
  2338. model = "models/player/sgg/starwars/clone_commando.mdl",
  2339.  
  2340. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2341.  
  2342. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2343.  
  2344. command = "Rep5",
  2345.  
  2346. max = 20,
  2347.  
  2348. salary = 25,
  2349.  
  2350. admin = 0,
  2351.  
  2352. vote = false,
  2353.  
  2354. hasLicense = false,
  2355.  
  2356. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2357.  
  2358. customCheck = function(ply) return PlychangeAllowed(ply,"Republic Commando") end,
  2359.  
  2360. CustomCheckFailMsg = "You are not in the withelist!",
  2361.  
  2362. category = "Republic Commando",
  2363.  
  2364. sortOrder = 5,
  2365.  
  2366. })
  2367.  
  2368.  
  2369.  
  2370. TEAM_Rep6 = AddExtraTeam("Republic Commando Squad Director", {
  2371.  
  2372. color = Color(0, 25, 255, 255),
  2373.  
  2374. model = "models/player/sgg/starwars/clone_commando_mp_c.mdl",
  2375.  
  2376. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2377.  
  2378. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "sanctum2_sg", "weapon_thehiddenblade"},
  2379.  
  2380. command = "Rep6",
  2381.  
  2382. max = 3,
  2383.  
  2384. salary = 30,
  2385.  
  2386. admin = 0,
  2387.  
  2388. vote = false,
  2389.  
  2390. hasLicense = false,
  2391.  
  2392. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2393.  
  2394. customCheck = function(ply) return PlychangeAllowed(ply,"Republic Commando Squad Director") end,
  2395.  
  2396. CustomCheckFailMsg = "You are not in the withelist!",
  2397.  
  2398. category = "Republic Commando",
  2399.  
  2400. sortOrder = 5,
  2401.  
  2402. })
  2403.  
  2404.  
  2405.  
  2406. TEAM_Rep7 = AddExtraTeam("Alpha RC Commander", {
  2407.  
  2408. color = Color(0, 25, 255, 255),
  2409.  
  2410. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2411.  
  2412. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2413.  
  2414. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2415.  
  2416. command = "Rep7",
  2417.  
  2418. max = 1,
  2419.  
  2420. salary = 25,
  2421.  
  2422. admin = 0,
  2423.  
  2424. vote = false,
  2425.  
  2426. hasLicense = false,
  2427.  
  2428. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2429.  
  2430. customCheck = function(ply) return PlychangeAllowed(ply,"Alpha RC Commander") end,
  2431.  
  2432. CustomCheckFailMsg = "You are not in the withelist!",
  2433.  
  2434. category = "Republic Commando",
  2435.  
  2436. sortOrder = 5,
  2437.  
  2438. })
  2439.  
  2440.  
  2441.  
  2442.  
  2443.  
  2444. TEAM_Rep8 = AddExtraTeam("Alpha RC Captain", {
  2445.  
  2446. color = Color(0, 25, 255, 255),
  2447.  
  2448. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2449.  
  2450. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2451.  
  2452. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2453.  
  2454. command = "Rep8",
  2455.  
  2456. max = 3,
  2457.  
  2458. salary = 25,
  2459.  
  2460. admin = 0,
  2461.  
  2462. vote = false,
  2463.  
  2464. hasLicense = false,
  2465.  
  2466. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2467.  
  2468. customCheck = function(ply) return PlychangeAllowed(ply,"Alpha RC Captain") end,
  2469.  
  2470. CustomCheckFailMsg = "You are not in the withelist!",
  2471.  
  2472. category = "Republic Commando",
  2473.  
  2474. sortOrder = 5,
  2475.  
  2476. })
  2477.  
  2478.  
  2479.  
  2480.  
  2481.  
  2482. TEAM_Rep9 = AddExtraTeam("Alpha RC", {
  2483.  
  2484. color = Color(0, 25, 255, 255),
  2485.  
  2486. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2487.  
  2488. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2489.  
  2490. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2491.  
  2492. command = "Rep9",
  2493.  
  2494. max = 5,
  2495.  
  2496. salary = 25,
  2497.  
  2498. admin = 0,
  2499.  
  2500. vote = false,
  2501.  
  2502. hasLicense = false,
  2503.  
  2504. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2505.  
  2506. customCheck = function(ply) return PlychangeAllowed(ply,"Alpha RC") end,
  2507.  
  2508. CustomCheckFailMsg = "You are not in the withelist!",
  2509.  
  2510. category = "Republic Commando",
  2511.  
  2512. sortOrder = 5,
  2513.  
  2514. })
  2515.  
  2516.  
  2517.  
  2518.  
  2519.  
  2520. TEAM_Rep10 = AddExtraTeam("Alpha RC Engineer", {
  2521.  
  2522. color = Color(0, 25, 255, 255),
  2523.  
  2524. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2525.  
  2526. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2527.  
  2528. weapons = {"sanctum2_sg", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2529.  
  2530. command = "Rep10",
  2531.  
  2532. max = 3,
  2533.  
  2534. salary = 25,
  2535.  
  2536. admin = 0,
  2537.  
  2538. vote = false,
  2539.  
  2540. hasLicense = false,
  2541.  
  2542. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2543.  
  2544. customCheck = function(ply) return PlychangeAllowed(ply,"Alpha RC Engineer") end,
  2545.  
  2546. CustomCheckFailMsg = "You are not in the withelist!",
  2547.  
  2548. category = "Republic Commando",
  2549.  
  2550. sortOrder = 5,
  2551.  
  2552. })
  2553.  
  2554.  
  2555.  
  2556.  
  2557.  
  2558. TEAM_Rep11 = AddExtraTeam("Alpha RC Sniper", {
  2559.  
  2560. color = Color(0, 25, 255, 255),
  2561.  
  2562. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2563.  
  2564. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2565.  
  2566. weapons = {"sanctum2_sr", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2567.  
  2568. command = "Rep11",
  2569.  
  2570. max = 3,
  2571.  
  2572. salary = 25,
  2573.  
  2574. admin = 0,
  2575.  
  2576. vote = false,
  2577.  
  2578. hasLicense = false,
  2579.  
  2580. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2581.  
  2582. customCheck = function(ply) return PlychangeAllowed(ply,"Alpha RC Sniper") end,
  2583.  
  2584. CustomCheckFailMsg = "You are not in the withelist!",
  2585.  
  2586. category = "Republic Commando",
  2587.  
  2588. sortOrder = 5,
  2589.  
  2590. })
  2591.  
  2592.  
  2593.  
  2594. TEAM_Rep12 = AddExtraTeam("Bravo RC Commander", {
  2595.  
  2596. color = Color(0, 25, 255, 255),
  2597.  
  2598. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2599.  
  2600. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2601.  
  2602. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2603.  
  2604. command = "Rep12",
  2605.  
  2606. max = 1,
  2607.  
  2608. salary = 25,
  2609.  
  2610. admin = 0,
  2611.  
  2612. vote = false,
  2613.  
  2614. hasLicense = false,
  2615.  
  2616. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2617.  
  2618. customCheck = function(ply) return PlychangeAllowed(ply,"Bravo RC Commander") end,
  2619.  
  2620. CustomCheckFailMsg = "You are not in the withelist!",
  2621.  
  2622. category = "Republic Commando",
  2623.  
  2624. sortOrder = 5,
  2625.  
  2626. })
  2627.  
  2628.  
  2629.  
  2630.  
  2631.  
  2632. TEAM_Rep13 = AddExtraTeam("Bravo RC Captain", {
  2633.  
  2634. color = Color(0, 25, 255, 255),
  2635.  
  2636. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2637.  
  2638. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2639.  
  2640. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2641.  
  2642. command = "Rep13",
  2643.  
  2644. max = 3,
  2645.  
  2646. salary = 25,
  2647.  
  2648. admin = 0,
  2649.  
  2650. vote = false,
  2651.  
  2652. hasLicense = false,
  2653.  
  2654. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2655.  
  2656. customCheck = function(ply) return PlychangeAllowed(ply,"Bravo RC Captain") end,
  2657.  
  2658. CustomCheckFailMsg = "You are not in the withelist!",
  2659.  
  2660. category = "Republic Commando",
  2661.  
  2662. sortOrder = 5,
  2663.  
  2664. })
  2665.  
  2666.  
  2667.  
  2668.  
  2669.  
  2670. TEAM_Rep14 = AddExtraTeam("Bravo RC", {
  2671.  
  2672. color = Color(0, 25, 255, 255),
  2673.  
  2674. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2675.  
  2676. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2677.  
  2678. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2679.  
  2680. command = "Rep14",
  2681.  
  2682. max = 5,
  2683.  
  2684. salary = 25,
  2685.  
  2686. admin = 0,
  2687.  
  2688. vote = false,
  2689.  
  2690. hasLicense = false,
  2691.  
  2692. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2693.  
  2694. customCheck = function(ply) return PlychangeAllowed(ply,"Bravo RC") end,
  2695.  
  2696. CustomCheckFailMsg = "You are not in the withelist!",
  2697.  
  2698. category = "Republic Commando",
  2699.  
  2700. sortOrder = 5,
  2701.  
  2702. })
  2703.  
  2704.  
  2705.  
  2706.  
  2707.  
  2708. TEAM_Rep15 = AddExtraTeam("Bravo RC Engineer", {
  2709.  
  2710. color = Color(0, 25, 255, 255),
  2711.  
  2712. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2713.  
  2714. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2715.  
  2716. weapons = {"sanctum2_sg", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2717.  
  2718. command = "Rep15",
  2719.  
  2720. max = 3,
  2721.  
  2722. salary = 25,
  2723.  
  2724. admin = 0,
  2725.  
  2726. vote = false,
  2727.  
  2728. hasLicense = false,
  2729.  
  2730. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2731.  
  2732. customCheck = function(ply) return PlychangeAllowed(ply,"Bravo RC Engineer") end,
  2733.  
  2734. CustomCheckFailMsg = "You are not in the withelist!",
  2735.  
  2736. category = "Republic Commando",
  2737.  
  2738. sortOrder = 5,
  2739.  
  2740. })
  2741.  
  2742.  
  2743.  
  2744.  
  2745.  
  2746. TEAM_Rep16 = AddExtraTeam("Bravo RC Sniper", {
  2747.  
  2748. color = Color(0, 25, 255, 255),
  2749.  
  2750. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2751.  
  2752. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2753.  
  2754. weapons = {"sanctum2_sr", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2755.  
  2756. command = "Rep16",
  2757.  
  2758. max = 3,
  2759.  
  2760. salary = 25,
  2761.  
  2762. admin = 0,
  2763.  
  2764. vote = false,
  2765.  
  2766. hasLicense = false,
  2767.  
  2768. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2769.  
  2770. customCheck = function(ply) return PlychangeAllowed(ply,"Bravo RC Sniper") end,
  2771.  
  2772. CustomCheckFailMsg = "You are not in the withelist!",
  2773.  
  2774. category = "Republic Commando",
  2775.  
  2776. sortOrder = 5,
  2777.  
  2778. })
  2779.  
  2780.  
  2781.  
  2782. TEAM_Rep17 = AddExtraTeam("Charlie RC Commander", {
  2783.  
  2784. color = Color(0, 25, 255, 255),
  2785.  
  2786. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2787.  
  2788. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2789.  
  2790. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2791.  
  2792. command = "Rep17",
  2793.  
  2794. max = 1,
  2795.  
  2796. salary = 25,
  2797.  
  2798. admin = 0,
  2799.  
  2800. vote = false,
  2801.  
  2802. hasLicense = false,
  2803.  
  2804. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2805.  
  2806. customCheck = function(ply) return PlychangeAllowed(ply,"Charlie RC Commander") end,
  2807.  
  2808. CustomCheckFailMsg = "You are not in the withelist!",
  2809.  
  2810. category = "Republic Commando",
  2811.  
  2812. sortOrder = 5,
  2813.  
  2814. })
  2815.  
  2816.  
  2817.  
  2818.  
  2819.  
  2820. TEAM_Rep18 = AddExtraTeam("Charlie RC Captain", {
  2821.  
  2822. color = Color(0, 25, 255, 255),
  2823.  
  2824. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2825.  
  2826. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2827.  
  2828. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2829.  
  2830. command = "Rep18",
  2831.  
  2832. max = 3,
  2833.  
  2834. salary = 25,
  2835.  
  2836. admin = 0,
  2837.  
  2838. vote = false,
  2839.  
  2840. hasLicense = false,
  2841.  
  2842. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2843.  
  2844. customCheck = function(ply) return PlychangeAllowed(ply,"Charlie RC Captain") end,
  2845.  
  2846. CustomCheckFailMsg = "You are not in the withelist!",
  2847.  
  2848. category = "Republic Commando",
  2849.  
  2850. sortOrder = 5,
  2851.  
  2852. })
  2853.  
  2854.  
  2855.  
  2856.  
  2857.  
  2858. TEAM_Rep19 = AddExtraTeam("Charlie RC", {
  2859.  
  2860. color = Color(0, 25, 255, 255),
  2861.  
  2862. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2863.  
  2864. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2865.  
  2866. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2867.  
  2868. command = "Rep19",
  2869.  
  2870. max = 5,
  2871.  
  2872. salary = 25,
  2873.  
  2874. admin = 0,
  2875.  
  2876. vote = false,
  2877.  
  2878. hasLicense = false,
  2879.  
  2880. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2881.  
  2882. customCheck = function(ply) return PlychangeAllowed(ply,"Charlie RC") end,
  2883.  
  2884. CustomCheckFailMsg = "You are not in the withelist!",
  2885.  
  2886. category = "Republic Commando",
  2887.  
  2888. sortOrder = 5,
  2889.  
  2890. })
  2891.  
  2892.  
  2893.  
  2894.  
  2895.  
  2896. TEAM_Rep20 = AddExtraTeam("Charlie RC Engineer", {
  2897.  
  2898. color = Color(0, 25, 255, 255),
  2899.  
  2900. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2901.  
  2902. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2903.  
  2904. weapons = {"sanctum2_sg", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2905.  
  2906. command = "Rep20",
  2907.  
  2908. max = 3,
  2909.  
  2910. salary = 25,
  2911.  
  2912. admin = 0,
  2913.  
  2914. vote = false,
  2915.  
  2916. hasLicense = false,
  2917.  
  2918. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2919.  
  2920. customCheck = function(ply) return PlychangeAllowed(ply,"Charlie RC Engineer") end,
  2921.  
  2922. CustomCheckFailMsg = "You are not in the withelist!",
  2923.  
  2924. category = "Republic Commando",
  2925.  
  2926. sortOrder = 5,
  2927.  
  2928. })
  2929.  
  2930.  
  2931.  
  2932.  
  2933.  
  2934. TEAM_Rep21 = AddExtraTeam("Charlie RC Sniper", {
  2935.  
  2936. color = Color(0, 25, 255, 255),
  2937.  
  2938. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  2939.  
  2940. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2941.  
  2942. weapons = {"sanctum2_sr", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2943.  
  2944. command = "Rep21",
  2945.  
  2946. max = 3,
  2947.  
  2948. salary = 25,
  2949.  
  2950. admin = 0,
  2951.  
  2952. vote = false,
  2953.  
  2954. hasLicense = false,
  2955.  
  2956. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  2957.  
  2958. customCheck = function(ply) return PlychangeAllowed(ply,"Charlie RC Sniper") end,
  2959.  
  2960. CustomCheckFailMsg = "You are not in the withelist!",
  2961.  
  2962. category = "Republic Commando",
  2963.  
  2964. sortOrder = 5,
  2965.  
  2966. })
  2967.  
  2968.  
  2969.  
  2970.  
  2971.  
  2972. TEAM_Rep22 = AddExtraTeam("Echo RC Commander", {
  2973.  
  2974. color = Color(0, 25, 255, 255),
  2975.  
  2976. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  2977.  
  2978. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  2979.  
  2980. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  2981.  
  2982. command = "Rep22",
  2983.  
  2984. max = 1,
  2985.  
  2986. salary = 25,
  2987.  
  2988. admin = 0,
  2989.  
  2990. vote = false,
  2991.  
  2992. hasLicense = false,
  2993.  
  2994. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  2995.  
  2996. customCheck = function(ply) return PlychangeAllowed(ply,"Echo RC Commander") end,
  2997.  
  2998. CustomCheckFailMsg = "You are not in the withelist!",
  2999.  
  3000. category = "Republic Commando",
  3001.  
  3002. sortOrder = 5,
  3003.  
  3004. })
  3005.  
  3006.  
  3007.  
  3008.  
  3009.  
  3010. TEAM_Rep23 = AddExtraTeam("Echo RC Captain", {
  3011.  
  3012. color = Color(0, 25, 255, 255),
  3013.  
  3014. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  3015.  
  3016. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3017.  
  3018. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3019.  
  3020. command = "Rep23",
  3021.  
  3022. max = 3,
  3023.  
  3024. salary = 25,
  3025.  
  3026. admin = 0,
  3027.  
  3028. vote = false,
  3029.  
  3030. hasLicense = false,
  3031.  
  3032. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  3033.  
  3034. customCheck = function(ply) return PlychangeAllowed(ply,"Echo RC Captain") end,
  3035.  
  3036. CustomCheckFailMsg = "You are not in the withelist!",
  3037.  
  3038. category = "Republic Commando",
  3039.  
  3040. sortOrder = 5,
  3041.  
  3042. })
  3043.  
  3044.  
  3045.  
  3046.  
  3047.  
  3048. TEAM_Rep24 = AddExtraTeam("Echo RC", {
  3049.  
  3050. color = Color(0, 25, 255, 255),
  3051.  
  3052. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3053.  
  3054. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3055.  
  3056. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3057.  
  3058. command = "Rep24",
  3059.  
  3060. max = 5,
  3061.  
  3062. salary = 25,
  3063.  
  3064. admin = 0,
  3065.  
  3066. vote = false,
  3067.  
  3068. hasLicense = false,
  3069.  
  3070. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3071.  
  3072. customCheck = function(ply) return PlychangeAllowed(ply,"Echo RC") end,
  3073.  
  3074. CustomCheckFailMsg = "You are not in the withelist!",
  3075.  
  3076. category = "Republic Commando",
  3077.  
  3078. sortOrder = 5,
  3079.  
  3080. })
  3081.  
  3082.  
  3083.  
  3084.  
  3085.  
  3086. TEAM_Rep25 = AddExtraTeam("Echo RC Engineer", {
  3087.  
  3088. color = Color(0, 25, 255, 255),
  3089.  
  3090. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3091.  
  3092. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3093.  
  3094. weapons = {"sanctum2_sg", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3095.  
  3096. command = "Rep25",
  3097.  
  3098. max = 3,
  3099.  
  3100. salary = 25,
  3101.  
  3102. admin = 0,
  3103.  
  3104. vote = false,
  3105.  
  3106. hasLicense = false,
  3107.  
  3108. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3109.  
  3110. customCheck = function(ply) return PlychangeAllowed(ply,"Echo RC Engineer") end,
  3111.  
  3112. CustomCheckFailMsg = "You are not in the withelist!",
  3113.  
  3114. category = "Republic Commando",
  3115.  
  3116. sortOrder = 5,
  3117.  
  3118. })
  3119.  
  3120.  
  3121.  
  3122.  
  3123.  
  3124. TEAM_Rep26 = AddExtraTeam("Echo RC Sniper", {
  3125.  
  3126. color = Color(0, 25, 255, 255),
  3127.  
  3128. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3129.  
  3130. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3131.  
  3132. weapons = {"sanctum2_sr", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3133.  
  3134. command = "Rep26",
  3135.  
  3136. max = 3,
  3137.  
  3138. salary = 25,
  3139.  
  3140. admin = 0,
  3141.  
  3142. vote = false,
  3143.  
  3144. hasLicense = false,
  3145.  
  3146. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3147.  
  3148. customCheck = function(ply) return PlychangeAllowed(ply,"Echo RC Sniper") end,
  3149.  
  3150. CustomCheckFailMsg = "You are not in the withelist!",
  3151.  
  3152. category = "Republic Commando",
  3153.  
  3154. sortOrder = 5,
  3155.  
  3156. })
  3157.  
  3158.  
  3159.  
  3160. TEAM_Rep27 = AddExtraTeam("Foxtrot RC Commander", {
  3161.  
  3162. color = Color(0, 25, 255, 255),
  3163.  
  3164. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  3165.  
  3166. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3167.  
  3168. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3169.  
  3170. command = "Rep27",
  3171.  
  3172. max = 1,
  3173.  
  3174. salary = 25,
  3175.  
  3176. admin = 0,
  3177.  
  3178. vote = false,
  3179.  
  3180. hasLicense = false,
  3181.  
  3182. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  3183.  
  3184. customCheck = function(ply) return PlychangeAllowed(ply,"Foxtrot RC Commander") end,
  3185.  
  3186. CustomCheckFailMsg = "You are not in the withelist!",
  3187.  
  3188. category = "Republic Commando",
  3189.  
  3190. sortOrder = 5,
  3191.  
  3192. })
  3193.  
  3194.  
  3195.  
  3196.  
  3197.  
  3198. TEAM_Rep28 = AddExtraTeam("Foxtrot RC Captain", {
  3199.  
  3200. color = Color(0, 25, 255, 255),
  3201.  
  3202. model = "models/player/sgg/starwars/clone_commando_mp_a.mdl",
  3203.  
  3204. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3205.  
  3206. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3207.  
  3208. command = "Rep28",
  3209.  
  3210. max = 3,
  3211.  
  3212. salary = 25,
  3213.  
  3214. admin = 0,
  3215.  
  3216. vote = false,
  3217.  
  3218. hasLicense = false,
  3219.  
  3220. PlayerSpawn = function(ply) ply:SetHealth(400) end,
  3221.  
  3222. customCheck = function(ply) return PlychangeAllowed(ply,"Foxtrot RC Captain") end,
  3223.  
  3224. CustomCheckFailMsg = "You are not in the withelist!",
  3225.  
  3226. category = "Republic Commando",
  3227.  
  3228. sortOrder = 5,
  3229.  
  3230. })
  3231.  
  3232.  
  3233.  
  3234.  
  3235.  
  3236. TEAM_Rep29 = AddExtraTeam("Foxtrot RC", {
  3237.  
  3238. color = Color(0, 25, 255, 255),
  3239.  
  3240. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3241.  
  3242. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3243.  
  3244. weapons = {"weapon_752_dc17m_br", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3245.  
  3246. command = "Rep29",
  3247.  
  3248. max = 5,
  3249.  
  3250. salary = 25,
  3251.  
  3252. admin = 0,
  3253.  
  3254. vote = false,
  3255.  
  3256. hasLicense = false,
  3257.  
  3258. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3259.  
  3260. customCheck = function(ply) return PlychangeAllowed(ply,"Foxtrot RC") end,
  3261.  
  3262. CustomCheckFailMsg = "You are not in the withelist!",
  3263.  
  3264. category = "Republic Commando",
  3265.  
  3266. sortOrder = 5,
  3267.  
  3268. })
  3269.  
  3270.  
  3271.  
  3272.  
  3273.  
  3274. TEAM_Rep30 = AddExtraTeam("Foxtrot RC Engineer", {
  3275.  
  3276. color = Color(0, 25, 255, 255),
  3277.  
  3278. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3279.  
  3280. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3281.  
  3282. weapons = {"sanctum2_sg", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3283.  
  3284. command = "Rep30",
  3285.  
  3286. max = 3,
  3287.  
  3288. salary = 25,
  3289.  
  3290. admin = 0,
  3291.  
  3292. vote = false,
  3293.  
  3294. hasLicense = false,
  3295.  
  3296. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3297.  
  3298. customCheck = function(ply) return PlychangeAllowed(ply,"Foxtrot RC Engineer") end,
  3299.  
  3300. CustomCheckFailMsg = "You are not in the withelist!",
  3301.  
  3302. category = "Republic Commando",
  3303.  
  3304. sortOrder = 5,
  3305.  
  3306. })
  3307.  
  3308.  
  3309.  
  3310.  
  3311.  
  3312. TEAM_Rep31 = AddExtraTeam("Foxtrot RC Sniper", {
  3313.  
  3314. color = Color(0, 25, 255, 255),
  3315.  
  3316. model = "models/player/sgg/starwars/clone_commando_mp_b.mdl",
  3317.  
  3318. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3319.  
  3320. weapons = {"sanctum2_sr", "weapon_752_dc15sa", "weapon_thehiddenblade"},
  3321.  
  3322. command = "Rep31",
  3323.  
  3324. max = 3,
  3325.  
  3326. salary = 25,
  3327.  
  3328. admin = 0,
  3329.  
  3330. vote = false,
  3331.  
  3332. hasLicense = false,
  3333.  
  3334. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3335.  
  3336. customCheck = function(ply) return PlychangeAllowed(ply,"Foxtrot RC Sniper") end,
  3337.  
  3338. CustomCheckFailMsg = "You are not in the withelist!",
  3339.  
  3340. category = "Republic Commando",
  3341.  
  3342. sortOrder = 5,
  3343.  
  3344. })
  3345.  
  3346. TEAM_Wookie = AddExtraTeam("Wookie", {
  3347.  
  3348. color = Color(0, 25, 255, 255),
  3349.  
  3350. model = "models/player/chewie.mdl",
  3351.  
  3352. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3353.  
  3354. weapons = {"weapon_752_bowcaster"},
  3355.  
  3356. command = "Wookie",
  3357.  
  3358. max = 3,
  3359.  
  3360. salary = 25,
  3361.  
  3362. admin = 0,
  3363.  
  3364. vote = false,
  3365.  
  3366. hasLicense = false,
  3367.  
  3368. PlayerSpawn = function(ply) ply:SetHealth(300) end,
  3369.  
  3370. customCheck = function(ply) return PlychangeAllowed(ply,"Wookie") end,
  3371.  
  3372. CustomCheckFailMsg = "You are not in the withelist!",
  3373.  
  3374. category = "Wookie",
  3375.  
  3376. sortOrder = 6,
  3377.  
  3378. })
  3379.  
  3380. TEAM_ELITE = AddExtraTeam("Elite Trooper", {
  3381.  
  3382. color = Color(0, 0, 0, 255),
  3383.  
  3384. model = "models/sgg/starwars/clonetrooper_ctm_defaut.mdl",
  3385.  
  3386. description = [[Soon after the Kaminoans began developing the Galactic Republic's secret clone army on their homeworld of Kamino, a special forces unit was conceived as a necessary addition to the overall operational effectiveness of the new military force. Jango Fett, a Mandalorian bounty hunter and the genetic template for the entire clone army, was confident that progeny would be engineered into the best soldiers in the galaxy, but also knew that there were situations that regular infantry was not suited for. As a result, he requested for a special batch of clones that he would personally train as Advanced Recon Commandos. The Kaminoans reluctantly agreed, but due to their disappointment in the failed prototypes, they felt little confidence that the second generation of ARC troopers would meet their expectations. Thus, they compromised with Fett; the bounty hunter would be allowed to train his ARC troopers while the Kaminoans proceeded with their plan to create the clone commandos, otherwise known as Republic commandos.]],
  3387.  
  3388. weapons = {"weapon_752_dsbp", "weapon_752_dc15a", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  3389.  
  3390. command = "elitetrooper",
  3391.  
  3392. max = 1,
  3393.  
  3394. salary = 25,
  3395.  
  3396. admin = 0,
  3397.  
  3398. vote = false,
  3399.  
  3400. hasLicense = false,
  3401.  
  3402. PlayerSpawn = function(ply) ply:SetHealth(500) end,
  3403.  
  3404. customCheck = function(ply) return ply:SteamID()=="STEAM_0:1:56125951" end,
  3405.  
  3406. CustomCheckFailMsg = "Your are not Leo (GOD)",
  3407.  
  3408. category = "Clones",
  3409.  
  3410. sortOrder = 1,
  3411.  
  3412. })
  3413.  
  3414. TEAM_JAWA = AddExtraTeam("Jawa", {
  3415.  
  3416. color = Color(173,255,47),
  3417.  
  3418. model = "models/player/b4p/b4p_jawa.mdl",
  3419.  
  3420. description = [[Jawas were typically short rodent-like natives of Tatooine. They were passionate scavengers, seeking out technology for sale or trade in the deep deserts in their huge sandcrawler transports. ]],
  3421.  
  3422. weapons = {"weapon_lightsaber", "weapon_swrc_det", "weapon_752_dc17" },
  3423.  
  3424. command = "midget",
  3425.  
  3426. max = 4,
  3427.  
  3428. salary = 25,
  3429.  
  3430. admin = 0,
  3431.  
  3432. vote = false,
  3433.  
  3434. hasLicense = false,
  3435.  
  3436. modelScale = 0.5,
  3437.  
  3438. PlayerSpawn = function(ply) ply:SetHealth(500) end,
  3439.  
  3440. customCheck = function(ply) return PlychangeAllowed(ply,"Jawa") end,
  3441.  
  3442. CustomCheckFailMsg = "You are not in the withelist!",
  3443.  
  3444. category = "Wookie",
  3445.  
  3446. sortOrder = 6,
  3447.  
  3448. })
  3449.  
  3450.  
  3451.  
  3452. --[[---------------------------------------------------------------------------
  3453.  
  3454. Define which team joining players spawn into and what team you change to if demoted
  3455.  
  3456. ---------------------------------------------------------------------------]]
  3457.  
  3458. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  3459.  
  3460.  
  3461.  
  3462.  
  3463.  
  3464. --[[---------------------------------------------------------------------------
  3465.  
  3466. Define which teams belong to civil protection
  3467.  
  3468. Civil protection can set warrants, make people wanted and do some other police related things
  3469.  
  3470. ---------------------------------------------------------------------------]]
  3471.  
  3472. GAMEMODE.CivilProtection = {
  3473.  
  3474. [TEAM_POLICE] = false,
  3475.  
  3476. [TEAM_CHIEF] = false,
  3477.  
  3478. [TEAM_MAYOR] = false,
  3479.  
  3480. [TEAM_CloneG] = true,
  3481.  
  3482. }
  3483.  
  3484.  
  3485.  
  3486. --[[---------------------------------------------------------------------------
  3487.  
  3488. Jobs that are hitmen (enables the hitman menu)
  3489.  
  3490. ---------------------------------------------------------------------------]]
  3491.  
  3492. DarkRP.addHitmanTeam()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement