Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.37 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4. This file contains your custom jobs.
  5. This file should also contain jobs from DarkRP that you edited.
  6.  
  7. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  8. Once you've done that, copy and paste the job to this file and edit it.
  9.  
  10. The default jobs can be found here:
  11. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  12.  
  13. For examples and explanation please visit this wiki page:
  14. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  15.  
  16. Add your custom jobs under the following line:
  17. ---------------------------------------------------------------------------]]
  18.  
  19. TEAM_STAFF = DarkRP.createJob("Staff On Duty", {
  20. color = Color(80, 45, 0, 255),
  21. model = ("models/Humans/Group01/male_07.mdl")
  22. description = [[Staff On Duty]],
  23. weapons = {"weapon_physgun", "gmod_tool"},
  24. command = "Staff",
  25. max = 5,
  26. salary = 0,
  27. admin = 1,
  28. vote = false,
  29. hasLicense = false,
  30. category = "Staff",
  31. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  32. ply:SetHealth(1000),
  33. ply:SetArmor(),
  34. ply:SetWalkSpeed(),
  35. ply:SetRunSpeed(),
  36. })
  37.  
  38. TEAM_RECRUIT = DarkRP.createJob("Recruit", {
  39. color = Color(80, 45, 0, 255),
  40. model = ("models/player/tiki/white.mdl"),
  41. description = [[Imperial Recruit]],
  42. weapons = ("tfa_swch_dc15a_alt_training"),
  43. command = "/recruit",
  44. max = 200,
  45. salary = 0,
  46. admin = 0,
  47. vote = false,
  48. hasLicense = false,
  49. category = "Recruits",
  50. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  51. ply:SetHealth(100),
  52. ply:SetArmor(),
  53. ply:SetWalkSpeed(),
  54. ply:SetRunSpeed(),
  55. })
  56.  
  57. TEAM_STORMTROOPER = DarkRP.createJob("Stormtrooper", {
  58. color = Color(80, 45, 0, 255),
  59. model = ("models/player/fatal/troopers/trooper.mdl"),
  60. description = [[Stormtrooper Of The Empire.]],
  61. weapons = {"tfa_e11", "tfa_dh17_extended"},
  62. command = "/stormtrooper",
  63. max = 200,
  64. salary = 40,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. category = "Stormtroopers",
  69. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  70. ply:SetHealth(200),
  71. ply:SetArmor(),
  72. ply:SetWalkSpeed(),
  73. ply:SetRunSpeed(),
  74. })
  75.  
  76. TEAM_STORMTROOPERNCO = DarkRP.createJob("Stormtrooper Nco", {
  77. color = Color(80, 45, 0, 255),
  78. model = ("models/player/fatal/troopers/sergeant.mdl")
  79. description = [[Stormtrooper Of The Empire.]],
  80. weapons = {"tfa_e11", "tfa_dh17_extended"},
  81. command = "/stormtroopernco",
  82. max = 10,
  83. salary = 80,
  84. admin = 0,
  85. vote = false,
  86. hasLicense = false,
  87. category = "Stormtroopers",
  88. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  89. ply:SetHealth(230),
  90. ply:SetArmor(),
  91. ply:SetWalkSpeed(),
  92. ply:SetRunSpeed(),
  93. })
  94.  
  95. TEAM_STORMTROOPEROFFICER = DarkRP.createJob("Stormtrooper Officer", {
  96. color = Color(80, 45, 0, 255),
  97. model = (
  98. "models/player/fatal/troopers/sergeant.mdl",
  99. "models/player/fatal/troopers/officer.mdl"
  100. ),
  101. description = [[Stormtrooper Of The Empire.]],
  102. weapons = {"tfa_e11", "tfa_dh17_extended"},
  103. command = "/stormtroopernco",
  104. max = 6,
  105. salary = 110,
  106. admin = 0,
  107. vote = false,
  108. hasLicense = false,
  109. category = "Stormtroopers",
  110. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  111. ply:SetHealth(245),
  112. ply:SetArmor(),
  113. ply:SetWalkSpeed(),
  114. ply:SetRunSpeed(),
  115. })
  116.  
  117. TEAM_STORMTROOPERCOMMANDER = DarkRP.createJob("Stormtrooper Commander", {
  118. color = Color(80, 45, 0, 255),
  119. model = ("models/player/tiki/white.mdl"),
  120. description = [[Stormtrooper Of The Empire.]],
  121. weapons = {"tfa_e11", "tfa_dh17_extended"},
  122. command = "/stormtroopercmdr",
  123. max = 5,
  124. salary = 210,
  125. admin = 0,
  126. vote = false,
  127. hasLicense = false,
  128. category = "Stormtroopers",
  129. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  130. ply:SetHealth(270),
  131. ply:SetArmor(),
  132. ply:SetWalkSpeed(),
  133. ply:SetRunSpeed(),
  134. })
  135.  
  136. TEAM_SITHACOLYTE = DarkRP.createJob("Sith Acolyte", {
  137. color = Color(80, 45, 0, 255),
  138. model = ("models/player/tiki/white.mdl"),
  139. description = [[Acolyte Of The Sith Empire.]],
  140. weapons = {},
  141. command = "/acolyte",
  142. max = 20,
  143. salary = 60,
  144. admin = 0,
  145. vote = false,
  146. hasLicense = false,
  147. category = "Sith",
  148. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  149. ply:SetHealth(500),
  150. ply:SetArmor(),
  151. ply:SetWalkSpeed(),
  152. ply:SetRunSpeed(),
  153. })
  154.  
  155. TEAM_SITHAPPRENTICE = DarkRP.createJob("Sith Apprentices", {
  156. color = Color(80, 45, 0, 255),
  157. model = ("models/player/starwars/mistersweetroll/riottrooper.mdl"),
  158. description = [[Sith Apprentices.]],
  159. weapons = {},
  160. command = "/sithapprentice",
  161. max = 20,
  162. salary = 100,
  163. admin = 0,
  164. vote = false,
  165. hasLicense = false,
  166. category = "Sith",
  167. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  168. ply:SetHealth(500),
  169. ply:SetArmor(),
  170. ply:SetWalkSpeed(),
  171. ply:SetRunSpeed(),
  172. })
  173.  
  174. TEAM_SITHLORD = DarkRP.createJob("Sith Lord", {
  175. color = Color(80, 45, 0, 255),
  176. model = (
  177. "models/player/valley/eighth_brother.mdl",
  178. "models/player/valley/xalek.mdl",
  179. "models/rebuilt/arcann_rebuilt.mdl",
  180. "models/x1gcw/x1gcw.mdl",
  181. "models/player/valley/recluse.mdl"
  182. ),
  183. description = [[Sith Lord]],
  184. weapons = {},
  185. command = "/Sithlord",
  186. max = 15,
  187. salary = 150,
  188. admin = 0,
  189. vote = false,
  190. hasLicense = false,
  191. category = "Sith",
  192. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  193. ply:SetHealth(1000),
  194. ply:SetArmor(),
  195. ply:SetWalkSpeed(),
  196. ply:SetRunSpeed(),
  197. })
  198.  
  199. TEAM_SITHDARTH = DarkRP.createJob("Darth", {
  200. color = Color(80, 45, 0, 255),
  201. model = (
  202. "models/kallig/kallig.mdl", "models/imperius/imperiuss.mdl",
  203. "models/vindican/vindican.mdl",
  204. "models/revan/revan.mdl",
  205. "models/player/valley/revanitechampion.mdl",
  206. "models/player/valley/vitiate.mdl"
  207. ),
  208. description = [[Sith Apprentices.]],
  209. weapons = {},
  210. command = "/darth",
  211. max = 10,
  212. salary = 210,
  213. admin = 0,
  214. vote = false,
  215. hasLicense = false,
  216. category = "Sith",
  217. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  218. ply:SetHealth(1500),
  219. ply:SetArmor(),
  220. ply:SetWalkSpeed(),
  221. ply:SetRunSpeed(),
  222. })
  223.  
  224. TEAM_VADER = DarkRP.createJob("Darth Vader", {
  225. color = Color(80, 45, 0, 255),
  226. model = ("models/nate159/swbf/hero/player/hero_sith_vader_player.mdl"),
  227. description = [[Sith Apprentices.]],
  228. weapons = {},
  229. command = "/Vader",
  230. max = 1,
  231. salary = 300,
  232. admin = 0,
  233. vote = false,
  234. hasLicense = false,
  235. category = "Sith",
  236. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  237. ply:SetHealth(2100),
  238. ply:SetArmor(),
  239. ply:SetWalkSpeed(),
  240. ply:SetRunSpeed(),
  241. })
  242.  
  243. TEAM_PALPATINE = DarkRP.createJob("Emperor Palpatine", {
  244. color = Color(80, 45, 0, 255),
  245. model = ("models/player/emperor_palpatine.mdl"),
  246. description = [[Sith Apprentices.]],
  247. weapons = {"sidiousq"},
  248. command = "/Palpatine",
  249. max = 1,
  250. salary = 500,
  251. admin = 0,
  252. vote = false,
  253. hasLicense = false,
  254. category = "Sith",
  255. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  256. ply:SetHealth(3200),
  257. ply:SetArmor(),
  258. ply:SetWalkSpeed(),
  259. ply:SetRunSpeed(),
  260. })
  261.  
  262. TEAM_ROYALGUARD = DarkRP.createJob("Royal Guard", {
  263. color = Color(80, 45, 0, 255),
  264. model = ("models/player/starwars/mistersweetroll/imperialguard.mdl"),
  265. description = [[Sith Apprentices.]],
  266. weapons = {"tfa_kotor_repeaten_2", "tfa_se14c_extended"},
  267. command = "/RG",
  268. max = 10,
  269. salary = 500,
  270. admin = 0,
  271. vote = false,
  272. hasLicense = false,
  273. category = "Emperors Guards",
  274. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  275. ply:SetHealth(400),
  276. ply:SetArmor(),
  277. ply:SetWalkSpeed(),
  278. ply:SetRunSpeed(),
  279. })
  280.  
  281. TEAM_SHADOWGUARD = DarkRP.createJob("Shadow Guard", {
  282. color = Color(80, 45, 0, 255),
  283. model = ("models/models/konnie/shadowguard/shadowguard.mdl"),
  284. description = [[Sith Apprentices.]],
  285. weapons = {"tfa_kotor_repeaten_2", "tfa_se14c_extended"},
  286. command = "/SG",
  287. max = 6,
  288. salary = 500,
  289. admin = 0,
  290. vote = false,
  291. hasLicense = false,
  292. category = "Emperors Guards",
  293. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  294. ply:SetHealth(520),
  295. ply:SetArmor(),
  296. ply:SetWalkSpeed(),
  297. ply:SetRunSpeed(),
  298. })
  299.  
  300.  
  301. TEAM_IMPERIALSOVEREIGNPROTECTOR = DarkRP.createJob("Imperial Sovereign Protector", {
  302. color = Color(80, 45, 0, 255),
  303. model = ("models/player/ven/carnor.mdl",),
  304. description = [[Sith Apprentices.]],
  305. weapons = {"tfa_kotor_repeaten_2", "tfa_se14c_extended"},
  306. command = "/SP",
  307. max = 5,
  308. salary = 600,
  309. admin = 0,
  310. vote = false,
  311. hasLicense = false,
  312. category = "Emperors Guards",
  313. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  314. ply:SetHealth(630),
  315. ply:SetArmor(),
  316. ply:SetWalkSpeed(),
  317. ply:SetRunSpeed(),
  318. })
  319.  
  320. TEAM_THRAWN = DarkRP.createJob("Grand Admiral Thrawn", (
  321. color = Color(80, 45, 0, 255),
  322. model = ("models/player/heracles421/swbf_thrawn.mdl")
  323. description = [[Sith Apprentices.]],
  324. weapons = {"tfa_swch_de10" "tfa_dh17"},
  325. command = "/Thrawn",
  326. max = 1,
  327. salary = 500,
  328. admin = 0,
  329. vote = false,
  330. hasLicense = false,
  331. category = "High Command",
  332. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  333. ply:SetHealth(350),
  334. ply:SetArmor(),
  335. ply:SetWalkSpeed(),
  336. ply:SetRunSpeed(),
  337. })
  338.  
  339. TEAM_DEATHTROOPER = DarkRP.createJob("Death Trooper", {
  340. color = Color(80, 45, 0, 255),
  341. model = (
  342. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper2.mdl",
  343. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper.mdl",
  344. "models/player/hydro/swbf_deathtrooper/swbf_deathtrooper3.mdl"
  345. ),
  346. description = [[Sith Apprentices.]],
  347. weapons = {"tfa_e11d_extended", "tfa_se14c_extended"},
  348. command = "/Thrawn",
  349. max = 8,
  350. salary = 300,
  351. admin = 0,
  352. vote = false,
  353. hasLicense = false,
  354. category = "Death Troopers",
  355. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  356. ply:SetHealth(370),
  357. ply:SetArmor(),
  358. ply:SetWalkSpeed(),
  359. ply:SetRunSpeed(),
  360. })
  361.  
  362. TEAM_TARKIN = DarkRP.createJob("Grand Moff Tarkin", {
  363. color = Color(80, 45, 0, 255),
  364. model = ("models/player/heracles421/tarkin/moff_tarkin.mdl"),
  365. description = [[Sith Apprentices.]],
  366. weapons = {"tfa_swch_de10" "tfa_dh17"},
  367. command = "/Tarkin",
  368. max = 1,
  369. salary = 500,
  370. admin = 0,
  371. vote = false,
  372. hasLicense = false,
  373. category = "High Command",
  374. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  375. ply:SetHealth(350),
  376. ply:SetArmor(),
  377. ply:SetWalkSpeed(),
  378. ply:SetRunSpeed(),
  379. })
  380.  
  381. TEAM_SCOUTTROOPER = DarkRP.createJob("Scout Trooper", {
  382. color = Color(80, 45, 0, 255),
  383. model = (
  384. "models/sono/swbf3/scout.mdl",
  385. "models/sono/swbf3/backpack.mdl",
  386. "models/sono/swbf3/forest.mdl",
  387. "models/sono/swbf3/desert.mdl"
  388. ),
  389. description = [[Sith Apprentices.]],
  390. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  391. command = "/scouttrooper",
  392. max = 15,
  393. salary = 40,
  394. admin = 0,
  395. vote = false,
  396. hasLicense = false,
  397. category = "Scout Troopers",
  398. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  399. ply:SetHealth(170),
  400. ply:SetArmor(),
  401. ply:SetWalkSpeed(),
  402. ply:SetRunSpeed(),
  403. })
  404.  
  405. TEAM_SCOUTTROOPEROFFICER = DarkRP.createJob("Scout Trooper Officer", {
  406. color = Color(80, 45, 0, 255),
  407. model = (
  408. "models/sono/swbf3/officer.mdl",
  409. "models/sono/swbf3/forest.mdl",
  410. "models/sono/swbf3/desert.mdl"
  411. ),
  412. description = [[Sith Apprentices.]],
  413. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  414. command = "/scouttrooperofc",
  415. max = 3,
  416. salary = 100,
  417. admin = 0,
  418. vote = false,
  419. hasLicense = false,
  420. category = "Scout Troopers",
  421. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  422. ply:SetHealth(180),
  423. ply:SetArmor(),
  424. ply:SetWalkSpeed(),
  425. ply:SetRunSpeed(),
  426. })
  427.  
  428. TEAM_SCOUTTROOPERNCO = DarkRP.createJob("Scout Trooper Nco", {
  429. color = Color(80, 45, 0, 255),
  430. model = (
  431. "models/sono/swbf3/sergeant.mdl",
  432. "models/sono/swbf3/forest.mdl",
  433. "models/sono/swbf3/desert.mdl"
  434. ),
  435. description = [[Sith Apprentices.]],
  436. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  437. command = "/scouttroopersgt",
  438. max = 4,
  439. salary = 200,
  440. admin = 0,
  441. vote = false,
  442. hasLicense = false,
  443. category = "Scout Trooper",
  444. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  445. ply:SetHealth(200),
  446. ply:SetArmor(),
  447. ply:SetWalkSpeed(),
  448. ply:SetRunSpeed(),
  449. })
  450.  
  451. TEAM_SCOUTTROOPERCOMMANDER = DarkRP.createJob("Scout Trooper Commander", {
  452. color = Color(80, 45, 0, 255),
  453. model = (
  454. "models/sono/swbf3/commander.mdl",
  455. "models/sono/swbf3/forest.mdl",
  456. "models/sono/swbf3/desert.mdl"
  457. ),
  458. description = [[Sith Apprentices.]],
  459. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  460. command = "/scouttroopersgtcmdr",
  461. max = 1,
  462. salary = 240,
  463. admin = 0,
  464. vote = false,
  465. hasLicense = false,
  466. category = "Scout Troopers",
  467. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  468. ply:SetHealth(200),
  469. ply:SetArmor(),
  470. ply:SetWalkSpeed(),
  471. ply:SetRunSpeed(),
  472. })
  473.  
  474. TEAM_SNOWTROOPER = DarkRP.createJob("Snow Trooper", {
  475. color = Color(80, 45, 0, 255),
  476. model = (
  477. "models/player/sono/starwars/snowheavy.mdl",
  478. "models/player/sono/starwars/snowtrooper.mdl",
  479. "models/player/sono/starwars/snowsniper.mdl"
  480. ),
  481. description = [[Sith Apprentices.]],
  482. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  483. command = "/scouttrooper",
  484. max = 15,
  485. salary = 40,
  486. admin = 0,
  487. vote = false,
  488. hasLicense = false,
  489. category = "Snow Troopers",
  490. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  491. ply:SetHealth(170),
  492. ply:SetArmor(),
  493. ply:SetWalkSpeed(),
  494. ply:SetRunSpeed(),
  495. })
  496.  
  497. TEAM_SNOWTROOPEROFFICER = DarkRP.createJob("Snow Trooper Officer", {
  498. color = Color(80, 45, 0, 255),
  499. model = (
  500. "models/player/sono/starwars/snowheavy.mdl",
  501. "models/player/sono/starwars/snowtrooper.mdl",
  502. "models/player/sono/starwars/snowsniper.mdl"
  503. ),
  504. description = [[Sith Apprentices.]],
  505. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  506. command = "/scouttrooperofc",
  507. max = 3,
  508. salary = 100,
  509. admin = 0,
  510. vote = false,
  511. hasLicense = false,
  512. category = "Snow Troopers",
  513. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  514. ply:SetHealth(180),
  515. ply:SetArmor(),
  516. ply:SetWalkSpeed(),
  517. ply:SetRunSpeed(),
  518. })
  519.  
  520. TEAM_SNOWTROOPERNCO = DarkRP.createJob("Snow Trooper Nco", {
  521. color = Color(80, 45, 0, 255),
  522. model = (
  523. "models/player/sono/starwars/snowheavy.mdl",
  524. "models/player/sono/starwars/snowtrooper.mdl",
  525. "models/player/sono/starwars/snowsniper.mdl"
  526. ),
  527. description = [[Sith Apprentices.]],
  528. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  529. command = "/scouttroopersgt",
  530. max = 4,
  531. salary = 200,
  532. admin = 0,
  533. vote = false,
  534. hasLicense = false,
  535. category = "Snow Trooper",
  536. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  537. ply:SetHealth(200),
  538. ply:SetArmor(),
  539. ply:SetWalkSpeed(),
  540. ply:SetRunSpeed(),
  541. })
  542.  
  543. TEAM_SNOWTROOPERCOMMANDER = DarkRP.createJob("Snow Trooper Commander", {
  544. color = Color(80, 45, 0, 255),
  545. model = ("models/player/sono/starwars/snowflame.mdl"),
  546. description = [[Sith Apprentices.]],
  547. weapons = {"tfa_imperialdisruptor_extended","tfa_dh17_extended", "unfuckedgrapple"},
  548. command = "/scouttroopersgtcmdr",
  549. max = 1,
  550. salary = 240,
  551. admin = 0,
  552. vote = false,
  553. hasLicense = false,
  554. category = "Snow Troopers",
  555. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  556. ply:SetHealth(200),
  557. ply:SetArmor(),
  558. ply:SetWalkSpeed(),
  559. ply:SetRunSpeed(),
  560. })
  561.  
  562. TEAM_MEDTROOPER = DarkRP.createJob("Medical Trooper", {
  563. color = Color(80, 45, 0, 255),
  564. model = ("models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"),
  565. description = [[Sith Apprentices.]],
  566. weapons = {"tfa_e11", "weapon_bactainjector", "weapon_bactanade", "tfa_swch_dc17"),
  567. command = "/medtrooper",
  568. max = 15,
  569. salary = 40,
  570. admin = 0,
  571. vote = false,
  572. hasLicense = false,
  573. category = "Medical Troopers",
  574. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  575. ply:SetHealth(200),
  576. ply:SetArmor(),
  577. ply:SetWalkSpeed(),
  578. ply:SetRunSpeed(),
  579. })
  580.  
  581. TEAM_MEDTROOPEROFFICER = DarkRP.createJob("Medical Trooper Officer", {
  582. color = Color(80, 45, 0, 255),
  583. model = ("models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"),
  584. description = [[Sith Apprentices.]],
  585. weapons = {"tfa_e11", "weapon_bactainjector", "weapon_bactanade"),
  586. command = "/medtrooper",
  587. max = 3,
  588. salary = 80,
  589. admin = 0,
  590. vote = false,
  591. hasLicense = false,
  592. category = "Medical troopers",
  593. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  594. ply:SetHealth(230),
  595. ply:SetArmor(),
  596. ply:SetWalkSpeed(),
  597. ply:SetRunSpeed(),
  598. })
  599.  
  600. TEAM_MEDTROOPERSNCO = DarkRP.createJob("Medical Trooper Nco", {
  601. color = Color(80, 45, 0, 255),
  602. model = ("models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"),
  603. description = [[Sith Apprentices.]],
  604. weapons = {"tfa_e11", "weapon_bactainjector", "weapon_bactanade"),
  605. command = "/medtrooper",
  606. max = 4,
  607. salary = 110,
  608. admin = 0,
  609. vote = false,
  610. hasLicense = false,
  611. category = "Medical troopers",
  612. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  613. ply:SetHealth(250),
  614. ply:SetArmor(),
  615. ply:SetWalkSpeed(),
  616. ply:SetRunSpeed(),
  617. })
  618.  
  619. TEAM_MEDICALTROOPERCOMMANDER = DarkRP.createJob("Medical Trooper Commander", {
  620. color = Color(80, 45, 0, 255),
  621. model = ("models/player/hydro/imperial_stormsurgeon/stormsurgeon.mdl"),
  622. description = [[Sith Apprentices.]],
  623. weapons = {"tfa_e11", "weapon_bactainjector", "weapon_bactanade")
  624. command = "/medtrooper",
  625. max = 1,
  626. salary = 160,
  627. admin = 0,
  628. vote = false,
  629. hasLicense = false,
  630. category = "Medical troopers",
  631. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  632. ply:SetHealth(285),
  633. ply:SetArmor(),
  634. ply:SetWalkSpeed(),
  635. ply:SetRunSpeed(),
  636. })
  637.  
  638. TEAM_RANCORBASIC = DarkRP.createJob("Rancor Trooper", {
  639. color = Color(80, 45, 0, 255),
  640. model = ("models/player/venator/tk_arc/tk_blitz.mdl"),
  641. description = [[Sith Apprentices.]],
  642. weapons = ("unfuckedgrapple", ""),
  643. command = "/rancor",
  644. max = 15,
  645. salary = 50,
  646. admin = 0,
  647. vote = false,
  648. hasLicense = false,
  649. category = "Rancor Troopers",
  650. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  651. ply:SetHealth(200),
  652. ply:SetArmor(),
  653. ply:SetWalkSpeed(),
  654. ply:SetRunSpeed(),
  655. })
  656.  
  657. TEAM_RANCORHEAVY = DarkRP.createJob("Rancor Heavy Trooper", {
  658. color = Color(80, 45, 0, 255),
  659. model = ("models/player/venator/tk_arc/tk_havoc.mdl"),
  660. description = [[Sith Apprentices.]],
  661. weapons = (),
  662. command = "/rancor",
  663. max = 15,
  664. salary = 50,
  665. admin = 0,
  666. vote = false,
  667. hasLicense = false,
  668. category = "Rancor Troopers",
  669. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  670. ply:SetHealth(500),
  671. ply:SetArmor(),
  672. ply:SetWalkSpeed(),
  673. ply:SetRunSpeed(),
  674. })
  675.  
  676. TEAM_RANCORSNIPER = DarkRP.createJob("Rancor Sniper Trooper", {
  677. color = Color(80, 45, 0, 255),
  678. model = ("models/player/venator/tk_arc/tk_colt.mdl"),
  679. description = [[Sith Apprentices.]],
  680. weapons = (),
  681. command = "/rancor",
  682. max = 15,
  683. salary = 50,
  684. admin = 0,
  685. vote = false,
  686. hasLicense = false,
  687. category = "Rancor Troopers",
  688. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  689. ply:SetHealth(230),
  690. ply:SetArmor(),
  691. ply:SetWalkSpeed(),
  692. ply:SetRunSpeed(),
  693. })
  694.  
  695. TEAM_RANCORNCO = DarkRP.createJob("Rancor Trooper Nco", {
  696. color = Color(80, 45, 0, 255),
  697. model = (
  698. "models/player/venator/tk_arc/tk_blitz.mdl",
  699. "models/player/venator/tk_arc/tk_colt.mdl",
  700. "models/player/venator/tk_arc/tk_havoc.mdl"
  701. ),
  702. description = [[Sith Apprentices.]],
  703. weapons = {"tfa_imperialdisruptor_extended", "tfa_e11"),
  704. command = "/rancor",
  705. max = 6,
  706. salary = 80,
  707. admin = 0,
  708. vote = false,
  709. hasLicense = false,
  710. category = "Rancor Troopers",
  711. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  712. ply:SetHealth(250),
  713. ply:SetArmor(),
  714. ply:SetWalkSpeed(),
  715. ply:SetRunSpeed(),
  716. })
  717.  
  718. TEAM_RANCORCOMMANDER = DarkRP.createJob("Rancor Trooper Commander", {
  719. color = Color(80, 45, 0, 255),
  720. model = ("models/player/venator/tk_arc/tk_arc.mdl"),
  721. description = [[Sith Apprentices.]],
  722. weapons = {),
  723. command = "/rancor",
  724. max = 6,
  725. salary = 80,
  726. admin = 0,
  727. vote = false,
  728. hasLicense = false,
  729. category = "Rancor Trooper",
  730. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  731. ply:SetHealth(300),
  732. ply:SetArmor(),
  733. ply:SetWalkSpeed(),
  734. ply:SetRunSpeed(),
  735. })
  736.  
  737. TEAM_SHADOWTROOPER = DarkRP.createJob("Shadow Trooper", {
  738. color = Color(80, 45, 0, 255),
  739. model = ("models/player/blitz/troopers/trooper.mdl"),
  740. description = [[Sith Apprentices.]],
  741. weapons = ("tfa_swch_e5", "tfa_dh17_extended", "weapon_camo"),
  742. command = "/rancor",
  743. max = 15,
  744. salary = 50,
  745. admin = 0,
  746. vote = false,
  747. hasLicense = false,
  748. category = "Shadow troopers",
  749. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  750. ply:SetHealth(200),
  751. ply:SetArmor(),
  752. ply:SetWalkSpeed(),
  753. ply:SetRunSpeed(),
  754. })
  755.  
  756. TEAM_SHADOWTROOPERNCO = DarkRP.createJob("Shadow Trooper Nco", {
  757. color = Color(80, 45, 0, 255),
  758. model = ("models/player/blitz/troopers/sergeant.mdl"),
  759. description = [[Sith Apprentices.]],
  760. weapons = ("tfa_swch_e5", "tfa_dh17_extended", "weapon_camo"),
  761. command = "/rancor",
  762. max = 6,
  763. salary = 50,
  764. admin = 0,
  765. vote = false,
  766. hasLicense = false,
  767. category = "Shadow troopers",
  768. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  769. ply:SetHealth(225
  770. ply:SetArmor(),
  771. ply:SetWalkSpeed(),
  772. ply:SetRunSpeed(),
  773. })
  774.  
  775. TEAM_SHADOWTROOPEROFFICER = DarkRP.createJob("Shadow Trooper Officer", {
  776. color = Color(80, 45, 0, 255),
  777. model = ("models/player/blitz/troopers/officer.mdl"),
  778. description = [[Sith Apprentices.]],
  779. weapons = ("tfa_swch_e5", "tfa_dh17_extended", "weapon_camo"),
  780. command = "/rancor",
  781. max = 3,
  782. salary = 100,
  783. admin = 0,
  784. vote = false,
  785. hasLicense = false,
  786. category = "Shadow troopers",
  787. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  788. ply:SetHealth(245),
  789. ply:SetArmor(),
  790. ply:SetWalkSpeed(),
  791. ply:SetRunSpeed(),
  792. })
  793.  
  794. TEAM_SHADOWTROOPERCOMMANDER = DarkRP.createJob("Shadow Trooper Commander", {
  795. color = Color(80, 45, 0, 255),
  796. model = ("models/player/blitz/troopers/commander.mdl"),
  797. description = [[Sith Apprentices.]],
  798. weapons = ("tfa_swch_e5", "tfa_dh17_extended", "weapon_camo"),
  799. command = "/rancor",
  800. max = 1,
  801. salary = 150,
  802. admin = 0,
  803. vote = false,
  804. hasLicense = false,
  805. category = "Shadow troopers",
  806. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  807. ply:SetHealth(270),
  808. ply:SetArmor(),
  809. ply:SetWalkSpeed(),
  810. ply:SetRunSpeed(),
  811. })
  812.  
  813. TEAM_SHOCKTROOPER = DarkRP.createJob("Shock Trooper", {
  814. color = Color(80, 45, 0, 255),
  815. model = ("models/sono/shocktrooper/trooper.mdl"),
  816. description = [[Sith Apprentices.]],
  817. weapons = ("stunstick", "tfa_752_dlt19", "arrest_stick"),
  818. command = "/shock",
  819. max = 15,
  820. salary = 50,
  821. admin = 0,
  822. vote = false,
  823. hasLicense = false,
  824. category = "Shock troopers",
  825. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  826. ply:SetHealth(200),
  827. ply:SetArmor(),
  828. ply:SetWalkSpeed(),
  829. ply:SetRunSpeed(5),
  830. })
  831.  
  832. TEAM_SHOCKTROOPERNCO = DarkRP.createJob("Shock Trooper Nco", {
  833. color = Color(80, 45, 0, 255),
  834. model = ("models/sono/shocktrooper/sergeant.mdl"),
  835. description = [[Sith Apprentices.]],
  836. weapons = ("stunstick", "tfa_752_dlt19", "arrest_stick"),
  837. command = "/shocknco",
  838. max = 6,
  839. salary = 130,
  840. admin = 0,
  841. vote = false,
  842. hasLicense = false,
  843. category = "Shock troopers",
  844. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  845. ply:SetHealth(260),
  846. ply:SetArmor(),
  847. ply:SetWalkSpeed(),
  848. ply:SetRunSpeed(5),
  849. })
  850.  
  851. TEAM_SHOCKTROOPEROFFICER = DarkRP.createJob("Shock Trooper Officer", {
  852. color = Color(80, 45, 0, 255),
  853. model = ("models/sono/shocktrooper/officer.mdl"),
  854. description = [[Sith Apprentices.]],
  855. weapons = ("tfa_swch_e5", "tfa_dh17_extended", "arrest_stick"),
  856. command = "/shockofficer",
  857. max = 3,
  858. salary = 210,
  859. admin = 0,
  860. vote = false,
  861. hasLicense = false,
  862. category = "Shock troopers",
  863. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  864. ply:SetHealth(290),
  865. ply:SetArmor(),
  866. ply:SetWalkSpeed(),
  867. ply:SetRunSpeed(5),
  868. })
  869.  
  870. TEAM_SHOCKTROOPERCOMMANDER = DarkRP.createJob("Shock Trooper Commander", {
  871. color = Color(80, 45, 0, 255),
  872. model = ("models/sono/shocktrooper/commander.mdl"),
  873. description = [[Sith Apprentices.]],
  874. weapons = ("stunstick", "tfa_752_dlt19", "arrest_stick"),
  875. command = "/shockcmdr",
  876. max = 1,
  877. salary = 240,
  878. admin = 0,
  879. vote = false,
  880. hasLicense = false,
  881. category = "Shock troopers",
  882. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  883. ply:SetHealth(320),
  884. ply:SetArmor(),
  885. ply:SetWalkSpeed(),
  886. ply:SetRunSpeed(5),
  887. })
  888.  
  889. TEAM_PILOT = DarkRP.createJob("Pilot Troopers", {
  890. color = Color(80, 45, 0, 255),
  891. model = ("models/sono/shocktrooper/commander.mdl"),
  892. description = [[Sith Apprentices.]],
  893. weapons = ("stunstick", "tfa_752_dlt19", "arrest_stick"),
  894. command = "/shockcmdr",
  895. max = 1,
  896. salary = 80,
  897. admin = 0,
  898. vote = false,
  899. hasLicense = false,
  900. category = "Pilot troopers",
  901. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  902. ply:SetHealth(200),
  903. ply:SetArmor(),
  904. ply:SetWalkSpeed(),
  905. ply:SetRunSpeed(),
  906. })
  907.  
  908. TEAM_AGENT = DarkRP.createJob("ISB Agent", {
  909. color = Color(80, 45, 0, 255),
  910. model = ("models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl"),
  911. description = [[Sith Apprentices.]],
  912. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  913. command = "/ISbagent",
  914. max = 10,
  915. salary = 80,
  916. admin = 0,
  917. vote = false,
  918. hasLicense = false,
  919. category = "ISB",
  920. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  921. ply:SetHealth(200),
  922. ply:SetArmor(),
  923. ply:SetWalkSpeed(),
  924. ply:SetRunSpeed(),
  925. })
  926.  
  927. TEAM_ISBCORPORAL = DarkRP.createJob("ISB Corporal", {
  928. color = Color(80, 45, 0, 255),
  929. model = ("models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl"),
  930. description = [[Sith Apprentices.]],
  931. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  932. command = "/ISBCorporal",
  933. max = 10,
  934. salary = 120,
  935. admin = 0,
  936. vote = false,
  937. hasLicense = false,
  938. category = "ISB",
  939. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  940. ply:SetHealth(200),
  941. ply:SetArmor(),
  942. ply:SetWalkSpeed(),
  943. ply:SetRunSpeed(),
  944. })
  945.  
  946. TEAM_ISBSERGANT = DarkRP.createJob("ISB Corporal", {
  947. color = Color(80, 45, 0, 255),
  948. model = ("models/player/swbf_imperial_officer_isbofficerv2/swbf_imperial_officer_isbofficerv2.mdl"),
  949. description = [[Sith Apprentices.]],
  950. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  951. command = "/ISBSergant",
  952. max = 10,
  953. salary = 130,
  954. admin = 0,
  955. vote = false,
  956. hasLicense = false,
  957. category = "ISB",
  958. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  959. ply:SetHealth(200),
  960. ply:SetArmor(),
  961. ply:SetWalkSpeed(),
  962. ply:SetRunSpeed(),
  963. })
  964.  
  965. TEAM_ISBSTAFFCHIEF = DarkRP.createJob("ISB Staff Chief", {
  966. color = Color(80, 45, 0, 255),
  967. model = ("models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"),
  968. description = [[Sith Apprentices.]],
  969. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  970. command = "/ISBStaffchief",
  971. max = 10,
  972. salary = 140,
  973. admin = 0,
  974. vote = false,
  975. hasLicense = false,
  976. category = "ISB",
  977. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  978. ply:SetHealth(200),
  979. ply:SetArmor(),
  980. ply:SetWalkSpeed(),
  981. ply:SetRunSpeed(),
  982. })
  983.  
  984. TEAM_ISBMASTERCHEIF = DarkRP.createJob("ISB Master Chief", {
  985. color = Color(80, 45, 0, 255),
  986. model = ("models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"),
  987. description = [[Sith Apprentices.]],
  988. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  989. command = "/ISBMasterchief",
  990. max = 10,
  991. salary = 150,
  992. admin = 0,
  993. vote = false,
  994. hasLicense = false,
  995. category = "ISB",
  996. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  997. ply:SetHealth(200),
  998. ply:SetArmor(),
  999. ply:SetWalkSpeed(),
  1000. ply:SetRunSpeed(),
  1001. })
  1002.  
  1003. TEAM_ISBCONSTABLE = DarkRP.createJob("ISB Constable", {
  1004. color = Color(80, 45, 0, 255),
  1005. model = ("models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"),
  1006. description = [[Sith Apprentices.]],
  1007. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1008. command = "/ISBConstable",
  1009. max = 10,
  1010. salary = 160,
  1011. admin = 0,
  1012. vote = false,
  1013. hasLicense = false,
  1014. category = "ISB",
  1015. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1016. ply:SetHealth(200),
  1017. ply:SetArmor(),
  1018. ply:SetWalkSpeed(),
  1019. ply:SetRunSpeed(),
  1020. })
  1021.  
  1022. TEAM_ISBSENIORCONSTABLE = DarkRP.createJob("ISB Senior Constable", {
  1023. color = Color(80, 45, 0, 255),
  1024. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1025. description = [[Sith Apprentices.]],
  1026. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1027. command = "/ISBConstable",
  1028. max = 10,
  1029. salary = 170,
  1030. admin = 0,
  1031. vote = false,
  1032. hasLicense = false,
  1033. category = "ISB",
  1034. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1035. ply:SetHealth(200),
  1036. ply:SetArmor(),
  1037. ply:SetWalkSpeed(),
  1038. ply:SetRunSpeed(),
  1039. })
  1040.  
  1041. TEAM_ISBSENIORAGENT = DarkRP.createJob("ISB Senior Agent", {
  1042. color = Color(80, 45, 0, 255),
  1043. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1044. description = [[Sith Apprentices.]],
  1045. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1046. command = "/ISBConstable",
  1047. max = 10,
  1048. salary = 180,
  1049. admin = 0,
  1050. vote = false,
  1051. hasLicense = false,
  1052. category = "ISB",
  1053. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1054. ply:SetHealth(200),
  1055. ply:SetArmor(),
  1056. ply:SetWalkSpeed(),
  1057. ply:SetRunSpeed(),
  1058. })
  1059.  
  1060. TEAM_ISBSTAFFAGENT = DarkRP.createJob("ISB Staff Agent", {
  1061. color = Color(80, 45, 0, 255),
  1062. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1063. description = [[Sith Apprentices.]],
  1064. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1065. command = "/ISBConstable",
  1066. max = 10,
  1067. salary = 190,
  1068. admin = 0,
  1069. vote = false,
  1070. hasLicense = false,
  1071. category = "ISB",
  1072. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1073. ply:SetHealth(200),
  1074. ply:SetArmor(),
  1075. ply:SetWalkSpeed(),
  1076. ply:SetRunSpeed(),
  1077. })
  1078.  
  1079. TEAM_ISBMASTERAGENT = DarkRP.createJob("ISB Master Agent", {
  1080. color = Color(80, 45, 0, 255),
  1081. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdll"),
  1082. description = [[Sith Apprentices.]],
  1083. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1084. command = "/ISBConstable",
  1085. max = 10,
  1086. salary = 200,
  1087. admin = 0,
  1088. vote = false,
  1089. hasLicense = false,
  1090. category = "ISB",
  1091. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1092. ply:SetHealth(200),
  1093. ply:SetArmor(),
  1094. ply:SetWalkSpeed(),
  1095. ply:SetRunSpeed(),
  1096. })
  1097.  
  1098. TEAM_ISBCoordinator = DarkRP.createJob("ISB Coordinator", {
  1099. color = Color(80, 45, 0, 255),
  1100. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1101. description = [[Sith Apprentices.]],
  1102. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1103. command = "/ISBConstable",
  1104. max = 5,
  1105. salary = 210,
  1106. admin = 0,
  1107. vote = false,
  1108. hasLicense = false,
  1109. category = "ISB",
  1110. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1111. ply:SetHealth(200),
  1112. ply:SetArmor(),
  1113. ply:SetWalkSpeed(),
  1114. ply:SetRunSpeed(),
  1115. })
  1116.  
  1117. TEAM_ISBChief = DarkRP.createJob("ISB Chief", {
  1118. color = Color(80, 45, 0, 255),
  1119. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1120. description = [[Sith Apprentices.]],
  1121. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1122. command = "/ISBConstable",
  1123. max = 5,
  1124. salary = 220,
  1125. admin = 0,
  1126. vote = false,
  1127. hasLicense = false,
  1128. category = "ISB",
  1129. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1130. ply:SetHealth(200),
  1131. ply:SetArmor(),
  1132. ply:SetWalkSpeed(),
  1133. ply:SetRunSpeed(),
  1134. })
  1135.  
  1136. TEAM_ISBCHIEFCOORDINATOR = DarkRP.createJob("ISB Chief Coordinator", {
  1137. color = Color(80, 45, 0, 255),
  1138. model = ("models/sono/shocktrooper/commander.mdl"),
  1139. description = [[Sith Apprentices.]],
  1140. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1141. command = "/ISBConstable",
  1142. max = 5,
  1143. salary = 220,
  1144. admin = 0,
  1145. vote = false,
  1146. hasLicense = false,
  1147. category = "ISB",
  1148. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1149. ply:SetHealth(200),
  1150. ply:SetArmor(),
  1151. ply:SetWalkSpeed(),
  1152. ply:SetRunSpeed(),
  1153. })
  1154.  
  1155. TEAM_ISBDEPUTYDIRECTOR = DarkRP.createJob("ISB Deputy Director", {
  1156. color = Color(80, 45, 0, 255),
  1157. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1158. description = [[Sith Apprentices.]],
  1159. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1160. command = "/ISBConstable",
  1161. max = 2,
  1162. salary = 230,
  1163. admin = 0,
  1164. vote = false,
  1165. hasLicense = false,
  1166. category = "ISB",
  1167. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1168. ply:SetHealth(200),
  1169. ply:SetArmor(),
  1170. ply:SetWalkSpeed(),
  1171. ply:SetRunSpeed(),
  1172. })
  1173.  
  1174. TEAM_ISBDIRECTOR = DarkRP.createJob("ISB Director", {
  1175. color = Color(80, 45, 0, 255),
  1176. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1177. description = [[Sith Apprentices.]],
  1178. weapons = ("stunstick", "tfa_kotor_bp_4", "arrest_stick"),
  1179. command = "/ISBConstable",
  1180. max = 1,
  1181. salary = 240,
  1182. admin = 0,
  1183. vote = false,
  1184. hasLicense = false,
  1185. category = "ISB",
  1186. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1187. ply:SetHealth(200),
  1188. ply:SetArmor(),
  1189. ply:SetWalkSpeed(),
  1190. ply:SetRunSpeed(),
  1191. })
  1192.  
  1193. TEAM_ENGINEER = DarkRP.createJob("Engineer Troopers", {
  1194. color = Color(80, 45, 0, 255),
  1195. model = ("models/player/ie_dt/visionrp/trooper.mdl"),
  1196. description = [[Stormtrooper Of The Empire.]],
  1197. weapons = {"tfa_e11_b", "tfa_dh17_extended"},
  1198. command = "/84thtrooper",
  1199. max = 200,
  1200. salary = 40,
  1201. admin = 0,
  1202. vote = false,
  1203. hasLicense = false,
  1204. category = "84th Company",
  1205. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1206. ply:SetHealth(200),
  1207. ply:SetArmor(),
  1208. ply:SetWalkSpeed(),
  1209. ply:SetRunSpeed(),
  1210. })
  1211.  
  1212. TEAM_ENGINEERNCO = DarkRP.createJob("Engineer Nco Troopers", {
  1213. color = Color(80, 45, 0, 255),
  1214. model = ("models/player/ie_dt/visionrp/sergeant.mdl"),
  1215. description = [[Stormtrooper Of The Empire.]],
  1216. weapons = {"tfa_e11_b", "tfa_dh17_extended"},
  1217. command = "/84thnco",
  1218. max = 200,
  1219. salary = 60,
  1220. admin = 0,
  1221. vote = false,
  1222. hasLicense = false,
  1223. category = "84th Company",
  1224. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1225. ply:SetHealth(200),
  1226. ply:SetArmor(),
  1227. ply:SetWalkSpeed(),
  1228. ply:SetRunSpeed(),
  1229. })
  1230.  
  1231. TEAM_ENGINEERXO = DarkRP.createJob("Engineer Xo Troopers", {
  1232. color = Color(80, 45, 0, 255),
  1233. model = ("models/player/ie_dt/visionrp/officer.mdl"),
  1234. description = [[Stormtrooper Of The Empire.]],
  1235. weapons = {"tfa_e11_b", "tfa_dh17_extended"},
  1236. command = "/84thxo",
  1237. max = 200,
  1238. salary = 80,
  1239. admin = 0,
  1240. vote = false,
  1241. hasLicense = false,
  1242. category = "84th Company",
  1243. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1244. ply:SetHealth(200),
  1245. ply:SetArmor(),
  1246. ply:SetWalkSpeed(),
  1247. ply:SetRunSpeed(),
  1248. })
  1249.  
  1250. TEAM_ENGINEERCOMMANDER = DarkRP.createJob("Engineer Commander", {
  1251. color = Color(80, 45, 0, 255),
  1252. model = ("models/player/ie_dt/visionrp/officer.mdl"),
  1253. description = [[Stormtrooper Of The Empire.]],
  1254. weapons = {"tfa_e11_b", "tfa_dh17_extended"},
  1255. command = "/84commander",
  1256. max = 15,
  1257. salary = 80,
  1258. admin = 0,
  1259. vote = false,
  1260. hasLicense = false,
  1261. category = "84th Company",
  1262. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1263. ply:SetHealth(200),
  1264. ply:SetArmor(),
  1265. ply:SetWalkSpeed(),
  1266. ply:SetRunSpeed(),
  1267. })
  1268.  
  1269. TEAM_NAVY = DarkRP.createJob("Navy Trooper NCO", {
  1270. color = Color(80, 45, 0, 255),
  1271. model = ()
  1272. description = [[You are a pilot of the imperial army.]],
  1273. weapons = ("tfa_relby", "tfa_sw_dual_dl44"),
  1274. command = "/NavytrooperNCO",
  1275. max = 10,
  1276. salary = 400,
  1277. admin = 0,
  1278. vote = false,
  1279. hasLicense = false,
  1280. category = "Navy Troopers",
  1281. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1282. ply:SetHealth(200),
  1283. ply:SetArmor(),
  1284. ply:SetWalkSpeed(),
  1285. ply:SetRunSpeed(),
  1286. })
  1287.  
  1288. TEAM_NAVY = DarkRP.createJob("Navy Trooper", {
  1289. color = Color(80, 45, 0, 255),
  1290. model = (),
  1291. description = [[You are a pilot of the imperial army.]],
  1292. weapons = ("tfa_relby", "tfa_sw_dual_dl44"),
  1293. command = "/Navytrooper",
  1294. max = 10,
  1295. salary = 400,
  1296. admin = 0,
  1297. vote = false,
  1298. hasLicense = false,
  1299. category = "Navy Troopers",
  1300. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1301. ply:SetHealth(200),
  1302. ply:SetArmor(),
  1303. ply:SetWalkSpeed(),
  1304. ply:SetRunSpeed(),
  1305. })
  1306.  
  1307. TEAM_501STCOMMANDER = DarkRP.createJob("501st Commander", {
  1308. color = Color(80, 45, 0, 255),
  1309. model = (),
  1310. description = [[You are Commander of the 501st.]],
  1311. weapons = ("tfa_relby", "tfa_dl44", "tfa_752_dlt19"),
  1312. command = "/501stCommander",
  1313. max = 1,
  1314. salary = 400,
  1315. admin = 0,
  1316. vote = false,
  1317. hasLicense = false,
  1318. category = "501st",
  1319. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1320. ply:SetHealth(300),
  1321. ply:SetArmor(),
  1322. ply:SetWalkSpeed(),
  1323. ply:SetRunSpeed(),
  1324. })
  1325.  
  1326. TEAM_501STCOLONEL = DarkRP.createJob("501st Colonel", {
  1327. color = Color(80, 45, 0, 255),
  1328. model = (),
  1329. description = [[You are Colonel in the 501st.]],
  1330. weapons = ("tfa_relby", "tfa_dl44", "tfa_752_dlt19"),
  1331. command = "/501stColonel",
  1332. max = 2,
  1333. salary = 350,
  1334. admin = 0,
  1335. vote = false,
  1336. hasLicense = false,
  1337. category = "501st",
  1338. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1339. ply:SetHealth(300),
  1340. ply:SetArmor(),
  1341. ply:SetWalkSpeed(),
  1342. ply:SetRunSpeed(),
  1343. })
  1344.  
  1345. TEAM_501STOFFICER = DarkRP.createJob("501st Officer", {
  1346. color = Color(80, 45, 0, 255),
  1347. model = (),
  1348. description = [[You are an officer in the 501st.]],
  1349. weapons = ("tfa_relby", "tfa_dl44", "tfa_752_dlt19"),
  1350. command = "/501stOfficer",
  1351. max = 4,
  1352. salary = 350,
  1353. admin = 0,
  1354. vote = false,
  1355. hasLicense = false,
  1356. category = "501st",
  1357. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1358. ply:SetHealth(300),
  1359. ply:SetArmor(),
  1360. ply:SetWalkSpeed(),
  1361. ply:SetRunSpeed(),
  1362. })
  1363.  
  1364. TEAM_501STTROOPER = DarkRP.createJob("501st Trooper", {
  1365. color = Color(80, 45, 0, 255),
  1366. model = (),
  1367. description = [[You are part of Vaders fist.]],
  1368. weapons = ("tfa_relby", "tfa_dl44", "tfa_752_dlt19"),
  1369. command = "/501st",
  1370. max = 15,
  1371. salary = 300,
  1372. admin = 0,
  1373. vote = false,
  1374. hasLicense = false,
  1375. category = "501st",
  1376. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1377. ply:SetHealth(300),
  1378. ply:SetArmor(),
  1379. ply:SetWalkSpeed(),
  1380. ply:SetRunSpeed(),
  1381. })
  1382.  
  1383. TEAM_FLEETADMIRALS = DarkRP.createJob("Admirals Of the Fleet", {
  1384. color = Color(80, 45, 0, 255),
  1385. model = (
  1386. "models/player/swbf_imperial_officer_admiralv2/swbf_imperial_officer_admiralv2.mdl",
  1387. "models/player/swbf_imperial_officer_grand_admiralv2/swbf_imperial_officer_grand_admiralv2.mdl
  1388. "),
  1389. description = [[You are part of Vaders fist.]],
  1390. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1391. command = "/admiral",
  1392. max = 10,
  1393. salary = 300,
  1394. admin = 0,
  1395. vote = false,
  1396. hasLicense = false,
  1397. category = "Fleet",
  1398. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1399. ply:SetHealth(200),
  1400. ply:SetArmor(),
  1401. ply:SetWalkSpeed(),
  1402. ply:SetRunSpeed(),
  1403. })
  1404.  
  1405. TEAM_JUINORCREWMAN = DarkRP.createJob("Junior Crewman", {
  1406. color = Color(80, 45, 0, 255),
  1407. model = ("models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl"),
  1408. description = [[You are part of Vaders fist.]],
  1409. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1410. command = "/jcrewman",
  1411. max = 15,
  1412. salary = 300,
  1413. admin = 0,
  1414. vote = false,
  1415. hasLicense = false,
  1416. category = "Fleet",
  1417. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1418. ply:SetHealth(200),
  1419. ply:SetArmor(),
  1420. ply:SetWalkSpeed(),
  1421. ply:SetRunSpeed(),
  1422. })
  1423.  
  1424. TEAM_CREWMAN = DarkRP.createJob("Navy Crewman", {
  1425. color = Color(80, 45, 0, 255),
  1426. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1427. description = [[You are part of Vaders fist.]],
  1428. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1429. command = "/admiral",
  1430. max = 15,
  1431. salary = 300,
  1432. admin = 0,
  1433. vote = false,
  1434. hasLicense = false,
  1435. category = "Fleet",
  1436. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1437. ply:SetHealth(200),
  1438. ply:SetArmor(),
  1439. ply:SetWalkSpeed(),
  1440. ply:SetRunSpeed(),
  1441. })
  1442.  
  1443. TEAM_NAVYCHIEF = DarkRP.createJob("Navy Chief", {
  1444. color = Color(80, 45, 0, 255),
  1445. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1446. description = [[You are part of Vaders fist.]],
  1447. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1448. command = "/admiral",
  1449. max = 15,
  1450. salary = 300,
  1451. admin = 0,
  1452. vote = false,
  1453. hasLicense = false,
  1454. category = "Fleet",
  1455. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1456. ply:SetHealth(200),
  1457. ply:SetArmor(),
  1458. ply:SetWalkSpeed(),
  1459. ply:SetRunSpeed(),
  1460. })
  1461.  
  1462. TEAM_NAVYMASTERCHIEF = DarkRP.createJob("Master CHief", {
  1463. color = Color(80, 45, 0, 255),
  1464. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1465. description = [[You are part of Vaders fist.]],
  1466. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1467. command = "/admiral",
  1468. max = 15,
  1469. salary = 300,
  1470. admin = 0,
  1471. vote = false,
  1472. hasLicense = false,
  1473. category = "Fleet",
  1474. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1475. ply:SetHealth(200),
  1476. ply:SetArmor(),
  1477. ply:SetWalkSpeed(),
  1478. ply:SetRunSpeed(),
  1479. })
  1480.  
  1481. TEAM_NAVYMIDSHIPMAN = DarkRP.createJob("Midshipman", {
  1482. color = Color(80, 45, 0, 255),
  1483. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1484. description = [[You are part of Vaders fist.]],
  1485. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1486. command = "/admiral",
  1487. max = 15,
  1488. salary = 300,
  1489. admin = 0,
  1490. vote = false,
  1491. hasLicense = false,
  1492. category = "Fleet",
  1493. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1494. ply:SetHealth(200),
  1495. ply:SetArmor(),
  1496. ply:SetWalkSpeed(),
  1497. ply:SetRunSpeed(),
  1498. })
  1499.  
  1500. TEAM_NAVYENSIGN = DarkRP.createJob("Ensign", {
  1501. color = Color(80, 45, 0, 255),
  1502. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1503. description = [[You are part of Vaders fist.]],
  1504. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1505. command = "/admiral",
  1506. max = 15,
  1507. salary = 300,
  1508. admin = 0,
  1509. vote = false,
  1510. hasLicense = false,
  1511. category = "Fleet",
  1512. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1513. ply:SetHealth(200),
  1514. ply:SetArmor(),
  1515. ply:SetWalkSpeed(),
  1516. ply:SetRunSpeed(),
  1517. })
  1518.  
  1519. TEAM_NAVYSUBLIEUTENANT = DarkRP.createJob("Sub-Lieutenant", {
  1520. color = Color(80, 45, 0, 255),
  1521. model = ("models/player/swbf_imperial_officer_ensignv2/swbf_imperial_officer_ensignv2.mdl"),
  1522. description = [[You are part of Vaders fist.]],
  1523. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1524. command = "/admiral",
  1525. max = 15,
  1526. salary = 300,
  1527. admin = 0,
  1528. vote = false,
  1529. hasLicense = false,
  1530. category = "Fleet",
  1531. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1532. ply:SetHealth(200),
  1533. ply:SetArmor(),
  1534. ply:SetWalkSpeed(),
  1535. ply:SetRunSpeed(),
  1536. })
  1537.  
  1538. TEAM_LIEUTENANT = DarkRP.createJob("Navy Lieutenant", {
  1539. color = Color(80, 45, 0, 255),
  1540. model = ("models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl"),
  1541. description = [[You are part of Vaders fist.]],
  1542. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1543. command = "/admiral",
  1544. max = 15,
  1545. salary = 300,
  1546. admin = 0,
  1547. vote = false,
  1548. hasLicense = false,
  1549. category = "Fleet",
  1550. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1551. ply:SetHealth(200),
  1552. ply:SetArmor(),
  1553. ply:SetWalkSpeed(),
  1554. ply:SetRunSpeed(),
  1555. })
  1556.  
  1557. TEAM_NAVYLIIEUTENANTCOMMANDER = DarkRP.createJob("Navy Lieutenant Commander", {
  1558. color = Color(80, 45, 0, 255),
  1559. model = ("models/player/swbf_imperial_isb_agentv2/swbf_imperial_isb_agentv2.mdl"),
  1560. description = [[You are part of Vaders fist.]],
  1561. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1562. command = "/admiral",
  1563. max = 15,
  1564. salary = 300,
  1565. admin = 0,
  1566. vote = false,
  1567. hasLicense = false,
  1568. category = "Fleet",
  1569. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1570. ply:SetHealth(200),
  1571. ply:SetArmor(),
  1572. ply:SetWalkSpeed(),
  1573. ply:SetRunSpeed(),
  1574. })
  1575.  
  1576. TEAM_NAVYCOMMANDER = DarkRP.createJob("Navy Commander", {
  1577. color = Color(80, 45, 0, 255),
  1578. model = ("models/player/swbf_imperial_officer_lieutenantv2/swbf_imperial_officer_lieutenantv2.mdl"),
  1579. description = [[You are part of Vaders fist.]],
  1580. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1581. command = "/admiral",
  1582. max = 15,
  1583. salary = 300,
  1584. admin = 0,
  1585. vote = false,
  1586. hasLicense = false,
  1587. category = "Fleet",
  1588. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1589. ply:SetHealth(200),
  1590. ply:SetArmor(),
  1591. ply:SetWalkSpeed(),
  1592. ply:SetRunSpeed(),
  1593. })
  1594.  
  1595. TEAM_NAVYCAPTIAN = DarkRP.createJob("Navy Captian", {
  1596. color = Color(80, 45, 0, 255),
  1597. model = (),
  1598. description = [[You are part of Vaders fist.]],
  1599. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1600. command = "/admiral",
  1601. max = 15,
  1602. salary = 300,
  1603. admin = 0,
  1604. vote = false,
  1605. hasLicense = false,
  1606. category = "Fleet",
  1607. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1608. ply:SetHealth(200),
  1609. ply:SetArmor(),
  1610. ply:SetWalkSpeed(),
  1611. ply:SetRunSpeed(),
  1612. })
  1613.  
  1614. TEAM_NAVYLINECAPTAIN = DarkRP.createJob("Navy Line Captian", {
  1615. color = Color(80, 45, 0, 255),
  1616. model = ("models/player/swbf_imperial_officer_commodorev2/swbf_imperial_officer_commodorev2.mdl"),
  1617. description = [[You are part of Vaders fist.]],
  1618. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1619. command = "/admiral",
  1620. max = 15,
  1621. salary = 300,
  1622. admin = 0,
  1623. vote = false,
  1624. hasLicense = false,
  1625. category = "Fleet",
  1626. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1627. ply:SetHealth(200),
  1628. ply:SetArmor(),
  1629. ply:SetWalkSpeed(),
  1630. ply:SetRunSpeed(),
  1631. })
  1632.  
  1633. TEAM_FLEETCOMMODORE = DarkRP.createJob("Navy Commodore", {
  1634. color = Color(80, 45, 0, 255),
  1635. model = ("models/player/swbf_imperial_officer_colonelv2/swbf_imperial_officer_colonelv2.mdl"),
  1636. description = [[You are part of Vaders fist.]],
  1637. weapons = ("tfa_swch_de10", "tfa_dh17"),
  1638. command = "/admiral",
  1639. max = 15,
  1640. salary = 300,
  1641. admin = 0,
  1642. vote = false,
  1643. hasLicense = false,
  1644. category = "Fleet",
  1645. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  1646. ply:SetHealth(200),
  1647. ply:SetArmor(),
  1648. ply:SetWalkSpeed(),
  1649. ply:SetRunSpeed(),
  1650. })
  1651.  
  1652. --[[---------------------------------------------------------------------------
  1653. Define which team joining players spawn into and what team you change to if demoted
  1654. ---------------------------------------------------------------------------]]
  1655. GAMEMODE.DefaultTeam = TEAM_RECRUIT
  1656. --[[---------------------------------------------------------------------------
  1657. Define which teams belong to civil protection
  1658. Civil protection can set warrants, make people wanted and do some other police related things
  1659. ---------------------------------------------------------------------------]]
  1660. GAMEMODE.CivilProtection = {
  1661. [TEAM_POLICE] = false,
  1662. [TEAM_CHIEF] = false,
  1663. [TEAM_MAYOR] = false,
  1664. }
  1665. --[[---------------------------------------------------------------------------
  1666. Jobs that are hitmen (enables the hitman menu)
  1667. ---------------------------------------------------------------------------]]
  1668. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement