Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 63.39 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom jobs.
  6. This file should also contain jobs from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the job to this file and edit it.
  10.  
  11. The default jobs can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  16.  
  17.  
  18. Add jobs under the following line:
  19. ---------------------------------------------------------------------------]]
  20. TEAM_CADET = DarkRP.createJob("Clone Recruit", {
  21. color = Color(0,0,0,255),
  22. model = "models/player/clone cadet/clonecadet.mdl",
  23. description = [[Go through training to get whitelisted to a CT]],
  24. weapons = {"climb_swep2", "weapon_ifge_trainingdc15a"},
  25. command = "crecruit",
  26. max = 50,
  27. salary = 1,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = false,
  31. })
  32.  
  33. TEAM_CLONETROOPER = DarkRP.createJob("Clone Trooper", {
  34. color = Color(0,0,0,255),
  35. model = "models/player/sgg/starwars/clonetrooper_dirty.mdl",
  36. description = [[You are a clone trooper. Train and try out for a battalion!]],
  37. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "climb_swep2"},
  38. command = "ct",
  39. max = 50,
  40. salary = 45,
  41. admin = 0,
  42. vote = false,
  43. hasLicense = false,
  44. category = "Clone Trooper",
  45. })
  46.  
  47. TEAM_DRILL = DarkRP.createJob("Clone Drill Instructor", {
  48. color = Color(0,0,0,255),
  49. model = {"models/player/asgclonewars/trooper_officer/clonetrooper_officer.mdl"},
  50. description = [[You are a Clone Drill Instructor. You train all Clone Recruits that join!]],
  51. weapons = {"climb_swep2","weapon_752_dc15s","weapon_752_dc17","stunstick"},
  52. command = "cdi",
  53. max = 5,
  54. salary = 75,
  55. admin = 0,
  56. vote = false,
  57. hasLicense = false,
  58. candemote = false,
  59. -- CustomCheck
  60. medic = false,
  61. chief = false,
  62. mayor = false,
  63. hobo = false,
  64. cook = false,
  65. category = "Clone Trooper",
  66. })
  67.  
  68. TEAM_COM = DarkRP.createJob("Clone Commander", {
  69. color = Color(0,0,0,255),
  70. model = {"models/player/sgg/starwars/clonetrooper_deviss.mdl"},
  71. description = [[You are the Clone Commander. Make sure your troops stay in their place!]],
  72. weapons = {"climb_swep2","weapon_752_dlt19","weapon_752_dc17","stunstick"},
  73. command = "cc",
  74. max = 1,
  75. salary = 100,
  76. admin = 0,
  77. vote = false,
  78. hasLicense = false,
  79. candemote = false,
  80. -- CustomCheck
  81. medic = false,
  82. chief = false,
  83. mayor = false,
  84. hobo = false,
  85. cook = false,
  86. category = "Clone Trooper",
  87. })
  88.  
  89. TEAM_41COMMANDER = DarkRP.createJob("41st Commander Gree", {
  90. color = Color(18, 115, 5, 255),
  91. model = {"models/player/sgg/starwars/clonetrooper_gree.mdl"},
  92. description = [[41st Commander]],
  93. weapons = {"weapon_752_dc17dual", "weapon_jew_dc19", "macrobinoculars", "climb_swep2"},
  94. command = "41commander",
  95. max = 1,
  96. salary = 250,
  97. admin = 0,
  98. vote = false,
  99. hasLicense = true,
  100. candemote = false,
  101. -- CustomCheck
  102. medic = false,
  103. chief = false,
  104. mayor = false,
  105. hobo = false,
  106. cook = false,
  107. category = "41st Battalion",
  108. })
  109.  
  110. TEAM_41LIEUTENANT = DarkRP.createJob("41st Lieutenant", {
  111. color = Color(18, 115, 5, 255),
  112. model = {"models/player/41/starwars/lt.mdl"},
  113. description = [[41st Lieutenant]],
  114. weapons = {"weapon_752_dc17dual", "weapon_jew_dc19", "macrobinoculars", "climb_swep2"},
  115. command = "41lieutenant",
  116. max = 3,
  117. salary = 250,
  118. admin = 0,
  119. vote = false,
  120. hasLicense = true,
  121. candemote = false,
  122. -- CustomCheck
  123. medic = false,
  124. chief = false,
  125. mayor = false,
  126. hobo = false,
  127. cook = false,
  128. category = "41st Battalion",
  129. })
  130.  
  131. TEAM_41TROOPER = DarkRP.createJob("41st Trooper", {
  132. color = Color(18, 115, 5, 255),
  133. model = {"models/player/41/starwars/trooper.mdl"},
  134. description = [[41st Trooper]],
  135. weapons = {"weapon_752_dc17", "weapon_jew_dc19", "macrobinoculars", "climb_swep2"},
  136. command = "41trooper",
  137. max = 10,
  138. salary = 250,
  139. admin = 0,
  140. vote = false,
  141. hasLicense = true,
  142. candemote = false,
  143. -- CustomCheck
  144. medic = false,
  145. chief = false,
  146. mayor = false,
  147. hobo = false,
  148. cook = false,
  149. category = "41st Battalion",
  150. })
  151.  
  152. TEAM_104C = DarkRP.createJob("104th Commander Wolffe", {
  153. color = Color(91, 91, 91, 255),
  154. model = {"models/wolffe.mdl"},
  155. description = [[You are the 104th Commander make sure your troops stay in their place!]],
  156. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2", "weapon_752_ihr"},
  157. command = "104c",
  158. max = 1,
  159. salary = 100,
  160. admin = 0,
  161. vote = false,
  162. hasLicense = false,
  163. candemote = false,
  164. -- CustomCheck
  165. medic = false,
  166. chief = false,
  167. mayor = false,
  168. hobo = false,
  169. cook = false,
  170. category = "104th Wolf Pack",
  171. })
  172.  
  173. TEAM_104L = DarkRP.createJob("104th Wolf Pack Lieutenant", {
  174. color = Color(91, 91, 91, 255),
  175. model = {"models/player/was/starwars/lt.mdl"},
  176. description = [[You are a 104th Lieutenant make sure you follow your Commanders orders!]],
  177. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2", "weapon_752_ihr"},
  178. command = "104wpl",
  179. max = 3,
  180. salary = 100,
  181. admin = 0,
  182. vote = false,
  183. hasLicense = true,
  184. candemote = true,
  185. -- CustomCheck
  186. medic = false,
  187. chief = false,
  188. mayor = false,
  189. hobo = false,
  190. cook = false,
  191. category = "104th Wolf Pack",
  192. })
  193.  
  194. TEAM_104T = DarkRP.createJob("104th Wolf Pack Trooper", {
  195. color = Color(91, 91, 91, 255),
  196. model = {"models/wpclonetrooper.mdl"},
  197. description = [[You are a 104th Trooper make sure you follow your Commanders orders!]],
  198. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2", "weapon_752_ihr"},
  199. command = "104t",
  200. max = 10,
  201. salary = 100,
  202. admin = 0,
  203. vote = false,
  204. hasLicense = true,
  205. candemote = true,
  206. -- CustomCheck
  207. medic = false,
  208. chief = false,
  209. mayor = false,
  210. hobo = false,
  211. cook = false,
  212. category = "104th Wolf Pack",
  213. })
  214.  
  215. TEAM_107C = DarkRP.createJob("107th Commander Frenken", {
  216. color = Color(145, 0, 0, 255),
  217. model = {"models/player/11/starwars/frenken.mdl"},
  218. description = [[You are the 107th Commander make sure your troops stay in their place!]],
  219. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2", "weapon_752_ihr"},
  220. command = "107c",
  221. max = 1,
  222. salary = 100,
  223. admin = 0,
  224. vote = false,
  225. hasLicense = false,
  226. candemote = false,
  227. -- CustomCheck
  228. medic = false,
  229. chief = false,
  230. mayor = false,
  231. hobo = false,
  232. cook = false,
  233. category = "107th",
  234. })
  235.  
  236. TEAM_107L = DarkRP.createJob("107th Lieutenant", {
  237. color = Color(145, 0, 0, 255),
  238. model = {"models/player/11/starwars/107cpt.mdl"},
  239. description = [[You are a 107th Lieutenant make sure you follow your Commanders orders!]],
  240. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2", "weapon_752_ihr"},
  241. command = "107l",
  242. max = 3,
  243. salary = 100,
  244. admin = 0,
  245. vote = false,
  246. hasLicense = true,
  247. candemote = true,
  248. -- CustomCheck
  249. medic = false,
  250. chief = false,
  251. mayor = false,
  252. hobo = false,
  253. cook = false,
  254. category = "107th",
  255. })
  256.  
  257. TEAM_107T = DarkRP.createJob("107th Trooper", {
  258. color = Color(145, 0, 0, 255),
  259. model = {"models/player/11/starwars/frenkentrp.mdl"},
  260. description = [[You are a 107th Trooper make sure you follow your Commanders orders!]],
  261. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2", "weapon_752_ihr"},
  262. command = "107t",
  263. max = 10,
  264. salary = 100,
  265. admin = 0,
  266. vote = false,
  267. hasLicense = true,
  268. candemote = true,
  269. -- CustomCheck
  270. medic = false,
  271. chief = false,
  272. mayor = false,
  273. hobo = false,
  274. cook = false,
  275. category = "107th",
  276. })
  277.  
  278. TEAM_107RCC = DarkRP.createJob("107th Reapers Company Commander", {
  279. color = Color(145, 0, 0, 255),
  280. model = {"models/player/11/starwars/reapcdr.mdl"},
  281. description = [[You are the 107th Reapers Company Commander make sure your troops stay in their place!]],
  282. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","dc17grapple", "weapon_752_ihr"},
  283. command = "107rcc",
  284. max = 1,
  285. salary = 100,
  286. admin = 0,
  287. vote = false,
  288. hasLicense = false,
  289. candemote = false,
  290. -- CustomCheck
  291. medic = false,
  292. chief = false,
  293. mayor = false,
  294. hobo = false,
  295. cook = false,
  296. category = "107th",
  297. })
  298.  
  299. TEAM_107RCL = DarkRP.createJob("107th Reapers Company Lieutenant", {
  300. color = Color(145, 0, 0, 255),
  301. model = {"models/player/11/starwars/reaplt.mdl"},
  302. description = [[You are a 107th Reapers Company Lieutenant make sure you follow your Commanders orders!]],
  303. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2"},
  304. command = "107rcl",
  305. max = 3,
  306. salary = 100,
  307. admin = 0,
  308. vote = false,
  309. hasLicense = true,
  310. candemote = true,
  311. -- CustomCheck
  312. medic = false,
  313. chief = false,
  314. mayor = false,
  315. hobo = false,
  316. cook = false,
  317. category = "107th",
  318. })
  319.  
  320. TEAM_107RCT = DarkRP.createJob("107th Reapers Company Trooper", {
  321. color = Color(145, 0, 0, 255),
  322. model = {"models/player/11/starwars/reaptrp.mdl"},
  323. description = [[You are a 107th Reapers Company Trooper make sure you follow your Commanders orders!]],
  324. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2"},
  325. command = "107rct",
  326. max = 10,
  327. salary = 100,
  328. admin = 0,
  329. vote = false,
  330. hasLicense = true,
  331. candemote = true,
  332. -- CustomCheck
  333. medic = false,
  334. chief = false,
  335. mayor = false,
  336. hobo = false,
  337. cook = false,
  338. category = "107th",
  339. })
  340.  
  341. TEAM_187COMMANDER = DarkRP.createJob("187th Commander", {
  342. color = Color(158, 0, 255, 255),
  343. model = "models/player/sgg/starwars/clonetrooper_deviss3.mdl",
  344. description = [[You are the commander of the 187th Commander. Lead your men into battle!]],
  345. weapons = {"weapon_752_dc17m_br", "weapon_752_dc17dual", "climb_swep2", "weapon_752_dc17m_br"},
  346. command = "187thcommander",
  347. max = 1,
  348. salary = 100,
  349. admin = 0,
  350. vote = false,
  351. hasLicense = false,
  352. category = "187th Legion",
  353. })
  354.  
  355. TEAM_187LIEUTENANT = DarkRP.createJob("187th Lieutenant", {
  356. color = Color(158, 0, 255, 255),
  357. model = "models/player/as/starwars/lt.mdl",
  358. description = [[You are a 187th Lieutenant. The second highest job in the 187th Legion. Assist your commander and lead the battalion if he is absent]],
  359. weapons = {"weapon_752_dc17m_br", "weapon_752_dc17", "climb_swep2", "weapon_752_dc17m_br"},
  360. command = "187thlieutenant",
  361. max = 3,
  362. salary = 75,
  363. admin = 0,
  364. vote = false,
  365. hasLicense = false,
  366. category = "187th Legion",
  367. })
  368.  
  369. TEAM_187TROOPER = DarkRP.createJob("187th Trooper", {
  370. color = Color(158, 0, 255, 255),
  371. model = "models/player/asgclonewars/clonetrooper_187th/clonetrooper_187th.mdl",
  372. description = [[You are a 187th Trooper. Follow orders from your higher uppers.]],
  373. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dc17", "climb_swep2", "weapon_752_dc17m_br"},
  374. command = "187thtrooper",
  375. max = 10,
  376. salary = 45,
  377. admin = 0,
  378. vote = false,
  379. hasLicense = false,
  380. category = "187th Legion",
  381. })
  382.  
  383. TEAM_187PARACOMMANDER = DarkRP.createJob("187th Paratrooper Commander", {
  384. color = Color(158, 0, 255, 255),
  385. model = "models/player/as/starwars/paracommander.mdl",
  386. description = [[You are a 187th Paratrooper Commander. Lead your men into battle!]],
  387. weapons = {"weapon_752_dc17m_sn", "weapon_752_dc15s", "weapon_752_dc17", "climb_swep2"},
  388. command = "187thparacommander",
  389. max = 1,
  390. salary = 100,
  391. admin = 0,
  392. vote = false,
  393. hasLicense = false,
  394. category = "187th Legion",
  395. })
  396.  
  397. TEAM_187PARALIEUTENANT = DarkRP.createJob("187th Paratrooper Lieutenant", {
  398. color = Color(158, 0, 255, 255),
  399. model = "models/player/as/starwars/paraelite.mdl",
  400. description = [[You are a 187th Paratrooper Lieutenant. The second highest job in the 187th Legion. Assist your commander and lead the battalion if he is absent]],
  401. weapons = {"weapon_752_dc17m_sn", "weapon_752_dc15a", "weapon_752_dc17", "climb_swep2", "weapon_752_dc17m_br"},
  402. command = "187thparalieutenant",
  403. max = 3,
  404. salary = 75,
  405. admin = 0,
  406. vote = false,
  407. hasLicense = false,
  408. category = "187th Legion",
  409. })
  410.  
  411. TEAM_187PARATROOPER = DarkRP.createJob("187th Paratrooper", {
  412. color = Color(158, 0, 255, 255),
  413. model = "models/player/as/starwars/recon.mdl",
  414. description = [[You are a 187th Paratrooper. Follow orders from your higher uppers.]],
  415. weapons = {"weapon_752_dc17m_sn", "weapon_752_dc15s", "weapon_752_dc17", "climb_swep2", "weapon_752_dc17m_br"},
  416. command = "187thparatrooper",
  417. max = 10,
  418. salary = 45,
  419. admin = 0,
  420. vote = false,
  421. hasLicense = false,
  422. category = "187th Legion",
  423. })
  424.  
  425. TEAM_212C = DarkRP.createJob("212th Commander Cody", {
  426. color = Color(234, 182, 0, 255),
  427. model = {"models/player/sgg/starwars/clonetrooper_cody.mdl", "climb_swep2"},
  428. description = [[You are the 212th Commander make sure your troops stay in their place!]],
  429. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_t21"},
  430. command = "212c",
  431. max = 1,
  432. salary = 100,
  433. admin = 0,
  434. vote = false,
  435. hasLicense = false,
  436. candemote = false,
  437. -- CustomCheck
  438. medic = false,
  439. chief = false,
  440. mayor = false,
  441. hobo = false,
  442. cook = false,
  443. category = "212th",
  444. })
  445.  
  446. TEAM_212L = DarkRP.createJob("212th Lieutenant", {
  447. color = Color(234, 182, 0, 255),
  448. model = {"models/player/emp/starwars/212combat.mdl"},
  449. description = [[You are a 212th Lieutenant make sure you follow your Commanders orders!]],
  450. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2"},
  451. command = "212l",
  452. max = 1,
  453. salary = 100,
  454. admin = 0,
  455. vote = false,
  456. hasLicense = true,
  457. candemote = true,
  458. -- CustomCheck
  459. medic = false,
  460. chief = false,
  461. mayor = false,
  462. hobo = false,
  463. cook = false,
  464. category = "212th",
  465. })
  466.  
  467. TEAM_212T = DarkRP.createJob("212th Trooper", {
  468. color = Color(234, 182, 0, 255),
  469. model = {"models/player/sgg/starwars/clonetrooper_212nd.mdl"},
  470. description = [[You are a 212th Trooper make sure you follow your Commanders orders!]],
  471. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_752_t21"},
  472. command = "212t",
  473. max = 10,
  474. salary = 100,
  475. admin = 0,
  476. vote = false,
  477. hasLicense = false,
  478. candemote = false,
  479. -- CustomCheck
  480. medic = false,
  481. chief = false,
  482. mayor = false,
  483. hobo = false,
  484. cook = false,
  485. category = "212th",
  486. })
  487.  
  488. TEAM_212PC = DarkRP.createJob("212th Paratrooper Commander", {
  489. color = Color(234, 182, 0, 255),
  490. model = {"models/player/emp/starwars/212cpt.mdl"},
  491. description = [[You are the 501st Paratrooper Commander make sure your troops stay in their place!]],
  492. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_t21"},
  493. command = "212pc",
  494. max = 1,
  495. salary = 100,
  496. admin = 0,
  497. vote = false,
  498. hasLicense = false,
  499. candemote = false,
  500. -- CustomCheck
  501. medic = false,
  502. chief = false,
  503. mayor = false,
  504. hobo = false,
  505. cook = false,
  506. category = "212th",
  507. })
  508.  
  509. TEAM_212PL = DarkRP.createJob("212th Paratrooper Lieutenant", {
  510. color = Color(234, 182, 0, 255),
  511. model = {"models/player/emp/starwars/212support.mdl"},
  512. description = [[You are the 212th Paratrooper Lieutenant make sure you follow your Commanders orders!]],
  513. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2"},
  514. command = "212pl",
  515. max = 1,
  516. salary = 100,
  517. admin = 0,
  518. vote = false,
  519. hasLicense = false,
  520. candemote = false,
  521. -- CustomCheck
  522. medic = false,
  523. chief = false,
  524. mayor = false,
  525. hobo = false,
  526. cook = false,
  527. category = "212th",
  528. })
  529.  
  530. TEAM_212P = DarkRP.createJob("212th Paratrooper", {
  531. color = Color(234, 182, 0, 255),
  532. model = {"models/player/emp/starwars/212esharp.mdl"},
  533. description = [[You are the 212th Paratrooper make sure you follow your Commanders orders!]],
  534. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_752_t21"},
  535. command = "212p",
  536. max = 10,
  537. salary = 100,
  538. admin = 0,
  539. vote = false,
  540. hasLicense = false,
  541. candemote = false,
  542. -- CustomCheck
  543. medic = false,
  544. chief = false,
  545. mayor = false,
  546. hobo = false,
  547. cook = false,
  548. category = "212th",
  549. })
  550.  
  551. TEAM_327C = DarkRP.createJob("327th Commander Bly", {
  552. color = Color(234, 182, 0, 255),
  553. model = {"models/player/sgg/starwars/clonetrooper_bly.mdl"},
  554. description = [[You are the 327th Commander make sure your troops stay in their place!]],
  555. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_e11"},
  556. command = "327c",
  557. max = 1,
  558. salary = 100,
  559. admin = 0,
  560. vote = false,
  561. hasLicense = false,
  562. candemote = false,
  563. -- CustomCheck
  564. medic = false,
  565. chief = false,
  566. mayor = false,
  567. hobo = false,
  568. cook = false,
  569. category = "327th Star Corps",
  570. })
  571.  
  572. TEAM_327L = DarkRP.createJob("327th Lieutenant", {
  573. color = Color(234, 182, 0, 255),
  574. model = {"models/player/sgg/starwars/clonetrooper_327th.mdl"},
  575. description = [[You are a 327th Lieutenant make sure you follow your Commanders orders!]],
  576. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2","weapon_752_e11"},
  577. command = "327l",
  578. max = 1,
  579. salary = 100,
  580. admin = 0,
  581. vote = false,
  582. hasLicense = true,
  583. candemote = true,
  584. -- CustomCheck
  585. medic = false,
  586. chief = false,
  587. mayor = false,
  588. hobo = false,
  589. cook = false,
  590. category = "327th Star Corps",
  591. })
  592.  
  593. TEAM_327T = DarkRP.createJob("327th Trooper", {
  594. color = Color(234, 182, 0, 255),
  595. model = {"models/player/sgg/starwars/clonetrooper_327th.mdl"},
  596. description = [[You are a 327th Trooper make sure you follow your Commanders orders!]],
  597. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_752_e11"},
  598. command = "327t",
  599. max = 10,
  600. salary = 100,
  601. admin = 0,
  602. vote = false,
  603. hasLicense = false,
  604. candemote = false,
  605. -- CustomCheck
  606. medic = false,
  607. chief = false,
  608. mayor = false,
  609. hobo = false,
  610. cook = false,
  611. category = "327th Star Corps",
  612. })
  613.  
  614. TEAM_501C = DarkRP.createJob("501st Commander Appo", {
  615. color = Color(0, 71, 255, 255),
  616. model = {"models/clones/clonedavis.mdl"},
  617. description = [[You are the 501st Commander make sure your troops stay in their place!]],
  618. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  619. command = "501c",
  620. max = 1,
  621. salary = 100,
  622. admin = 0,
  623. vote = false,
  624. hasLicense = false,
  625. candemote = false,
  626. -- CustomCheck
  627. medic = false,
  628. chief = false,
  629. mayor = false,
  630. hobo = false,
  631. cook = false,
  632. category = "501st",
  633. })
  634.  
  635. TEAM_501L = DarkRP.createJob("501st Lieutenant", {
  636. color = Color(0, 71, 255, 255),
  637. model = {"models/clones/clone327.mdl"},
  638. description = [[You are a 501st Lieutenant make sure you follow your Commanders orders!]],
  639. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2","weapon_752_ihr"},
  640. command = "501l",
  641. max = 3,
  642. salary = 100,
  643. admin = 0,
  644. vote = false,
  645. hasLicense = true,
  646. candemote = true,
  647. -- CustomCheck
  648. medic = false,
  649. chief = false,
  650. mayor = false,
  651. hobo = false,
  652. cook = false,
  653. category = "501st",
  654. })
  655.  
  656. TEAM_501PC = DarkRP.createJob("501st Paratrooper Commander", {
  657. color = Color(0, 71, 255, 255),
  658. model = {"models/player/5/starwars/commander.mdl"},
  659. description = [[You are the 501st Paratrooper Commander make sure your troops stay in their place!]],
  660. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  661. command = "501pc",
  662. max = 1,
  663. salary = 100,
  664. admin = 0,
  665. vote = false,
  666. hasLicense = false,
  667. candemote = false,
  668. -- CustomCheck
  669. medic = false,
  670. chief = false,
  671. mayor = false,
  672. hobo = false,
  673. cook = false,
  674. category = "501st",
  675. })
  676.  
  677. TEAM_501PL = DarkRP.createJob("501st Paratrooper Lieutenant", {
  678. color = Color(0, 71, 255, 255),
  679. model = {"models/player/5/starwars/captain.mdl"},
  680. description = [[You are the 501st Paratrooper Lieutenant make sure you follow your Commanders orders!]],
  681. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2","weapon_752_ihr"},
  682. command = "501pl",
  683. max = 3,
  684. salary = 100,
  685. admin = 0,
  686. vote = false,
  687. hasLicense = false,
  688. candemote = false,
  689. -- CustomCheck
  690. medic = false,
  691. chief = false,
  692. mayor = false,
  693. hobo = false,
  694. cook = false,
  695. category = "501st",
  696. })
  697.  
  698. TEAM_501P = DarkRP.createJob("501st Paratrooper", {
  699. color = Color(0, 71, 255, 255),
  700. model = {"models/player/asgclonewars/trooper_501st_para/clonetrooper_501st_para.mdl"},
  701. description = [[You are the 501st Paratrooper Lieutenant make sure you follow your Commanders orders!]],
  702. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  703. command = "501p",
  704. max = 10,
  705. salary = 100,
  706. admin = 0,
  707. vote = false,
  708. hasLicense = false,
  709. candemote = false,
  710. -- CustomCheck
  711. medic = false,
  712. chief = false,
  713. mayor = false,
  714. hobo = false,
  715. cook = false,
  716. category = "501st",
  717. })
  718.  
  719. TEAM_501T = DarkRP.createJob("501st Trooper", {
  720. color = Color(0, 71, 255, 255),
  721. model = {"models/player/sgg/starwars/clonetrooper_501st.mdl"},
  722. description = [[You are a 501st Trooper make sure you follow your Commanders orders!]],
  723. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  724. command = "501t",
  725. max = 10,
  726. salary = 100,
  727. admin = 0,
  728. vote = false,
  729. hasLicense = false,
  730. candemote = false,
  731. -- CustomCheck
  732. medic = false,
  733. chief = false,
  734. mayor = false,
  735. hobo = false,
  736. cook = false,
  737. category = "501st",
  738. })
  739.  
  740. TEAM_612COMMANDER = DarkRP.createJob("612th Commander Ganch", {
  741. color = Color(255, 0, 0, 255),
  742. model = {"models/player/asgclonewars/612th_trooper/612th_trooper.mdl"},
  743. description = [[You are the commander of 612th]],
  744. weapons = {"weapon_752_dc17dual", "weapon_752_dc17m_br", "climb_swep2"},
  745. command = "commanderganch",
  746. max = 1,
  747. salary = 250,
  748. admin = 0,
  749. vote = false,
  750. hasLicense = true,
  751. candemote = false,
  752. -- CustomCheck
  753. medic = false,
  754. chief = false,
  755. mayor = false,
  756. hobo = false,
  757. cook = false,
  758. category = "612th Battalion",
  759. })
  760.  
  761. TEAM_612LIEUTENANT = DarkRP.createJob("612th Lieutenant", {
  762. color = Color(255, 0, 0, 255),
  763. model = {"models/player/asgclonewars/612th_trooper/612th_trooper.mdl"},
  764. description = [[612th lieutenant]],
  765. weapons = {"weapon_752_dc17dual", "weapon_752_dc17m_br", "climb_swep2"},
  766. command = "612lieutenant",
  767. max = 3,
  768. salary = 250,
  769. admin = 0,
  770. vote = false,
  771. hasLicense = true,
  772. candemote = false,
  773. -- CustomCheck
  774. medic = false,
  775. chief = false,
  776. mayor = false,
  777. hobo = false,
  778. cook = false,
  779. category = "612th Battalion",
  780. })
  781.  
  782. TEAM_612TROOPER = DarkRP.createJob("612th Trooper", {
  783. color = Color(255, 0, 0, 255),
  784. model = {"models/npc/asgclonewars/612th_trooper/612th_trooper2.mdl"},
  785. description = [[612th trooper]],
  786. weapons = {"weapon_752_dc17dual", "weapon_752_dc17m_br", "climb_swep2"},
  787. command = "612trooper",
  788. max = 10,
  789. salary = 250,
  790. admin = 0,
  791. vote = false,
  792. hasLicense = true,
  793. candemote = false,
  794. -- CustomCheck
  795. medic = false,
  796. chief = false,
  797. mayor = false,
  798. hobo = false,
  799. cook = false,
  800. category = "612th Battalion",
  801. })
  802.  
  803. TEAM_GMC = DarkRP.createJob("Galactic Marines Commander Bacara", {
  804. color = Color(127, 0, 0, 255),
  805. model = {"models/player/sgg/starwars/clonetrooper_bacara.mdl"},
  806. description = [[You are the Galactic Marines Commander make sure your troops stay in their place!]],
  807. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2", "weapon_hexshield_grenade"},
  808. command = "gmc",
  809. max = 1,
  810. salary = 100,
  811. admin = 0,
  812. vote = false,
  813. hasLicense = false,
  814. candemote = false,
  815. -- CustomCheck
  816. medic = false,
  817. chief = false,
  818. mayor = false,
  819. hobo = false,
  820. cook = false,
  821. category = "Galactic Marines",
  822. })
  823.  
  824. TEAM_GML = DarkRP.createJob("Galactic Marines Lieutenant", {
  825. color = Color(127, 0, 0, 255),
  826. model = {"models/player/sgg/starwars/clonetrooper_marine.mdl"},
  827. description = [[You are a Galactic Marines Lieutenant make sure you follow your Commanders orders!]],
  828. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2","weapon_hexshield_grenade"},
  829. command = "gml",
  830. max = 3,
  831. salary = 100,
  832. admin = 0,
  833. vote = false,
  834. hasLicense = true,
  835. candemote = true,
  836. -- CustomCheck
  837. medic = false,
  838. chief = false,
  839. mayor = false,
  840. hobo = false,
  841. cook = false,
  842. category = "Galactic Marines",
  843. })
  844.  
  845. TEAM_GMT = DarkRP.createJob("Galactic Marines Trooper", {
  846. color = Color(127, 0, 0, 255),
  847. model = {"models/player/sgg/starwars/clonetrooper_marine.mdl"},
  848. description = [[You are a Galactic Marines Trooper make sure you follow your Commanders orders!]],
  849. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2","weapon_hexshield_grenade"},
  850. command = "gmt",
  851. max = 10,
  852. salary = 100,
  853. admin = 0,
  854. vote = false,
  855. hasLicense = true,
  856. candemote = true,
  857. -- CustomCheck
  858. medic = false,
  859. chief = false,
  860. mayor = false,
  861. hobo = false,
  862. cook = false,
  863. category = "Galactic Marines",
  864. })
  865.  
  866. TEAM_DOOMCOMMANDER = DarkRP.createJob("Doom Commander Keen", {
  867. color = Color(60, 158, 0, 255),
  868. model = "models/player/asgclonewars/commander_doom/commander_doom.mdl",
  869. description = [[You are the Doom Squad Commander make sure your troops stay in their place!]],
  870. weapons = {"weapon_jew_dc19", "weapon_752_dc17dual", "climb_swep2","weapon_752_dlt19","weapon_752_e60r"},
  871. command = "commanderdoom",
  872. max = 1,
  873. salary = 100,
  874. admin = 0,
  875. vote = false,
  876. hasLicense = false,
  877. category = "Doom Squad",
  878. })
  879.  
  880. TEAM_DOOMLIEUTENANT = DarkRP.createJob("Doom Lieutenant", {
  881. color = Color(60, 158, 0, 255),
  882. model = {"models/player/doctorjew/doomtrooper/doomtrooper.mdl"},
  883. description = [[You are in charge of the Talon troopers. Lead them into battle!]],
  884. weapons = {"weapon_jew_dc19", "weapon_752_dc17dual", "climb_swep2","weapon_752_dlt19"},
  885. command = "doomtlie",
  886. max = 1,
  887. salary = 100,
  888. admin = 0,
  889. vote = false,
  890. hasLicense = false,
  891. candemote = false,
  892. -- CustomCheck
  893. medic = false,
  894. chief = false,
  895. mayor = false,
  896. hobo = false,
  897. cook = false,
  898. category = "Doom Squad",
  899. })
  900.  
  901. TEAM_DOOMTROOPER = DarkRP.createJob("Doom Trooper", {
  902. color = Color(60, 158, 0, 255),
  903. model = "models/player/doctorjew/doomtrooper/doomtrooper.mdl",
  904. description = [[You are a Doom Trooper. Follow orders from your higher uppers]],
  905. weapon = {"weapon_jew_dc19", "weapon_752_dc17", "climb_swep2","weapon_752_dlt19"},
  906. command = "doomtrooper",
  907. max = 15,
  908. salary = 45,
  909. admin = 0,
  910. vote = false,
  911. hasLicense = false,
  912. category = "Doom Squad",
  913. })
  914.  
  915. TEAM_DOOMTALONCOMMANDER = DarkRP.createJob("Doom Talon Commander", {
  916. color = Color(60, 158, 0, 255),
  917. model = {"models/player/asgclonewars/talon_squad/talon_officer.mdl"},
  918. description = [[You are the Doom Talon Commander make sure your troops stay in their place!]],
  919. weapons = {"weapon_jew_dc19", "weapon_752_dc17dual", "climb_swep2","weapon_752_ihr"},
  920. command = "doomtcom",
  921. max = 1,
  922. salary = 100,
  923. admin = 0,
  924. vote = false,
  925. hasLicense = false,
  926. candemote = false,
  927. -- CustomCheck
  928. medic = false,
  929. chief = false,
  930. mayor = false,
  931. hobo = false,
  932. cook = false,
  933. category = "Doom Squad",
  934. })
  935.  
  936. TEAM_DOOMTALONLIEUTENANT = DarkRP.createJob("Doom Talon Lieutenant", {
  937. color = Color(60, 158, 0, 255),
  938. model = {"models/player/asgclonewars/talon_squad/talon_trooper.mdl"},
  939. description = [[You are in charge of the Talon troopers. Lead them into battle!]],
  940. weapons = {"weapon_jew_dc19", "weapon_752_dc17dual", "climb_swep2","weapon_752_ihr"},
  941. command = "doomttlie",
  942. max = 1,
  943. salary = 100,
  944. admin = 0,
  945. vote = false,
  946. hasLicense = false,
  947. candemote = false,
  948. -- CustomCheck
  949. medic = false,
  950. chief = false,
  951. mayor = false,
  952. hobo = false,
  953. cook = false,
  954. category = "Doom Squad",
  955. })
  956.  
  957. TEAM_DOOMTALONTROOPER = DarkRP.createJob("Doom Talon Trooper", {
  958. color = Color(60, 158, 0, 255),
  959. model = {"models/player/asgclonewars/talon_squad/talon_trooper.mdl"},
  960. description = [[You are a Doom Talon Trooper. Follow orders from your higher uppers]],
  961. weapons = {"weapon_jew_dc19", "weapon_752_dc17", "climb_swep2","weapon_752_ihr"},
  962. command = "doomtt",
  963. max = 10,
  964. salary = 45,
  965. admin = 0,
  966. vote = false,
  967. hasLicense = false,
  968. candemote = false,
  969. -- CustomCheck
  970. medic = false,
  971. chief = false,
  972. mayor = false,
  973. hobo = false,
  974. cook = false,
  975. category = "Doom Squad",
  976. })
  977.  
  978. TEAM_SHADOWCOMMANDER = DarkRP.createJob("Commander Danns", {
  979. color = Color(0,0,0,255),
  980. model = {"models/player/asgclonewars/shadow_commander/shadow_commander.mdl"},
  981. description = [[You are the Shadow Squad Commaner make sure your troops stay in their place!]],
  982. weapons = {"weapon_camo", "weapon_hexshield_grenade", "weapon_jew_emp_rifle", "weapon_jew_westarm5", "climb_swep2"},
  983. command = "shadowcommander",
  984. max = 1,
  985. salary = 100,
  986. admin = 0,
  987. vote = false,
  988. hasLicense = false,
  989. category = "Shadow Squad",
  990. })
  991.  
  992. TEAM_SHADOWLIEUTENANT = DarkRP.createJob("Shadow Lieutenant", {
  993. color = Color(0,0,0,255),
  994. model = {"models/player/qew/starwars/lt.mdl"},
  995. description = [[You are a shadow lieutenant. Assist your commander and lead your men in his absence]],
  996. weapons = {"weapon_camo", "weapon_hexshield_grenade", "weapon_jew_emp_rifle", "weapon_jew_westarm5", "climb_swep2"},
  997. command = "shadowlieutenant",
  998. max = 3,
  999. salary = 75,
  1000. admin = 0,
  1001. vote = false,
  1002. hasLicense = false,
  1003. category = "Shadow Squad",
  1004. })
  1005.  
  1006. TEAM_SHADOWTROOPER = DarkRP.createJob("Shadow Trooper", {
  1007. color = Color(0, 0, 0, 255),
  1008. model = {"models/player/sgg/starwars/clonetrooper_shadow.mdl"},
  1009. description = [[You are a shadow trooper. Follow orders from your higher uppers]],
  1010. weapons = {"weapon_jew_westarm5", "weapon_jew_emp_rifle", "weapon_hexshield_grenade", "climb_swep2","weapon_camo"},
  1011. command = "shadowtrooper",
  1012. max = 10,
  1013. salary = 45,
  1014. admin = 0,
  1015. vote = false,
  1016. hasLicense = false,
  1017. category = "Shadow Squad",
  1018. })
  1019.  
  1020. TEAM_SHOCKC = DarkRP.createJob("Shock Commander Fox", {
  1021. color = Color(237, 0, 0, 255),
  1022. model = {"models/player/asgclonewars/commander_fox/commander_fox.mdl"},
  1023. description = [[You are the Shock Commander make sure your troops stay in their place!]],
  1024. weapons = {"weapon_752_dc17dual", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  1025. command = "shockc",
  1026. max = 1,
  1027. salary = 100,
  1028. admin = 0,
  1029. vote = false,
  1030. hasLicense = false,
  1031. category = "Shock",
  1032. })
  1033.  
  1034. TEAM_SHOCKL = DarkRP.createJob("Shock Lieutenant", {
  1035. color = Color(237, 0, 0, 255),
  1036. model = {"models/player/wq/starwars/combat.mdl"},
  1037. description = [[You are a Shock Lieutenant make sure you follow your Commanders orders!]],
  1038. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17", "weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  1039. command = "shockl",
  1040. max = 1,
  1041. salary = 100,
  1042. admin = 0,
  1043. vote = false,
  1044. hasLicense = true,
  1045. category = "Shock",
  1046. })
  1047.  
  1048. TEAM_SHOCKT = DarkRP.createJob("Shock Trooper", {
  1049. color = Color(237, 0, 0, 255),
  1050. model = {"models/player/sgg/starwars/clonetrooper_thire.mdl"},
  1051. description = [[You are a Shock Trooper make sure you follow your Commanders orders!]],
  1052. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17", "weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  1053. command = "shockt",
  1054. max = 10,
  1055. salary = 100,
  1056. admin = 0,
  1057. vote = false,
  1058. hasLicense = false,
  1059. candemote = false,
  1060. -- CustomCheck
  1061. medic = false,
  1062. chief = false,
  1063. mayor = false,
  1064. hobo = false,
  1065. cook = false,
  1066. category = "Shock",
  1067. })
  1068.  
  1069. TEAM_SHOCKFGC = DarkRP.createJob("Shock Fleet Commander", {
  1070. color = Color(237, 0, 0, 255),
  1071. model = {"models/player/wq/starwars/paracommander.mdl"},
  1072. description = [[You are the Shock Fleet Guard Commander make sure your troops stay in their place!]],
  1073. weapons = {"weapon_752_dc17dual", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  1074. command = "shockfgc",
  1075. max = 1,
  1076. salary = 100,
  1077. admin = 0,
  1078. vote = false,
  1079. hasLicense = false,
  1080. category = "Shock",
  1081. })
  1082.  
  1083. TEAM_SHOCKFGL = DarkRP.createJob("Shock Fleet Guard Lieutenant", {
  1084. color = Color(237, 0, 0, 255),
  1085. model = {"models/player/wq/starwars/paraelite.mdl"},
  1086. description = [[You are a Shock Fleet Guard Lieutenant make sure you follow your Commanders orders!]],
  1087. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dlt19", "weapon_752_t21", "climb_swep2","weapon_752_ihr"},
  1088. command = "shockfgl",
  1089. max = 1,
  1090. salary = 100,
  1091. admin = 0,
  1092. vote = false,
  1093. hasLicense = true,
  1094. category = "Shock",
  1095. })
  1096.  
  1097. TEAM_SHOCKFGT = DarkRP.createJob("Shock Fleet Guard Trooper", {
  1098. color = Color(237, 0, 0, 255),
  1099. model = {"models/player/wq/starwars/paratrooper.mdl"},
  1100. description = [[You are a Shock Fleet Guard Trooper make sure you follow your Commanders orders!]],
  1101. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17", "weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  1102. command = "shockfgt",
  1103. max = 10,
  1104. salary = 100,
  1105. admin = 0,
  1106. vote = false,
  1107. hasLicense = false,
  1108. category = "Shock",
  1109. })
  1110.  
  1111. TEAM_SHOCKRC = DarkRP.createJob("Shock Riot Commander", {
  1112. color = Color(237, 0, 0, 255),
  1113. model = {"models/player/wq/starwars/esharp.mdl"},
  1114. description = [[You are the Shock Riot Commander make sure your troops stay in their place!]],
  1115. weapons = {"weapon_752_dc17dual", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  1116. command = "shockrc",
  1117. max = 1,
  1118. salary = 100,
  1119. admin = 0,
  1120. vote = false,
  1121. hasLicense = false,
  1122. category = "Shock",
  1123. })
  1124.  
  1125. TEAM_SHOCKRL = DarkRP.createJob("Shock Riot Lieutenant", {
  1126. color = Color(237, 0, 0, 255),
  1127. model = {"models/player/wq/starwars/thire.mdl"},
  1128. description = [[You are a Shock Riot Lieutenant make sure you follow your Commanders orders!]],
  1129. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dlt19", "weapon_752_t21", "climb_swep2","weapon_752_ihr"},
  1130. command = "shockrl",
  1131. max = 1,
  1132. salary = 100,
  1133. admin = 0,
  1134. vote = false,
  1135. hasLicense = true,
  1136. category = "Shock",
  1137. })
  1138.  
  1139. TEAM_SHOCKRT = DarkRP.createJob("Shock Riot Trooper", {
  1140. color = Color(237, 0, 0, 255),
  1141. model = {"models/player/wq/starwars/riot.mdl"},
  1142. description = [[You are a Shock Riot Trooper make sure you follow your Commanders orders!]],
  1143. weapons = {"weapon_752_dc15s", "unarrest_stick", "arrest_stick", "stun_stick", "weapon_752_dc17", "weapon_752_dc15a", "climb_swep2","weapon_752_ihr"},
  1144. command = "shockrt",
  1145. max = 10,
  1146. salary = 100,
  1147. admin = 0,
  1148. vote = false,
  1149. hasLicense = false,
  1150. category = "Shock",
  1151. })
  1152.  
  1153. TEAM_MEDICCOMMANDER = DarkRP.createJob("Commander Bacta", {
  1154. color = Color(240, 57, 57, 255),
  1155. model = {"models/player/doctorjew/medic_trooper/medic_commander.mdl"},
  1156. description = [[You are the medic commander. Heal people.]],
  1157. weapons = {"weapon_jew_scalpelkit", "weapon_bacta_grenade", "weapon_jew_stimkit", "weapon_bactainjector", "climb_swep2", "weapon_752_dc15a", "weapon_752_dc15sa", "weapon_defibrilator"},
  1158. command = "mediccommander",
  1159. max = 1,
  1160. salary = 100,
  1161. admin = 0,
  1162. vote = false,
  1163. hasLicense = false,
  1164. category = "Medical Division",
  1165. })
  1166.  
  1167. TEAM_MEDICLIEUTENANT = DarkRP.createJob("Medic Lieutenant", {
  1168. color = Color(240, 57, 57, 255),
  1169. model = {"models/player/doctorjew/medic_trooper/medic_lieutenant.mdl"},
  1170. description = [[You are a Medic Lieutenant. Heal people.]],
  1171. weapons = {"weapon_jew_scalpelkit", "weapon_jew_stimkit", "weapon_bactainjector", "climb_swep2", "weapon_752_dc15a", "weapon_752_dc15sa", "weapon_defibrilator"},
  1172. command = "mediclieuten",
  1173. max = 3,
  1174. salary = 75,
  1175. admin = 0,
  1176. vote = false,
  1177. hasLicense = false,
  1178. category = "Medical Division",
  1179. })
  1180.  
  1181. TEAM_MEDICTROOPER = DarkRP.createJob("Medic Trooper", {
  1182. color = Color(240, 57, 57, 255),
  1183. model = {"models/player/doctorjew/medic_trooper/medic_trooper.mdl"},
  1184. description = [[You are a Medic Lieutenant. Heal people.]],
  1185. weapons = {"weapon_jew_scalpelkit", "weapon_jew_stimkit", "weapon_bactainjector", "climb_swep2", "weapon_752_dc15a", "weapon_752_dc15sa", "weapon_defibrilator"},
  1186. command = "medictrooper",
  1187. max = 10,
  1188. salary = 45,
  1189. admin = 0,
  1190. vote = false,
  1191. hasLicense = false,
  1192. category = "Medical Division",
  1193. })
  1194.  
  1195. TEAM_ARCC = DarkRP.createJob("ARC Commander Blitz", {
  1196. color = Color(252, 242, 0, 255),
  1197. model = {"models/player/sgg/starwars/clonetrooper_arc_commander.mdl"},
  1198. description = [[You are the ARC Commander make sure your troops stay in their place!]],
  1199. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  1200. command = "arcc",
  1201. max = 1,
  1202. salary = 100,
  1203. admin = 0,
  1204. vote = false,
  1205. hasLicense = false,
  1206. candemote = false,
  1207. -- CustomCheck
  1208. medic = false,
  1209. chief = false,
  1210. mayor = false,
  1211. hobo = false,
  1212. cook = false,
  1213. category = "ARC",
  1214. })
  1215.  
  1216. TEAM_ARCL = DarkRP.createJob("ARC Lieutenant", {
  1217. color = Color(252, 242, 0, 255),
  1218. model = {"models/player/sgg/starwars/clonetrooper_arc_captain.mdl"},
  1219. description = [[You are a ARC Lieutenant make sure you follow your Commanders orders!]],
  1220. weapons = {"weapon_752_dc15s","weapon_752_dlt19","weapon_752_t21", "climb_swep2"},
  1221. command = "arcl",
  1222. max = 3,
  1223. salary = 100,
  1224. admin = 0,
  1225. vote = false,
  1226. hasLicense = true,
  1227. candemote = true,
  1228. -- CustomCheck
  1229. medic = false,
  1230. chief = false,
  1231. mayor = false,
  1232. hobo = false,
  1233. cook = false,
  1234. category = "ARC",
  1235. })
  1236.  
  1237. TEAM_ARCT = DarkRP.createJob("ARC Trooper", {
  1238. color = Color(252, 242, 0, 255),
  1239. model = {"models/player/sgg/starwars/clonetrooper_arc_soldier.mdl"},
  1240. description = [[You are a ARC Trooper make sure you follow your Commanders orders!]],
  1241. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","dc17m_shotgun"},
  1242. command = "arct",
  1243. max = 10,
  1244. salary = 100,
  1245. admin = 0,
  1246. vote = false,
  1247. hasLicense = false,
  1248. candemote = false,
  1249. -- CustomCheck
  1250. medic = false,
  1251. chief = false,
  1252. mayor = false,
  1253. hobo = false,
  1254. cook = false,
  1255. category = "ARC",
  1256. })
  1257.  
  1258. TEAM_ARFC = DarkRP.createJob("ARF Commander Trauma", {
  1259. color = Color(255, 255, 255, 255),
  1260. model = {"models/player/asgclonewars/commander_trauma/commander_trauma.mdl"},
  1261. description = [[You are the ARF Commander make sure your troops stay in their place!]],
  1262. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_camo","weapon_752_ihr","dc17grapple","gauss_rifle"},
  1263. command = "arfct",
  1264. max = 1,
  1265. salary = 100,
  1266. admin = 0,
  1267. vote = false,
  1268. hasLicense = false,
  1269. candemote = false,
  1270. -- CustomCheck
  1271. medic = false,
  1272. chief = false,
  1273. mayor = false,
  1274. hobo = false,
  1275. cook = false,
  1276. category = "ARF",
  1277. })
  1278.  
  1279. TEAM_ARFL = DarkRP.createJob("ARF Lieutenant", {
  1280. color = Color(255, 255, 255, 255),
  1281. model = {"models/player/asgclonewars/commander_trauma/commander_trauma.mdl"},
  1282. description = [[You are a ARF Lieutenant make sure you follow your Commanders orders!]],
  1283. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_camo","weapon_752_ihr","dc17grapple","gauss_rifle"},
  1284. command = "arfl",
  1285. max = 3,
  1286. salary = 100,
  1287. admin = 0,
  1288. vote = false,
  1289. hasLicense = true,
  1290. candemote = true,
  1291. -- CustomCheck
  1292. medic = false,
  1293. chief = false,
  1294. mayor = false,
  1295. hobo = false,
  1296. cook = false,
  1297. category = "ARF",
  1298. })
  1299.  
  1300. TEAM_ARFH = DarkRP.createJob("ARF Heavy", {
  1301. color = Color(255, 255, 255, 255),
  1302. model = {"models/player/asgclonewars/commander_trauma/trauma_trooper.mdl"},
  1303. description = [[You are a ARF Heavy make sure you follow your Commanders orders!]],
  1304. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_camo","weapon_752_ihr","dc17grapple"},
  1305. command = "arfh",
  1306. max = 3,
  1307. salary = 100,
  1308. admin = 0,
  1309. vote = false,
  1310. hasLicense = false,
  1311. candemote = false,
  1312. -- CustomCheck
  1313. medic = false,
  1314. chief = false,
  1315. mayor = false,
  1316. hobo = false,
  1317. cook = false,
  1318. category = "ARF",
  1319. })
  1320.  
  1321. TEAM_ARFRS = DarkRP.createJob("ARF Recon Sniper", {
  1322. color = Color(255, 255, 255, 255),
  1323. model = {"models/player/asgclonewars/commander_trauma/trauma_trooper.mdl"},
  1324. description = [[You are a ARF Recon Sniper make sure you follow your Commanders orders!]],
  1325. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_camo","dc17grapple","gauss_rifle"},
  1326. command = "arfrs",
  1327. max = 3,
  1328. salary = 100,
  1329. admin = 0,
  1330. vote = false,
  1331. hasLicense = false,
  1332. candemote = false,
  1333. -- CustomCheck
  1334. medic = false,
  1335. chief = false,
  1336. mayor = false,
  1337. hobo = false,
  1338. cook = false,
  1339. category = "ARF",
  1340. })
  1341.  
  1342. TEAM_ARFT = DarkRP.createJob("ARF Trooper", {
  1343. color = Color(255, 255, 255, 255),
  1344. model = {"models/player/asgclonewars/commander_trauma/trauma_trooper.mdl"},
  1345. description = [[You are a ARF Trooper make sure you follow your Commanders orders!]],
  1346. weapons = {"weapon_752_dc15s","weapon_752_dc17","weapon_752_dc15a", "climb_swep2","weapon_camo","dc17grapple"},
  1347. command = "arft",
  1348. max = 10,
  1349. salary = 100,
  1350. admin = 0,
  1351. vote = false,
  1352. hasLicense = false,
  1353. candemote = false,
  1354. -- CustomCheck
  1355. medic = false,
  1356. chief = false,
  1357. mayor = false,
  1358. hobo = false,
  1359. cook = false,
  1360. category = "ARF",
  1361. })
  1362.  
  1363. TEAM_DELTALB = DarkRP.createJob("Delta Squad Leader Boss", {
  1364. color = Color(255, 122, 0, 255),
  1365. model = {"models/player/sgg/starwars/clone_commando_38.mdl"},
  1366. description = [[You are the Delta Squad Leader make sure your troops stay in their place!]],
  1367. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_chatterbox_minigun","dc17m_shotgun"},
  1368. command = "Deltac",
  1369. max = 1,
  1370. salary = 100,
  1371. admin = 0,
  1372. vote = false,
  1373. hasLicense = false,
  1374. candemote = false,
  1375. -- CustomCheck
  1376. medic = false,
  1377. chief = false,
  1378. mayor = false,
  1379. hobo = false,
  1380. cook = false,
  1381. category = "Delta Squad",
  1382. })
  1383.  
  1384. TEAM_DELTAMF = DarkRP.createJob("Delta Squad Member Fixer", {
  1385. color = Color(255, 122, 0, 255),
  1386. model = {"models/player/sgg/starwars/clone_commando_40.mdl"},
  1387. description = [[You are the Delta Squad Member make sure you follow your Commanders orders!]],
  1388. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr","dc17m_shotgun"},
  1389. command = "Deltamf",
  1390. max = 1,
  1391. salary = 100,
  1392. admin = 0,
  1393. vote = false,
  1394. hasLicense = false,
  1395. candemote = false,
  1396. -- CustomCheck
  1397. medic = false,
  1398. chief = false,
  1399. mayor = false,
  1400. hobo = false,
  1401. cook = false,
  1402. category = "Delta Squad",
  1403. })
  1404.  
  1405. TEAM_DELTAMS = DarkRP.createJob("Delta Squad Member Scorch", {
  1406. color = Color(255, 122, 0, 255),
  1407. model = {"models/player/sgg/starwars/clone_commando_62.mdl"},
  1408. description = [[You are the Delta Squad Leader make sure you follow your Commanders orders!]],
  1409. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_e60r","weapon_jew_det"},
  1410. command = "Deltams",
  1411. max = 1,
  1412. salary = 100,
  1413. admin = 0,
  1414. vote = false,
  1415. hasLicense = false,
  1416. candemote = false,
  1417. -- CustomCheck
  1418. medic = false,
  1419. chief = false,
  1420. mayor = false,
  1421. hobo = false,
  1422. cook = false,
  1423. category = "Delta Squad",
  1424. })
  1425.  
  1426. TEAM_DELTAS = DarkRP.createJob("Delta Squad Member Sev", {
  1427. color = Color(255, 122, 0, 255),
  1428. model = {"models/player/sgg/starwars/clone_commando_07.mdl"},
  1429. description = [[You are the Delta Squad Member make sure you follow your Commanders orders!]],
  1430. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","gauss_rifle"},
  1431. command = "Deltas",
  1432. max = 1,
  1433. salary = 100,
  1434. admin = 0,
  1435. vote = false,
  1436. hasLicense = false,
  1437. candemote = false,
  1438. -- CustomCheck
  1439. medic = false,
  1440. chief = false,
  1441. mayor = false,
  1442. hobo = false,
  1443. cook = false,
  1444. category = "Delta Squad",
  1445. })
  1446.  
  1447. TEAM_DELTAST = DarkRP.createJob("Delta Squad Trooper", {
  1448. color = Color(255, 122, 0, 255),
  1449. model = {"models/player/sgg/starwars/clone_commando.mdl"},
  1450. description = [[You are the Delta Squad Trooper make sure you follow your Commanders orders!]],
  1451. weapons = {"weapon_752_dc17dual","weapon_752_dc17m_br", "climb_swep2","weapon_752_ihr"},
  1452. command = "Deltast",
  1453. max = 1,
  1454. salary = 100,
  1455. admin = 0,
  1456. vote = false,
  1457. hasLicense = false,
  1458. candemote = false,
  1459. -- CustomCheck
  1460. medic = false,
  1461. chief = false,
  1462. mayor = false,
  1463. hobo = false,
  1464. cook = false,
  1465. category = "Delta Squad",
  1466. })
  1467.  
  1468. TEAM_JEDIA = DarkRP.createJob("Jedi Master Anakin Skywalker", {
  1469. color = Color(0, 178, 255, 255),
  1470. model = {"models/kriegsyntax/sw_752/anakin_est.mdl"},
  1471. description = [[You are Jedi Master Anakin Skywalker!]],
  1472. weapons = {"sswep_anakin","weapon_lightsaber", "climb_swep2"},
  1473. command = "jedima",
  1474. max = 1,
  1475. salary = 100,
  1476. admin = 0,
  1477. vote = false,
  1478. hasLicense = false,
  1479. candemote = false,
  1480. -- CustomCheck
  1481. medic = false,
  1482. chief = false,
  1483. mayor = false,
  1484. hobo = false,
  1485. cook = false,
  1486. category = "Jedi",
  1487. })
  1488.  
  1489. TEAM_JEDIM = DarkRP.createJob("Jedi Master Mace Windu", {
  1490. color = Color(0, 178, 255, 255),
  1491. model = {"models/ryan7259/mace_windu/mace_windu_player.mdl"},
  1492. description = [[You are Jedi Master Mace Windu!]],
  1493. weapons = {"sswep_macewindu","weapon_lightsaber", "climb_swep2"},
  1494. command = "jedimm",
  1495. max = 1,
  1496. salary = 100,
  1497. admin = 0,
  1498. vote = false,
  1499. hasLicense = false,
  1500. candemote = false,
  1501. -- CustomCheck
  1502. medic = false,
  1503. chief = false,
  1504. mayor = false,
  1505. hobo = false,
  1506. cook = false,
  1507. category = "Jedi",
  1508. })
  1509.  
  1510. TEAM_JEDIO = DarkRP.createJob("Jedi Master Obi Wan Kenobi", {
  1511. color = Color(0, 178, 255, 255),
  1512. model = {"models/kriegsyntax/sw_752/obiwan_est.mdl"},
  1513. description = [[You are Jedi Master Obi Wan Kenobi!]],
  1514. weapons = {"sswep_ben","weapon_lightsaber", "climb_swep2"},
  1515. command = "jedimo",
  1516. max = 1,
  1517. salary = 100,
  1518. admin = 0,
  1519. vote = false,
  1520. hasLicense = false,
  1521. candemote = false,
  1522. -- CustomCheck
  1523. medic = false,
  1524. chief = false,
  1525. mayor = false,
  1526. hobo = false,
  1527. cook = false,
  1528. category = "Jedi",
  1529. })
  1530.  
  1531. TEAM_JEDIP = DarkRP.createJob("Jedi Master Plo Koon", {
  1532. color = Color(0, 178, 255, 255),
  1533. model = {"models/kriegsyntax/sw_752/plokoon_est.mdl"},
  1534. description = [[You are Jedi Master Plo Koon!]],
  1535. weapons = {"weapon_lightsaber", "climb_swep2"},
  1536. command = "jedimp",
  1537. max = 1,
  1538. salary = 100,
  1539. admin = 0,
  1540. vote = false,
  1541. hasLicense = false,
  1542. candemote = false,
  1543. -- CustomCheck
  1544. medic = false,
  1545. chief = false,
  1546. mayor = false,
  1547. hobo = false,
  1548. cook = false,
  1549. category = "Jedi",
  1550. })
  1551.  
  1552. TEAM_JEDIY = DarkRP.createJob("Jedi Grandmaster Of The Order Yoda", {
  1553. color = Color(0, 178, 255, 255),
  1554. model = {"models/player/b4p/b4p_yoda.mdl"},
  1555. description = [[You are Jedi Grandmaster Of The Order Yoda!]],
  1556. weapons = {"weapon_lightsaber", "climb_swep2"},
  1557. command = "jedigmy",
  1558. max = 1,
  1559. salary = 100,
  1560. admin = 0,
  1561. vote = false,
  1562. hasLicense = false,
  1563. candemote = false,
  1564. -- CustomCheck
  1565. medic = false,
  1566. chief = false,
  1567. mayor = false,
  1568. hobo = false,
  1569. cook = false,
  1570. category = "Jedi",
  1571. })
  1572.  
  1573. TEAM_KOTA = DarkRP.createJob("Jedi Master Rahm Kota", {
  1574. color = Color(0, 178, 255, 255),
  1575. model = {"models/grealms/characters/rahmkota/kota.mdl"},
  1576. description = [[You are Jedi Master Rahm Kota!]],
  1577. weapons = {"sswep_rhamkota","weapon_lightsaber","climb_swep2"},
  1578. command = "jedimrk",
  1579. max = 1,
  1580. salary = 350,
  1581. admin = 0,
  1582. vote = false,
  1583. hasLicense = false,
  1584. candemote = false,
  1585. -- CustomCheck
  1586. medic = false,
  1587. chief = false,
  1588. mayor = false,
  1589. hobo = false,
  1590. cook = false,
  1591. category = "Jedi",
  1592. })
  1593.  
  1594. TEAM_JEDIPA = DarkRP.createJob("Jedi Padawan Ahsoka", {
  1595. color = Color(0, 178, 255, 255),
  1596. model = {"models/jazzmcfly/jka/ashoka/jka_ashoka.mdl"},
  1597. description = [[You are Jedi Padawan Ahsoka!]],
  1598. weapons = {"weapon_lightsaber", "climb_swep2"},
  1599. command = "jedipa",
  1600. max = 1,
  1601. salary = 100,
  1602. admin = 0,
  1603. vote = false,
  1604. hasLicense = false,
  1605. candemote = false,
  1606. -- CustomCheck
  1607. medic = false,
  1608. chief = false,
  1609. mayor = false,
  1610. hobo = false,
  1611. cook = false,
  1612. category = "Jedi",
  1613. })
  1614.  
  1615. TEAM_JEDIM= DarkRP.createJob("Jedi Master", {
  1616. color = Color(0, 178, 255, 255),
  1617. model = {"models/player/darth_revan.mdl"},
  1618. description = [[You are a Jedi Master!]],
  1619. weapons = {"weapon_lightsaber", "climb_swep2"},
  1620. command = "jedim",
  1621. max = 5,
  1622. salary = 100,
  1623. admin = 0,
  1624. vote = false,
  1625. hasLicense = false,
  1626. candemote = false,
  1627. -- CustomCheck
  1628. medic = false,
  1629. chief = false,
  1630. mayor = false,
  1631. hobo = false,
  1632. cook = false,
  1633. category = "Jedi",
  1634. })
  1635.  
  1636. TEAM_JEDIM= DarkRP.createJob("Jedi Knight", {
  1637. color = Color(0, 178, 255, 255),
  1638. model = {"models/player/darth_revan.mdl"},
  1639. description = [[You are a Jedi Knight!]],
  1640. weapons = {"weapon_lightsaber", "climb_swep2"},
  1641. command = "jedik",
  1642. max = 5,
  1643. salary = 100,
  1644. admin = 0,
  1645. vote = false,
  1646. hasLicense = false,
  1647. candemote = false,
  1648. -- CustomCheck
  1649. medic = false,
  1650. chief = false,
  1651. mayor = false,
  1652. hobo = false,
  1653. cook = false,
  1654. category = "Jedi",
  1655. })
  1656.  
  1657. TEAM_JEDIP= DarkRP.createJob("Jedi Padawan", {
  1658. color = Color(0, 178, 255, 255),
  1659. model = {"models/player/darth_revan.mdl"},
  1660. description = [[You are a Jedi Padawan!]],
  1661. weapons = {"weapon_lightsaber", "climb_swep2"},
  1662. command = "jedip",
  1663. max = 5,
  1664. salary = 100,
  1665. admin = 0,
  1666. vote = false,
  1667. hasLicense = false,
  1668. candemote = false,
  1669. -- CustomCheck
  1670. medic = false,
  1671. chief = false,
  1672. mayor = false,
  1673. hobo = false,
  1674. cook = false,
  1675. category = "Jedi",
  1676. })
  1677.  
  1678. TEAM_JEDIY= DarkRP.createJob("Jedi Youngling", {
  1679. color = Color(0, 178, 255, 255),
  1680. model = {"models/player/darth_revan.mdl"},
  1681. description = [[You are a Jedi Youngling!]],
  1682. weapons = {"weapon_lightsaber", "climb_swep2"},
  1683. command = "jediy",
  1684. max = 5,
  1685. salary = 100,
  1686. admin = 0,
  1687. vote = false,
  1688. hasLicense = false,
  1689. candemote = false,
  1690. -- CustomCheck
  1691. medic = false,
  1692. chief = false,
  1693. mayor = false,
  1694. hobo = false,
  1695. cook = false,
  1696. category = "Jedi",
  1697. })
  1698.  
  1699. TEAM_FLEETGA = DarkRP.createJob("Grand Admiral", {
  1700. color = Color(0, 0, 0, 255),
  1701. model = {"models/jazzmcfly/jka/palpatine/palpatine.mdl"},
  1702. description = [[You are the Grand Admiral make sure you watch over everyone!]],
  1703. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1704. command = "fleetga",
  1705. max = 1,
  1706. salary = 100,
  1707. admin = 0,
  1708. vote = false,
  1709. hasLicense = false,
  1710. candemote = false,
  1711. -- CustomCheck
  1712. medic = false,
  1713. chief = false,
  1714. mayor = false,
  1715. hobo = false,
  1716. cook = false,
  1717. category = "Navy",
  1718. })
  1719.  
  1720. TEAM_FLEETA = DarkRP.createJob("Admiral", {
  1721. color = Color(0, 0, 0, 255),
  1722. model = {"models/player/scifi_bill.mdl"},
  1723. description = [[You are the Admiral make sure you watch over everyone!]],
  1724. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1725. command = "fleeta",
  1726. max = 1,
  1727. salary = 100,
  1728. admin = 0,
  1729. vote = false,
  1730. hasLicense = false,
  1731. candemote = false,
  1732. -- CustomCheck
  1733. medic = false,
  1734. chief = false,
  1735. mayor = false,
  1736. hobo = false,
  1737. cook = false,
  1738. category = "Navy",
  1739. })
  1740.  
  1741. TEAM_FLEETVA = DarkRP.createJob("Vice Admiral", {
  1742. color = Color(0, 0, 0, 255),
  1743. model = {"models/player/scifi_plr.mdl"},
  1744. description = [[You are the Vice Admiral make sure you watch over everyone!]],
  1745. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1746. command = "fleetva",
  1747. max = 1,
  1748. salary = 100,
  1749. admin = 0,
  1750. vote = false,
  1751. hasLicense = false,
  1752. candemote = false,
  1753. -- CustomCheck
  1754. medic = false,
  1755. chief = false,
  1756. mayor = false,
  1757. hobo = false,
  1758. cook = false,
  1759. category = "Navy",
  1760. })
  1761.  
  1762. TEAM_FLEETC = DarkRP.createJob("Commandore", {
  1763. color = Color(0, 0, 0, 255),
  1764. model = {"models/player/scifi_louis.mdl"},
  1765. description = [[You are the Commandore make sure you watch over everyone!]],
  1766. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1767. command = "fleetc",
  1768. max = 1,
  1769. salary = 100,
  1770. admin = 0,
  1771. vote = false,
  1772. hasLicense = false,
  1773. candemote = false,
  1774. -- CustomCheck
  1775. medic = false,
  1776. chief = false,
  1777. mayor = false,
  1778. hobo = false,
  1779. cook = false,
  1780. category = "Navy",
  1781. })
  1782.  
  1783. TEAM_FLEETGC = DarkRP.createJob("Group Captain", {
  1784. color = Color(0, 0, 0, 255),
  1785. model = {"models/player/scifi_male_05.mdl"},
  1786. description = [[You are the Group Captain make sure you watch over everyone!]],
  1787. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1788. command = "fleetgc",
  1789. max = 1,
  1790. salary = 100,
  1791. admin = 0,
  1792. vote = false,
  1793. hasLicense = false,
  1794. candemote = false,
  1795. -- CustomCheck
  1796. medic = false,
  1797. chief = false,
  1798. mayor = false,
  1799. hobo = false,
  1800. cook = false,
  1801. category = "Navy",
  1802. })
  1803.  
  1804. TEAM_FLEETCC = DarkRP.createJob("Captain", {
  1805. color = Color(0, 0, 0, 255),
  1806. model = {"models/player/scifi_male_05.mdl"},
  1807. description = [[You are the Captain make sure you watch over everyone!]],
  1808. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1809. command = "fleetcc",
  1810. max = 2,
  1811. salary = 100,
  1812. admin = 0,
  1813. vote = false,
  1814. hasLicense = false,
  1815. candemote = false,
  1816. -- CustomCheck
  1817. medic = false,
  1818. chief = false,
  1819. mayor = false,
  1820. hobo = false,
  1821. cook = false,
  1822. category = "Navy",
  1823. })
  1824.  
  1825. TEAM_FLEETL = DarkRP.createJob("Lieutenant", {
  1826. color = Color(0, 0, 0, 255),
  1827. model = {"models/player/scifi_male_04.mdl"},
  1828. description = [[You are the Lieutenant make sure you watch over everyone!]],
  1829. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1830. command = "fleetl",
  1831. max = 3,
  1832. salary = 100,
  1833. admin = 0,
  1834. vote = false,
  1835. hasLicense = false,
  1836. candemote = false,
  1837. -- CustomCheck
  1838. medic = false,
  1839. chief = false,
  1840. mayor = false,
  1841. hobo = false,
  1842. cook = false,
  1843. category = "Navy",
  1844. })
  1845.  
  1846. TEAM_FLEETE = DarkRP.createJob("Ensign", {
  1847. color = Color(0, 0, 0, 255),
  1848. model = {"models/player/scifi_mp2.mdl"},
  1849. description = [[You are the Ensign make sure you watch over everyone!]],
  1850. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1851. command = "fleete",
  1852. max = 5,
  1853. salary = 100,
  1854. admin = 0,
  1855. vote = false,
  1856. hasLicense = false,
  1857. candemote = false,
  1858. -- CustomCheck
  1859. medic = false,
  1860. chief = false,
  1861. mayor = false,
  1862. hobo = false,
  1863. cook = false,
  1864. category = "Navy",
  1865. })
  1866.  
  1867. TEAM_FLEETPO = DarkRP.createJob("Petty Officer", {
  1868. color = Color(0, 0, 0, 255),
  1869. model = {"models/player/scifi_mp2.mdl"},
  1870. description = [[You are the Petty Officer make sure you watch over everyone!]],
  1871. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1872. command = "fleetpo",
  1873. max = 5,
  1874. salary = 100,
  1875. admin = 0,
  1876. vote = false,
  1877. hasLicense = false,
  1878. candemote = false,
  1879. -- CustomCheck
  1880. medic = false,
  1881. chief = false,
  1882. mayor = false,
  1883. hobo = false,
  1884. cook = false,
  1885. category = "Navy",
  1886. })
  1887.  
  1888. TEAM_FLEETCD = DarkRP.createJob("Cadet", {
  1889. color = Color(0, 0, 0, 255),
  1890. model = {"models/player/scifi_mp2.mdl"},
  1891. description = [[You are the Cadet make sure you watch over everyone!]],
  1892. weapons = {"weapon_752_dsbp","weapon_stunstick", "climb_swep2"},
  1893. command = "fleetcd",
  1894. max = 5,
  1895. salary = 100,
  1896. admin = 0,
  1897. vote = false,
  1898. hasLicense = false,
  1899. candemote = false,
  1900. -- CustomCheck
  1901. medic = false,
  1902. chief = false,
  1903. mayor = false,
  1904. hobo = false,
  1905. cook = false,
  1906. category = "Navy",
  1907. })
  1908.  
  1909. TEAM_OOD = DarkRP.createJob("Owner On Duty", {
  1910. color = Color(0, 0, 0, 255),
  1911. model = {"models/player/combine_super_soldier.mdl"},
  1912. description = [[You are the Owner do what ever the fuck you want!]],
  1913. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  1914. command = "ood",
  1915. max = 1,
  1916. salary = 100000,
  1917. admin = 0,
  1918. vote = false,
  1919. hasLicense = false,
  1920. candemote = false,
  1921. -- CustomCheck
  1922. medic = false,
  1923. chief = false,
  1924. mayor = false,
  1925. hobo = false,
  1926. cook = false,
  1927. category = "Staff",
  1928. })
  1929.  
  1930. TEAM_COOD = DarkRP.createJob("Co-Owner On Duty", {
  1931. color = Color(0, 0, 0, 255),
  1932. model = {"models/player/combine_super_soldier.mdl"},
  1933. description = [[You are the Co-Owner do what ever the fuck you want!]],
  1934. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  1935. command = "cood",
  1936. max = 1,
  1937. salary = 100000,
  1938. admin = 0,
  1939. vote = false,
  1940. hasLicense = false,
  1941. candemote = false,
  1942. -- CustomCheck
  1943. medic = false,
  1944. chief = false,
  1945. mayor = false,
  1946. hobo = false,
  1947. cook = false,
  1948. category = "Staff",
  1949. })
  1950.  
  1951. TEAM_HDOD = DarkRP.createJob("Head-Developer On Duty", {
  1952. color = Color(0, 0, 0, 255),
  1953. model = {"models/player/combine_super_soldier.mdl"},
  1954. description = [[You are the Head-Developer make sure your Developers are working hard and effiecently!]],
  1955. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  1956. command = "hdod",
  1957. max = 1,
  1958. salary = 100000,
  1959. admin = 0,
  1960. vote = false,
  1961. hasLicense = false,
  1962. candemote = false,
  1963. -- CustomCheck
  1964. medic = false,
  1965. chief = false,
  1966. mayor = false,
  1967. hobo = false,
  1968. cook = false,
  1969. category = "Staff",
  1970. })
  1971.  
  1972. TEAM_HAOD = DarkRP.createJob("Head-Admin On Duty", {
  1973. color = Color(0, 0, 0, 255),
  1974. model = {"models/player/combine_super_soldier.mdl"},
  1975. description = [[You are the Head-Admin Watch over Admins and Moderators!]],
  1976. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  1977. command = "haod",
  1978. max = 1,
  1979. salary = 100000,
  1980. admin = 0,
  1981. vote = false,
  1982. hasLicense = false,
  1983. candemote = false,
  1984. -- CustomCheck
  1985. medic = false,
  1986. chief = false,
  1987. mayor = false,
  1988. hobo = false,
  1989. cook = false,
  1990. category = "Staff",
  1991. })
  1992.  
  1993. TEAM_SAOD = DarkRP.createJob("Superadmin On Duty", {
  1994. color = Color(0, 0, 0, 255),
  1995. model = {"models/player/combine_super_soldier.mdl"},
  1996. description = [[You are the Superadmin watch over other Admins to make sure their not abusing!]],
  1997. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  1998. command = "saod",
  1999. max = 3,
  2000. salary = 1000,
  2001. admin = 0,
  2002. vote = false,
  2003. hasLicense = false,
  2004. candemote = false,
  2005. -- CustomCheck
  2006. medic = false,
  2007. chief = false,
  2008. mayor = false,
  2009. hobo = false,
  2010. cook = false,
  2011. category = "Staff",
  2012. })
  2013.  
  2014. TEAM_HGOD = DarkRP.createJob("Head-Gamemaster On Duty", {
  2015. color = Color(0, 0, 0, 255),
  2016. model = {"models/player/combine_super_soldier.mdl"},
  2017. description = [[You are the Head-Gamemaster you oversee all events on the server!]],
  2018. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  2019. command = "hgod",
  2020. max = 1,
  2021. salary = 1000,
  2022. admin = 0,
  2023. vote = false,
  2024. hasLicense = false,
  2025. candemote = false,
  2026. -- CustomCheck
  2027. medic = false,
  2028. chief = false,
  2029. mayor = false,
  2030. hobo = false,
  2031. cook = false,
  2032. category = "Staff",
  2033. })
  2034.  
  2035. TEAM_AOD = DarkRP.createJob("Admin On Duty", {
  2036. color = Color(0, 0, 0, 255),
  2037. model = {"models/player/combine_soldier_prisonguard.mdl"},
  2038. description = [[You are an Admin you help people that call for help in admin chat!]],
  2039. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  2040. command = "aod",
  2041. max = 3,
  2042. salary = 1000,
  2043. admin = 0,
  2044. vote = false,
  2045. hasLicense = false,
  2046. candemote = false,
  2047. -- CustomCheck
  2048. medic = false,
  2049. chief = false,
  2050. mayor = false,
  2051. hobo = false,
  2052. cook = false,
  2053. category = "Staff",
  2054. })
  2055.  
  2056. TEAM_GOD = DarkRP.createJob("Gamemaster On Duty", {
  2057. color = Color(0, 0, 0, 255),
  2058. model = {"models/player/combine_soldier.mdl"},
  2059. description = [[You are a Gamemaster you listen to the Head-Gamemaster About events!]],
  2060. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  2061. command = "god",
  2062. max = 2,
  2063. salary = 1000,
  2064. admin = 0,
  2065. vote = false,
  2066. hasLicense = false,
  2067. candemote = false,
  2068. -- CustomCheck
  2069. medic = false,
  2070. chief = false,
  2071. mayor = false,
  2072. hobo = false,
  2073. cook = false,
  2074. category = "Staff",
  2075. })
  2076.  
  2077. TEAM_MOD = DarkRP.createJob("Moderator On Duty", {
  2078. color = Color(0, 0, 0, 255),
  2079. model = {"models/player/combine_soldier.mdl"},
  2080. description = [[You are a Moderator you help people who ask in admin chat and listen to your higher staff ranks!]],
  2081. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  2082. command = "mod",
  2083. max = 5,
  2084. salary = 1000,
  2085. admin = 0,
  2086. vote = false,
  2087. hasLicense = false,
  2088. candemote = false,
  2089. -- CustomCheck
  2090. medic = false,
  2091. chief = false,
  2092. mayor = false,
  2093. hobo = false,
  2094. cook = false,
  2095. category = "Staff",
  2096. })
  2097.  
  2098. TEAM_TMOD = DarkRP.createJob("Trial-Moderator On Duty", {
  2099. color = Color(0, 0, 0, 255),
  2100. model = {"models/player/combine_soldier.mdl"},
  2101. description = [[You are a Trial-Moderator you help people who ask in admin chat and listen to your higher staff ranks!]],
  2102. weapons = {"weapon_physgun","gmod_tool","weapon_physcannon"},
  2103. command = "tmod",
  2104. max = 5,
  2105. salary = 1000,
  2106. admin = 0,
  2107. vote = false,
  2108. hasLicense = false,
  2109. candemote = false,
  2110. -- CustomCheck
  2111. medic = false,
  2112. chief = false,
  2113. mayor = false,
  2114. hobo = false,
  2115. cook = false,
  2116. category = "Staff",
  2117. })
  2118. --[[---------------------------------------------------------------------------
  2119. Define which team joining players spawn into and what team you change to if demoted
  2120. ---------------------------------------------------------------------------]]
  2121. GAMEMODE.DefaultTeam = TEAM_CADET
  2122.  
  2123.  
  2124. --[[---------------------------------------------------------------------------
  2125. Define which teams belong to civil protection
  2126. Civil protection can set warrants, make people wanted and do some other police related things
  2127. ---------------------------------------------------------------------------]]
  2128. GAMEMODE.CivilProtection = {
  2129. [TEAM_POLICE] = false,
  2130. [TEAM_CHIEF] = false,
  2131. [TEAM_MAYOR] = false,
  2132. }
  2133.  
  2134. --[[---------------------------------------------------------------------------
  2135. Jobs that are hitmen (enables the hitman menu)
  2136. ---------------------------------------------------------------------------]]
  2137. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement