Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.11 KB | None | 0 0
  1. local GAMEMODE = GAMEMODE or GM
  2.  
  3. TEAM_212T = DarkRP.createJob("212th Trooper", {
  4. color = Color(177, 188, 19, 255),
  5. model = "models/player/212th/c212th trooper.mdl",
  6. description = [[Trooper of the 212th Attack Battalion]],
  7. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_e5"},
  8. command = "212thT",
  9. max = 30,
  10. salary = 10,
  11. modelScale = 1.0,
  12. admin = 0,
  13. vote = false,
  14. hasLicense = false,
  15. category = "212th",
  16. PlayerSpawn = function(ply)
  17. ply:SetHealth(100)
  18. ply:SetMaxHealth(100)
  19. ply:SetArmor(0)
  20. end
  21. })
  22.  
  23. TEAM_212O = DarkRP.createJob("212th Officer", {
  24. color = Color(177, 188, 19, 255),
  25. model = "models/player/212thlt/c212thlt.mdl",
  26. description = [[Officer of the 212th Attack Battalion]],
  27. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_e5", "tfa_sw_dc17dual"},
  28. command = "212thO",
  29. max = 20,
  30. salary = 20,
  31. modelScale = 1.0,
  32. admin = 0,
  33. vote = false,
  34. hasLicense = false,
  35. category = "212th",
  36. PlayerSpawn = function(ply)
  37. ply:SetHealth(100)
  38. ply:SetMaxHealth(100)
  39. ply:SetArmor(0)
  40. end
  41. })
  42.  
  43. TEAM_212C = DarkRP.createJob("212th Commander", {
  44. color = Color(177, 188, 19, 255),
  45. model = "models/player/codyj/codyj.mdl",
  46. description = [[Commander of the 212th Attack Battalion]],
  47. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "tfa_swch_e5", "tfa_sw_dc17dual", "tfa_swch_ll30", "weapon_holster"},
  48. command = "212thC",
  49. max = 1,
  50. salary = 30,
  51. modelScale = 1.0,
  52. admin = 0,
  53. vote = false,
  54. hasLicense = false,
  55. category = "212th",
  56. PlayerSpawn = function(ply)
  57. ply:SetHealth(150)
  58. ply:SetMaxHealth(150)
  59. ply:SetArmor(0)
  60. end
  61. })
  62.  
  63. TEAM_501T = DarkRP.createJob("501st Trooper", {
  64. color = Color(74, 26, 219, 255),
  65. model = "models/player/501st/c501st.mdl",
  66. description = [[Trooper of the 501st Legion]],
  67. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_dc17m_br"},
  68. command = "501T",
  69. max = 30,
  70. salary = 10,
  71. modelScale = 1.0,
  72. admin = 0,
  73. vote = false,
  74. hasLicense = false,
  75. category = "501st",
  76. PlayerSpawn = function(ply)
  77. ply:SetHealth(100)
  78. ply:SetMaxHealth(100)
  79. ply:SetArmor(0)
  80. end
  81. })
  82.  
  83. TEAM_501O = DarkRP.createJob("501st Officer", {
  84. color = Color(74, 26, 219, 255),
  85. model = "models/player/corgi/corgi.mdl",
  86. description = [[Officer of the 501st Legion]],
  87. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_dc17m_br", "tfa_sw_dc17dual"},
  88. command = "501O",
  89. max = 20,
  90. salary = 20,
  91. modelScale = 1.0,
  92. admin = 0,
  93. vote = false,
  94. hasLicense = false,
  95. category = "501st",
  96. PlayerSpawn = function(ply)
  97. ply:SetHealth(100)
  98. ply:SetMaxHealth(100)
  99. ply:SetArmor(0)
  100. end
  101. })
  102.  
  103. TEAM_501C = DarkRP.createJob("501st Commander", {
  104. color = Color(74, 26, 219, 255),
  105. model = "models/player/test/rex.mdl",
  106. description = [[Commander of the 501st Legion]],
  107. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_dc17m_br", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  108. command = "501C",
  109. max = 1,
  110. salary = 30,
  111. modelScale = 1.0,
  112. admin = 0,
  113. vote = false,
  114. hasLicense = false,
  115. category = "501st",
  116. PlayerSpawn = function(ply)
  117. ply:SetHealth(150)
  118. ply:SetMaxHealth(150)
  119. ply:SetArmor(0)
  120. end
  121. })
  122.  
  123. TEAM_UNASSIGNEDT = DarkRP.createJob("Unassigned Trooper", {
  124. color = Color(193, 193, 193, 255),
  125. model = "models/player/trooper/cctrooper.mdl",
  126. description = [[Unassigned Trooper]],
  127. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster, tfa_sw_repshot"},
  128. command = "UnassignedT",
  129. max = 30,
  130. salary = 10,
  131. modelScale = 1.0,
  132. admin = 0,
  133. vote = false,
  134. hasLicense = false,
  135. category = "Unassigned",
  136. PlayerSpawn = function(ply)
  137. ply:SetHealth(100)
  138. ply:SetMaxHealth(100)
  139. ply:SetArmor(0)
  140. end
  141. })
  142.  
  143. TEAM_UNASSIGNEDM = DarkRP.createJob("Unassigned Marksman", {
  144. color = Color(193, 193, 193, 255),
  145. model = "models/player/ofc/ofc.mdl",
  146. description = [[Unassigned Marksman]],
  147. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_dc17m_sn"},
  148. command = "UnassignedM",
  149. max = 30,
  150. salary = 10,
  151. modelScale = 1.0,
  152. admin = 0,
  153. vote = false,
  154. hasLicense = false,
  155. category = "Unassigned",
  156. PlayerSpawn = function(ply)
  157. ply:SetHealth(100)
  158. ply:SetMaxHealth(100)
  159. ply:SetArmor(0)
  160. end
  161. })
  162.  
  163. TEAM_UNASSIGNEDH = DarkRP.createJob("Unassigned Heavy", {
  164. color = Color(193, 193, 193, 255),
  165. model = "models/player/uac/uac.mdl",
  166. description = [[Unassigned Heavy]],
  167. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_e5"},
  168. command = "UnassignedH",
  169. max = 30,
  170. salary = 10,
  171. modelScale = 1.0,
  172. admin = 0,
  173. vote = false,
  174. hasLicense = false,
  175. category = "Unassigned",
  176. PlayerSpawn = function(ply)
  177. ply:SetHealth(100)
  178. ply:SetMaxHealth(100)
  179. ply:SetArmor(0)
  180. end
  181. })
  182.  
  183. TEAM_UNASSIGNEDO = DarkRP.createJob("Unassigned Officer", {
  184. color = Color(193, 193, 193, 255),
  185. model = "models/player/deviss/ccdeviss.mdl",
  186. description = [[Unassigned Officer]],
  187. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_dc17dual"},
  188. command = "UnassignedO",
  189. max = 20,
  190. salary = 20,
  191. modelScale = 1.0,
  192. admin = 0,
  193. vote = false,
  194. hasLicense = false,
  195. category = "Unassigned",
  196. PlayerSpawn = function(ply)
  197. ply:SetHealth(100)
  198. ply:SetMaxHealth(100)
  199. ply:SetArmor(0)
  200. end
  201. })
  202.  
  203. TEAM_UNASSIGNEDC = DarkRP.createJob("Clone Cadet", {
  204. color = Color(193, 193, 193, 255),
  205. model = "models/player/testc/cgi cadet.mdl",
  206. description = [[Clone Cadet]],
  207. weapons = {"weapon_holster", "tfa_swch_dc15a_shadow"},
  208. command = "UnassignedC",
  209. max = 128,
  210. salary = 10,
  211. modelScale = 1.0,
  212. admin = 0,
  213. vote = false,
  214. hasLicense = false,
  215. category = "Unassigned",
  216. PlayerSpawn = function(ply)
  217. ply:SetHealth(100)
  218. ply:SetMaxHealth(100)
  219. ply:SetArmor(0)
  220. end
  221. })
  222.  
  223. TEAM_21T = DarkRP.createJob("21st Trooper", {
  224. color = Color(159, 95, 170, 255),
  225. model = "models/player/cgimarine/ccgimarine.mdl",
  226. description = [[21st Galactic Marines Trooper]],
  227. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_alphablaster"},
  228. command = "21T",
  229. max = 30,
  230. salary = 10,
  231. modelScale = 1.0,
  232. admin = 0,
  233. vote = false,
  234. hasLicense = false,
  235. category = "21st",
  236. PlayerSpawn = function(ply)
  237. ply:SetHealth(125)
  238. ply:SetMaxHealth(125)
  239. ply:SetArmor(0)
  240. end
  241. })
  242.  
  243. TEAM_21O = DarkRP.createJob("21st Officer", {
  244. color = Color(159, 95, 170, 255),
  245. model = "models/player/cgimarinecpt/cgimarinecpt.mdl",
  246. description = [[21st Galactic Marines Officer]],
  247. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_alphablaster", "tfa_sw_dc17dual"},
  248. command = "21O",
  249. max = 20,
  250. salary = 20,
  251. modelScale = 1.0,
  252. admin = 0,
  253. vote = false,
  254. hasLicense = false,
  255. category = "21st",
  256. PlayerSpawn = function(ply)
  257. ply:SetHealth(125)
  258. ply:SetMaxHealth(125)
  259. ply:SetArmor(0)
  260. end
  261. })
  262.  
  263. TEAM_21C = DarkRP.createJob("21st Commander", {
  264. color = Color(159, 95, 170, 255),
  265. model = "models/tfa/comm/gg/pm_sw_galacticmarine.mdl" , "models/players/l_bacara.mdl" ,
  266. description = [[21st Galactic Marines Commander]],
  267. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_alphablaster", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  268. command = "21C",
  269. max = 1,
  270. salary = 30,
  271. modelScale = 1.0,
  272. admin = 0,
  273. vote = false,
  274. hasLicense = false,
  275. category = "21st",
  276. PlayerSpawn = function(ply)
  277. ply:SetHealth(150)
  278. ply:SetMaxHealth(150)
  279. ply:SetArmor(0)
  280. end
  281. })
  282.  
  283. TEAM_CAT = DarkRP.createJob("Clone Assassin Trooper", {
  284. color = Color(193, 33, 83, 255),
  285. model = "models/player/tcg/starwars/assassin/assassintrooper.mdl",
  286. description = [[Clone Assassin Troper]],
  287. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip"},
  288. command = "CAT",
  289. max = 30,
  290. salary = 10,
  291. modelScale = 1.0,
  292. admin = 0,
  293. vote = false,
  294. hasLicense = false,
  295. category = "CA",
  296. PlayerSpawn = function(ply)
  297. ply:SetHealth(125)
  298. ply:SetMaxHealth(125)
  299. ply:SetArmor(0)
  300. end
  301. })
  302.  
  303. TEAM_CAO = DarkRP.createJob("Clone Assassin Officer", {
  304. color = Color(193, 33, 83, 255),
  305. model = "models/player/tcg/starwars/assassin/commander/assassincommander.mdl",
  306. description = [[Clone Assassin Officer]],
  307. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_sw_dc17dual"},
  308. command = "CAO",
  309. max = 20,
  310. salary = 20,
  311. modelScale = 1.0,
  312. admin = 0,
  313. vote = false,
  314. hasLicense = false,
  315. category = "CA",
  316. PlayerSpawn = function(ply)
  317. ply:SetHealth(125)
  318. ply:SetMaxHealth(125)
  319. ply:SetArmor(0)
  320. end
  321. })
  322.  
  323. TEAM_CAC = DarkRP.createJob("Clone Assassin Commander", {
  324. color = Color(193, 33, 83, 255),
  325. model = "models/player/tcg/starwars/assassin/aether/assassinaether.mdl",
  326. description = [[Clone Assassin Commander]],
  327. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  328. command = "CAC",
  329. max = 1,
  330. salary = 30,
  331. modelScale = 1.0,
  332. admin = 0,
  333. vote = false,
  334. hasLicense = false,
  335. category = "CA",
  336. PlayerSpawn = function(ply)
  337. ply:SetHealth(150)
  338. ply:SetMaxHealth(150)
  339. ply:SetArmor(0)
  340. end
  341. })
  342.  
  343. TEAM_CAJ = DarkRP.createJob("Clone Assassin Juggernaut", {
  344. color = Color(193, 33, 83, 255),
  345. model = "models/lzg/assassins/jugg.mdl",
  346. description = [[Clone Assassin Juggernaut]],
  347. weapons = {"weapon_holster", "tfa_swch_z6", "tfa_swch_clonelauncher", "tfa_swch_e5"},
  348. command = "CAJ",
  349. max = 20,
  350. salary = 15,
  351. modelScale = 1.0,
  352. admin = 0,
  353. vote = false,
  354. hasLicense = false,
  355. category = "CA",
  356. PlayerSpawn = function(ply)
  357. ply:SetHealth(300)
  358. ply:SetMaxHealth(300)
  359. ply:SetArmor(100)
  360. end
  361. })
  362.  
  363. TEAM_2NDT = DarkRP.createJob("2nd Airborne Trooper", {
  364. color = Color(107, 201, 90, 255),
  365. model = "models/player/2ndtrooper/2ndtrooper.mdl",
  366. description = [[2nd Airborne Trooper]],
  367. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_ee3"},
  368. command = "2NDT",
  369. max = 30,
  370. salary = 10,
  371. modelScale = 1.0,
  372. admin = 0,
  373. vote = false,
  374. hasLicense = false,
  375. category = "2ND",
  376. PlayerSpawn = function(ply)
  377. ply:SetHealth(100)
  378. ply:SetMaxHealth(100)
  379. ply:SetArmor(0)
  380. end
  381. })
  382.  
  383. TEAM_2NDO = DarkRP.createJob("2nd Airborne Officer", {
  384. color = Color(107, 201, 90, 255),
  385. model = "models/player/2ndcaptain/2ndcaptain.mdl",
  386. description = [[2nd Airborne Officer]],
  387. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_ee3", "tfa_sw_dc17dual"},
  388. command = "2NDO",
  389. max = 20,
  390. salary = 20,
  391. modelScale = 1.0,
  392. admin = 0,
  393. vote = false,
  394. hasLicense = false,
  395. category = "2ND",
  396. PlayerSpawn = function(ply)
  397. ply:SetHealth(100)
  398. ply:SetMaxHealth(100)
  399. ply:SetArmor(0)
  400. end
  401. })
  402.  
  403. TEAM_2NDC = DarkRP.createJob("2nd Airborne Commander", {
  404. color = Color(107, 201, 90, 255),
  405. model = "models/player/2ndcommander/2ndcommander.mdl",
  406. description = [[2nd Airborne Commander]],
  407. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_ee3", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  408. command = "2NDC",
  409. max = 1,
  410. salary = 30,
  411. modelScale = 1.0,
  412. admin = 0,
  413. vote = false,
  414. hasLicense = false,
  415. category = "2ND",
  416. PlayerSpawn = function(ply)
  417. ply:SetHealth(150)
  418. ply:SetMaxHealth(150)
  419. ply:SetArmor(0)
  420. end
  421. })
  422.  
  423. TEAM_2NDM = DarkRP.createJob("2nd Airborne Medic", {
  424. color = Color(107, 201, 90, 255),
  425. model = "models/player/2ndbobo/2ndbobo.mdl",
  426. description = [[2nd Airborne Medic]],
  427. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_ee3", "darkrp_defibrillator", "weapon_bactanade", "weapon_bactainjector", "weapon_medkit"},
  428. command = "2NDM",
  429. max = 20,
  430. salary = 15,
  431. modelScale = 1.0,
  432. admin = 0,
  433. vote = false,
  434. hasLicense = false,
  435. category = "2ND",
  436. PlayerSpawn = function(ply)
  437. ply:SetHealth(100)
  438. ply:SetMaxHealth(100)
  439. ply:SetArmor(0)
  440. end
  441. })
  442.  
  443. TEAM_WPT = DarkRP.createJob("104th Wolfpack Trooper", {
  444. color = Color(120, 154, 203, 255),
  445. model = "models/player/gwpm/gwpm2.mdl",
  446. description = [[104th Wolfpack Trooper]],
  447. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_swch_e5", "climb_swep2"},
  448. command = "WPT",
  449. max = 30,
  450. salary = 10,
  451. modelScale = 1.0,
  452. admin = 0,
  453. vote = false,
  454. hasLicense = false,
  455. category = "104th",
  456. PlayerSpawn = function(ply)
  457. ply:SetHealth(125)
  458. ply:SetMaxHealth(125)
  459. ply:SetArmor(0)
  460. end
  461. })
  462.  
  463. TEAM_WPO = DarkRP.createJob("104th Wolfpack Officer", {
  464. color = Color(120, 154, 203, 255),
  465. model = "models/player/104thlt/c104thlt.mdl",
  466. description = [[104th Wolfpack Officer]],
  467. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_swch_e5", "climb_swep2", "tfa_sw_dc17dual"},
  468. command = "WPO",
  469. max = 20,
  470. salary = 20,
  471. modelScale = 1.0,
  472. admin = 0,
  473. vote = false,
  474. hasLicense = false,
  475. category = "104th",
  476. PlayerSpawn = function(ply)
  477. ply:SetHealth(125)
  478. ply:SetMaxHealth(125)
  479. ply:SetArmor(0)
  480. end
  481. })
  482.  
  483. TEAM_WPC = DarkRP.createJob("Commander Tracer", {
  484. color = Color(120, 154, 203, 255),
  485. model = "models/player/tracer1/tracer.mdl",
  486. description = [[Tracer Commander of the 104th Wolf Pack]],
  487. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_swch_e5", "climb_swep2", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  488. command = "WPC",
  489. max = 1,
  490. salary = 30,
  491. modelScale = 1.0,
  492. admin = 0,
  493. vote = false,
  494. hasLicense = false,
  495. category = "104th",
  496. PlayerSpawn = function(ply)
  497. ply:SetHealth(150)
  498. ply:SetMaxHealth(150)
  499. ply:SetArmor(0)
  500. end
  501. })
  502.  
  503. TEAM_WPS = DarkRP.createJob("104th Wolfpack Spec-Ops", {
  504. color = Color(120, 154, 203, 255),
  505. model = "models/player/lack/lack.mdl",
  506. description = [[104th Wolfpack Spec-Ops]],
  507. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "tfa_swch_e5", "climb_swep2", "tfa_swch_dc17m_br"},
  508. command = "WPS",
  509. max = 20,
  510. salary = 15,
  511. modelScale = 1.0,
  512. admin = 0,
  513. vote = false,
  514. hasLicense = false,
  515. category = "104th",
  516. PlayerSpawn = function(ply)
  517. ply:SetHealth(125)
  518. ply:SetMaxHealth(125)
  519. ply:SetArmor(0)
  520. end
  521. })
  522.  
  523. TEAM_RANCORT = DarkRP.createJob("Rancor Trooper", {
  524. color = Color(45, 130, 36, 255),
  525. model = "models/player/tcg/starwars/arc/rancor/rancortrooper.mdl",
  526. description = [[Rancor Trooper]],
  527. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17m_br"},
  528. command = "RANCORT",
  529. max = 30,
  530. salary = 10,
  531. modelScale = 1.0,
  532. admin = 0,
  533. vote = false,
  534. hasLicense = false,
  535. category = "RANCOR",
  536. PlayerSpawn = function(ply)
  537. ply:SetHealth(125)
  538. ply:SetMaxHealth(125)
  539. ply:SetArmor(0)
  540. end
  541. })
  542.  
  543. TEAM_RANCORO = DarkRP.createJob("Rancor Officer", {
  544. color = Color(45, 130, 36, 255),
  545. model = "models/player/tcg/starwars/arc/rancor/blitz/blitz.mdl",
  546. description = [[Rancor Officer]],
  547. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17m_br"},
  548. command = "RANCORO",
  549. max = 20,
  550. salary = 20,
  551. modelScale = 1.0,
  552. admin = 0,
  553. vote = false,
  554. hasLicense = false,
  555. category = "RANCOR",
  556. PlayerSpawn = function(ply)
  557. ply:SetHealth(125)
  558. ply:SetMaxHealth(125)
  559. ply:SetArmor(0)
  560. end
  561. })
  562.  
  563. TEAM_RANCORC = DarkRP.createJob("Rancor Commander", {
  564. color = Color(45, 130, 36, 255),
  565. model = "models/player/tcg/starwars/arc/rancor/colt/colt.mdl",
  566. description = [[Rancor Commander]],
  567. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_dc17m_br", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  568. command = "RANCORC",
  569. max = 1,
  570. salary = 30,
  571. modelScale = 1.0,
  572. admin = 0,
  573. vote = false,
  574. hasLicense = false,
  575. category = "RANCOR",
  576. PlayerSpawn = function(ply)
  577. ply:SetHealth(125)
  578. ply:SetMaxHealth(125)
  579. ply:SetArmor(0)
  580. end
  581. })
  582.  
  583. TEAM_ARCT = DarkRP.createJob("ARC Trooper", {
  584. color = Color(183, 161, 57, 255),
  585. model = "models/player/tcg/starwars/arc/arctrooper.mdl",
  586. description = [[ARC Trooper]],
  587. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_ee3"},
  588. command = "ARCT",
  589. max = 30,
  590. salary = 10,
  591. modelScale = 1.0,
  592. admin = 0,
  593. vote = false,
  594. hasLicense = false,
  595. category = "ARC",
  596. PlayerSpawn = function(ply)
  597. ply:SetHealth(100)
  598. ply:SetMaxHealth(100)
  599. ply:SetArmor(30)
  600. end
  601. })
  602.  
  603. TEAM_ARCO = DarkRP.createJob("ARC Captain", {
  604. color = Color(183, 161, 57, 255),
  605. model = "models/player/tcg/starwars/arc/captain/arccaptain.mdl",
  606. description = [[ARC Officer]],
  607. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_ee3", "tfa_sw_dc17dual"},
  608. command = "ARCCAP",
  609. max = 20,
  610. salary = 20,
  611. modelScale = 1.0,
  612. admin = 0,
  613. vote = false,
  614. hasLicense = false,
  615. category = "ARC",
  616. PlayerSpawn = function(ply)
  617. ply:SetHealth(100)
  618. ply:SetMaxHealth(100)
  619. ply:SetArmor(0)
  620. end
  621. })
  622.  
  623. TEAM_ARCC = DarkRP.createJob("ARC Commander", {
  624. color = Color(183, 161, 57, 255),
  625. model = "models/player/tcg/starwars/arc/commander/arccommander.mdl",
  626. description = [[ARC Commander]],
  627. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_sw_repsnip", "climb_swep2", "tfa_swch_ee3", "tfa_sw_dc17dual", "tfa_swch_ll30"},
  628. command = "ARCC",
  629. max = 1,
  630. salary = 30,
  631. modelScale = 1.0,
  632. admin = 0,
  633. vote = false,
  634. hasLicense = false,
  635. category = "ARC",
  636. PlayerSpawn = function(ply)
  637. ply:SetHealth(150)
  638. ply:SetMaxHealth(150)
  639. ply:SetArmor(0)
  640. end
  641. })
  642.  
  643. TEAM_JEDIREVAN = DarkRP.createJob("Revan", {
  644. color = Color(60, 181, 28, 255),
  645. model = "models/grealms/characters/revan_real/revan.mdl",
  646. description = [[Jedi Council Revan during the time of the Clone Wars]],
  647. weapons = {"weapon_holster", "weapon_lightsaber", "climb_swep2", "weapon_forceheal"},
  648. command = "JEDIREVAN",
  649. max = 1,
  650. salary = 250,
  651. modelScale = 1.0,
  652. admin = 0,
  653. vote = false,
  654. hasLicense = false,
  655. category = "Jedi",
  656. PlayerSpawn = function(ply)
  657. ply:SetHealth(4500)
  658. ply:SetMaxHealth(4500)
  659. ply:SetArmor(0)
  660. end
  661. })
  662.  
  663. TEAM_JEDIOBIWAN = DarkRP.createJob("Obi-Wan Kenobi", {
  664. color = Color(60, 181, 38, 255),
  665. model = "models/player/generalkenobi/cgikenobi.mdl",
  666. description = [[Jedi Council Obi-Wan Kenobi during the time of the Clone Wars]],
  667. weapons = {"weapon_holster", "weapon_lightsaber", "weapon_forceheal"},
  668. command = "JEDIOBIWAN",
  669. max = 1,
  670. salary = 250,
  671. modelScale = 1.0,
  672. admin = 0,
  673. vote = false,
  674. hasLicense = false,
  675. category = "Jedi",
  676. PlayerSpawn = function(ply)
  677. ply:SetHealth(4500)
  678. ply:SetMaxHealth(4500)
  679. ply:SetArmor(0)
  680. end
  681. })
  682.  
  683. TEAM_AHSOKATANO = DarkRP.createJob("Ahsoka Tano", {
  684. color = Color(60, 181, 28, 255),
  685. model = "models/tfa/comm/gg/pm_sw_ahsoka_v1.mdl", "models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl",
  686. description = [[Jedi Padawan Ahsoka Tano]],
  687. weapons = {"weapon_holster", "weapon_lightsaber", "climb_swep2", "weapon_forceheal"},
  688. command = "JediAhsoka",
  689. max = 1,
  690. salary = 250,
  691. modelScale = 1.0,
  692. admin = 0,
  693. vote = false,
  694. hasLicense = false,
  695. category = "Jedi",
  696. PlayerSpawn = function(ply)
  697. ply:SetHealth(4500)
  698. ply:SetMaxHealth(4500)
  699. ply:SetArmor(0)
  700. end
  701. })
  702.  
  703. TEAM_FLEETADMIRAL = DarkRP.createJob("Fleet Admiral", {
  704. color = Color(42, 219, 132, 255),
  705. model = "models/player/wullf/wullf.mdl",
  706. description = [[Fleet Admiral of the WolfClaw Venator]],
  707. weapons = {"weapon_holster", "tfa_swch_ll30"},
  708. command = "FleetAdmiral",
  709. max = 1,
  710. salary = 250,
  711. modelScale = 1.0,
  712. admin = 0,
  713. vote = false,
  714. hasLicense = false,
  715. category = "Fleet",
  716. PlayerSpawn = function(ply)
  717. ply:SetHealth(2500)
  718. ply:SetMaxHealth(2500)
  719. ply:SetArmor(0)
  720. end
  721. })
  722.  
  723. TEAM_NAVALOFFICER = DarkRP.createJob("Naval Officer", {
  724. color = Color(42, 219, 132, 255),
  725. model = "models/lt_c/sci_fi/humans/male_01.mdl",
  726. description = [[Naval Officer of the WolfClaw Venator]],
  727. weapons = {"weapon_holster", "tfa_swch_ll30"},
  728. command = "NavalOfficer",
  729. max = 10,
  730. salary = 250,
  731. modelScale = 1.0,
  732. admin = 0,
  733. vote = false,
  734. hasLicense = false,
  735. category = "Fleet",
  736. PlayerSpawn = function(ply)
  737. ply:SetHealth(2500)
  738. ply:SetMaxHealth(2500)
  739. ply:SetArmor(0)
  740. end
  741. })
  742.  
  743. TEAM_CGFOX = DarkRP.createJob("Commander Fox", {
  744. color = Color(196, 0, 85, 255),
  745. model = "models/player/tcg/starwars/coruscant/commander/fox.mdl",
  746. description = [[Marshall Commander Fox of the Coruscant Guards]],
  747. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "climb_swep2", "tfa_sw_dc17dual", "tfa_swch_ll30", "tfa_swch_alphablaster", "tfa_swch_z6", "riot_shield", "arrest_stick", "unarrest_stick", "stunstick", "weapon_medkit"},
  748. command = "CGFOX",
  749. max = 1,
  750. salary = 250,
  751. modelScale = 1.0,
  752. admin = 0,
  753. vote = false,
  754. hasLicense = false,
  755. category = "CG",
  756. PlayerSpawn = function(ply)
  757. ply:SetHealth(150)
  758. ply:SetMaxHealth(150)
  759. ply:SetArmor(50)
  760. end
  761. })
  762.  
  763. TEAM_CGT = DarkRP.createJob("Coruscant Guard Trooper", {
  764. color = Color(196, 0, 85, 255),
  765. model = "models/player/cguard/cgi cguard.mdl",
  766. description = [[Trooper of the Coruscant Guards]],
  767. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_alphablaster", "riot_shield", "arrest_stick", "unarrest_stick", "stunstick"},
  768. command = "CGT",
  769. max = 30,
  770. salary = 10,
  771. modelScale = 1.0,
  772. admin = 0,
  773. vote = false,
  774. hasLicense = false,
  775. category = "CG",
  776. PlayerSpawn = function(ply)
  777. ply:SetHealth(100)
  778. ply:SetMaxHealth(100)
  779. ply:SetArmor(25)
  780. end
  781. })
  782.  
  783. TEAM_CGO = DarkRP.createJob("Coruscant Guard Captain", {
  784. color = Color(196, 0, 85, 255),
  785. model = "models/player/cguardlt/ccguardlt.mdl",
  786. description = [[Officer of the Coruscant Guards]],
  787. weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_holster", "tfa_swch_alphablaster", "riot_shield", "arrest_stick", "unarrest_stick", "stunstick", "tfa_sw_dc17dual"},
  788. command = "CGO",
  789. max = 20,
  790. salary = 20,
  791. modelScale = 1.0,
  792. admin = 0,
  793. vote = false,
  794. hasLicense = false,
  795. category = "CG",
  796. PlayerSpawn = function(ply)
  797. ply:SetHealth(100)
  798. ply:SetMaxHealth(100)
  799. ply:SetArmor(25)
  800. end
  801. })
  802.  
  803.  
  804. -----------------------------------------------------------------------------
  805.  
  806. GAMEMODE.DefaultTeam = TEAM_UNASSIGNEDC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement