Advertisement
lol12313123

Untitled

Oct 17th, 2016
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 52.56 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_CC = DarkRP.createJob("Citizen", {
  21. color = Color(221, 19, 255, 255),
  22. model = "models/player/Group01/male_09.mdl",
  23. description = [[]],
  24. weapons = {""},
  25. command = "C",
  26. max = 0,
  27. salary = 0,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = false,
  31. candemote = false,
  32. category = "Citizen"
  33. })
  34.  
  35. TEAM_B1 = DarkRP.createJob("Clone Trooper", {
  36. color = Color(17, 213, 239, 255),
  37. model = "models/player/testp2c/cgi ctp2.mdl",
  38. description = [[]],
  39. weapons = {"weapon_752_dc15a", "weapon_752_dc15s"},
  40. command = "CT",
  41. max = 0,
  42. salary = 100,
  43. admin = 0,
  44. vote = false,
  45. hasLicense = false,
  46. candemote = false,
  47. category = "Clone Trooper",
  48. customCheck = function(ply) return ply:GetUserGroup() == "Clone Trooper" or ply:IsAdmin() end,
  49. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  50. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  51. })
  52.  
  53. TEAM_B1 = DarkRP.createJob("501st Clone Trooper", {
  54. color = Color(17, 213, 239, 255),
  55. model = "models/player/501trp2/cgi_501t.mdl",
  56. description = [[]],
  57. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dlt19"},
  58. command = "501t",
  59. max = 5,
  60. salary = 100,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = false,
  64. candemote = false,
  65. category = "501st Clone Trooper",
  66. customCheck = function(ply) return ply:GetUserGroup() == "501st Clone Trooper" or ply:IsAdmin() end,
  67. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  68. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  69. })
  70.  
  71. TEAM_B1 = DarkRP.createJob("501st Commander Rex", {
  72. color = Color(17, 213, 239, 255),
  73. model = "models/player/rex2/rex ph2.mdl",
  74. description = [[]],
  75. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dh17", "weapon_752_dlt19"},
  76. command = "501cmd",
  77. max = 1,
  78. salary = 100,
  79. admin = 0,
  80. vote = false,
  81. hasLicense = false,
  82. candemote = false,
  83. category = "501st Clone Trooper",
  84. customCheck = function(ply) return ply:GetUserGroup() == "501st Commander Rex" or ply:IsAdmin() end,
  85. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  86. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  87. })
  88.  
  89. TEAM_B1 = DarkRP.createJob("212th Clone Trooper", {
  90. color = Color(17, 213, 239, 255),
  91. model = "models/player/212troo/cgi_212l.mdl",
  92. description = [[]],
  93. weapons = {"weapon_752_dc15a", "weapon_752_de10", "weapon_752_t21"},
  94. command = "212t",
  95. max = 5,
  96. salary = 100,
  97. admin = 0,
  98. vote = false,
  99. hasLicense = false,
  100. candemote = false,
  101. category = "212th Clone Trooper",
  102. customCheck = function(ply) return ply:GetUserGroup() == "212th Clone Trooper" or ply:IsAdmin() end,
  103. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  104. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  105. })
  106.  
  107. TEAM_B1 = DarkRP.createJob("212st Commander Cody", {
  108. color = Color(17, 213, 239, 255),
  109. model = "models/player/testccp2/cgi cody ph2.mdl",
  110. description = [[]],
  111. weapons = {"weapon_752_dc15a", "weapon_752_de10", "weapon_752_t21", "weapon_752_e11"},
  112. command = "212cmd",
  113. max = 1,
  114. salary = 100,
  115. admin = 0,
  116. vote = false,
  117. hasLicense = false,
  118. candemote = false,
  119. category = "212th Clone Trooper",
  120. customCheck = function(ply) return ply:GetUserGroup() == "212st Commander Cody" or ply:IsAdmin() end,
  121. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("800") ply:SetGravity(1) return CLIENT end,
  122. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  123. })
  124.  
  125. TEAM_B1 = DarkRP.createJob("187th Clone Trooper", {
  126. color = Color(17, 213, 239, 255),
  127. model = "models/player/187troo/cgi_ctp2.mdl",
  128. description = [[]],
  129. weapons = {"weapon_jew_dc19", "weapon_752_dsbp", "weapon_752_e11"},
  130. command = "187t",
  131. max = 5,
  132. salary = 100,
  133. admin = 0,
  134. vote = false,
  135. hasLicense = false,
  136. candemote = false,
  137. category = "187th Clone Trooper",
  138. customCheck = function(ply) return ply:GetUserGroup() == "187th Clone Trooper" or ply:IsAdmin() end,
  139. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  140. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  141. })
  142.  
  143. TEAM_B1 = DarkRP.createJob("187th Clone Commander", {
  144. color = Color(17, 213, 239, 255),
  145. model = "models/player/187/187commdr/187c/commander/187_commander.mdl",
  146. description = [[]],
  147. weapons = {"weapon_jew_dc19", "weapon_752_dsbp", "weapon_752_e11", "weapon_752_dh17"},
  148. command = "187cmd",
  149. max = 1,
  150. salary = 100,
  151. admin = 0,
  152. vote = false,
  153. hasLicense = false,
  154. candemote = false,
  155. category = "187th Clone Trooper",
  156. customCheck = function(ply) return ply:GetUserGroup() == "187th Clone Commander" or ply:IsAdmin() end,
  157. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("800") ply:SetGravity(1) return CLIENT end,
  158. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  159. })
  160.  
  161. TEAM_B1 = DarkRP.createJob("Boss", {
  162. color = Color(99, 99, 99, 255),
  163. model = "models/tfa/comm/gg/pm_sw_clone_commando_boss.mdl",
  164. description = [[]],
  165. weapons = {"dc17m_shotgun", "weapon_jew_dc17m_at", "weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  166. command = "B26",
  167. max = 1,
  168. salary = 100,
  169. admin = 0,
  170. vote = false,
  171. hasLicense = false,
  172. candemote = false,
  173. category = "Clone Commando",
  174. customCheck = function(ply) return ply:GetUserGroup() == "Boss" or ply:IsAdmin() end,
  175. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  176. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  177. })
  178.  
  179. TEAM_B1 = DarkRP.createJob("Scorch", {
  180. color = Color(99, 99, 99, 255),
  181. model = "models/tfa/comm/gg/pm_sw_clone_commando_scorch.mdl",
  182. description = [[]],
  183. weapons = {"weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  184. command = "B27",
  185. max = 1,
  186. salary = 100,
  187. admin = 0,
  188. vote = false,
  189. hasLicense = false,
  190. candemote = false,
  191. category = "Clone Commando",
  192. customCheck = function(ply) return ply:GetUserGroup() == "Scorch" or ply:IsAdmin() end,
  193. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  194. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  195. })
  196.  
  197. TEAM_B1 = DarkRP.createJob("Sev", {
  198. color = Color(99, 99, 99, 255),
  199. model = "models/tfa/comm/gg/pm_sw_clone_commando_sev.mdl",
  200. description = [[]],
  201. weapons = {"dc17m_shotgun", "weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br"},
  202. command = "B28",
  203. max = 1,
  204. salary = 100,
  205. admin = 0,
  206. vote = false,
  207. hasLicense = false,
  208. candemote = false,
  209. category = "Clone Commando",
  210. customCheck = function(ply) return ply:GetUserGroup() == "Sev" or ply:IsAdmin() end,
  211. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  212. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  213. })
  214.  
  215. TEAM_B1 = DarkRP.createJob("Fixer", {
  216. color = Color(99, 99, 99, 255),
  217. model = "models/tfa/comm/gg/pm_sw_clone_commando_fixer.mdl",
  218. description = [[]],
  219. weapons = {"weapon_jew_dc17m_at", "weapon_jew_det", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  220. command = "B29",
  221. max = 1,
  222. salary = 100,
  223. admin = 0,
  224. vote = false,
  225. hasLicense = false,
  226. candemote = false,
  227. category = "Clone Commando",
  228. customCheck = function(ply) return ply:GetUserGroup() == "Fixer" or ply:IsAdmin() end,
  229. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  230. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  231. })
  232.  
  233. TEAM_B1 = DarkRP.createJob("Jedi Padawan", {
  234. color = Color(99, 99, 99, 255),
  235. model = {
  236. "models/grealms/characters/padawan/padawan_09.mdl",
  237. "models/grealms/characters/padawan/padawan_01.mdl",
  238. "models/grealms/characters/padawan/padawan_03.mdl",
  239. "models/grealms/characters/padawan/padawan_04.mdl",
  240. "models/grealms/characters/padawan/padawan_05.mdl",
  241. "models/grealms/characters/padawan/padawan_06.mdl",
  242. "models/grealms/characters/padawan/padawan_07.mdl",
  243. "models/grealms/characters/padawan/padawan_08.mdl",
  244. "models/grealms/characters/padawan/padawan_02.mdl",
  245. },
  246. description = [[]],
  247. weapons = {"weapon_lightsaber"},
  248. command = "Jedipadawan",
  249. max = 5,
  250. salary = 100,
  251. admin = 0,
  252. vote = false,
  253. hasLicense = false,
  254. candemote = false,
  255. scale = 1.2,
  256. category = "Jedi",
  257. customCheck = function(ply) return ply:GetUserGroup() == "Jedi Padawan" or ply:IsAdmin() end,
  258. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("1800") ply:SetGravity(1) return CLIENT end,
  259. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) return CLIENT end
  260. })
  261.  
  262. TEAM_B1 = DarkRP.createJob("Jedi Knight", {
  263. color = Color(99, 99, 99, 255),
  264. model = {
  265. "models/grealms/characters/jedibattlelord/jedibattlelord_09.mdl",
  266. "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl",
  267. "models/grealms/characters/jedibattlelord/jedibattlelord_03.mdl",
  268. "models/grealms/characters/jedibattlelord/jedibattlelord_04.mdl",
  269. "models/grealms/characters/jedibattlelord/jedibattlelord_05.mdl",
  270. "models/grealms/characters/jedibattlelord/jedibattlelord_06.mdl",
  271. "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl",
  272. "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl",
  273. "models/grealms/characters/jedibattlelord/jedibattlelord_02.mdl",
  274. },
  275. description = [[]],
  276. weapons = {"weapon_lightsaber"},
  277. command = "jediknight",
  278. max = 5,
  279. salary = 100,
  280. admin = 0,
  281. vote = false,
  282. hasLicense = false,
  283. candemote = false,
  284. scale = 1.2,
  285. category = "Jedi",
  286. customCheck = function(ply) return ply:GetUserGroup() == "Jedi Knight" or ply:IsAdmin() end,
  287. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  288. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 430) return CLIENT end
  289. })
  290.  
  291. TEAM_B1 = DarkRP.createJob("Jedi Master", {
  292. color = Color(99, 99, 99, 255),
  293. model = {
  294. "models/grealms/characters/jedirobes/jedirobes_09.mdl",
  295. "models/grealms/characters/jedirobes/jedirobes_01.mdl",
  296. "models/grealms/characters/jedirobes/jedirobes_03.mdl",
  297. "models/grealms/characters/jedirobes/jedirobes_04.mdl",
  298. "models/grealms/characters/jedirobes/jedirobes_05.mdl",
  299. "models/grealms/characters/jedirobes/jedirobes_06.mdl",
  300. "models/grealms/characters/jedirobes/jedirobes_07.mdl",
  301. "models/grealms/characters/jedirobes/jedirobes_08.mdl",
  302. "models/grealms/characters/jedirobes/jedirobes_02.mdl",
  303. },
  304. description = [[]],
  305. weapons = {"weapon_lightsaber"},
  306. command = "jedimaster",
  307. max = 5,
  308. salary = 100,
  309. admin = 0,
  310. vote = false,
  311. hasLicense = false,
  312. candemote = false,
  313. scale = 1.2,
  314. category = "Jedi",
  315. customCheck = function(ply) return ply:GetUserGroup() == "Jedi Master" or ply:IsAdmin() end,
  316. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  317. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  318. })
  319.  
  320. TEAM_B1 = DarkRP.createJob("Jedi Temple Guard", {
  321. color = Color(99, 99, 99, 255),
  322. model = "models/jazzmcfly/jka/jtg/jtg.mdl",
  323. description = [[]],
  324. weapons = {"weapon_lightsaber"},
  325. command = "JTG",
  326. max = 4,
  327. salary = 100,
  328. admin = 0,
  329. vote = false,
  330. hasLicense = false,
  331. candemote = false,
  332. category = "Jedi",
  333. customCheck = function(ply) return ply:GetUserGroup() == "Jedi Temple Guard" or ply:IsAdmin() end,
  334. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  335. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  336. })
  337.  
  338. TEAM_B1 = DarkRP.createJob("Grandmaster Yoda", {
  339. color = Color(99, 99, 99, 255),
  340. model = "models/tfa/comm/gg/pm_sw_yodanojig.mdl",
  341. description = [[]],
  342. modelScale = 0.6
  343. weapons = {"weapon_lightsaber"},
  344. command = "Yoda",
  345. max = 1,
  346. salary = 100,
  347. admin = 0,
  348. vote = false,
  349. hasLicense = false,
  350. candemote = false,
  351. category = "Jedi",
  352. customCheck = function(ply) return ply:GetUserGroup() == "Yoda" or ply:IsAdmin() end,
  353. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("4000") ply:SetGravity(1) return CLIENT end,
  354. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  355. })
  356.  
  357. TEAM_B1 = DarkRP.createJob("Obiwan Kenobi", {
  358. color = Color(99, 99, 99, 255),
  359. model = "models/tfa/comm/gg/pm_sw_obiwan_alt.mdl",
  360. description = [[]],
  361. weapons = {"weapon_lightsaber"},
  362. command = "obiwan",
  363. max = 1,
  364. salary = 100,
  365. admin = 0,
  366. vote = false,
  367. hasLicense = false,
  368. candemote = false,
  369. category = "Jedi",
  370. customCheck = function(ply) return ply:GetUserGroup() == "Obiwan" or ply:IsAdmin() end,
  371. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  372. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  373. })
  374.  
  375. TEAM_B1 = DarkRP.createJob("Anakin Skywalker", {
  376. color = Color(99, 99, 99, 255),
  377. model = "models/tfa/comm/gg/pm_sw_anakin_v2.mdl",
  378. description = [[]],
  379. weapons = {"weapon_lightsaber"},
  380. command = "anakin",
  381. max = 1,
  382. salary = 100,
  383. admin = 0,
  384. vote = false,
  385. hasLicense = false,
  386. candemote = false,
  387. category = "Jedi",
  388. customCheck = function(ply) return ply:GetUserGroup() == "Anakin" or ply:IsAdmin() end,
  389. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  390. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  391. })
  392.  
  393. TEAM_B1 = DarkRP.createJob("Ahsoka Tano", {
  394. color = Color(99, 99, 99, 255),
  395. model = "models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl",
  396. description = [[]],
  397. weapons = {"weapon_lightsaber"},
  398. command = "ahsoka",
  399. max = 1,
  400. salary = 100,
  401. admin = 0,
  402. vote = false,
  403. hasLicense = false,
  404. candemote = false,
  405. category = "Jedi",
  406. customCheck = function(ply) return ply:GetUserGroup() == "Ahsoka" or ply:IsAdmin() end,
  407. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  408. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  409. })
  410.  
  411. TEAM_B1 = DarkRP.createJob("Kit Fisto", {
  412. color = Color(99, 99, 99, 255),
  413. model = "models/tfa/comm/gg/pm_sw_fisto.mdl",
  414. description = [[]],
  415. weapons = {"weapon_lightsaber"},
  416. command = "fisto",
  417. max = 1,
  418. salary = 100,
  419. admin = 0,
  420. vote = false,
  421. hasLicense = false,
  422. candemote = false,
  423. category = "Jedi",
  424. customCheck = function(ply) return ply:GetUserGroup() == "Fisto" or ply:IsAdmin() end,
  425. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  426. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  427. })
  428.  
  429. TEAM_B1 = DarkRP.createJob("Mace Windu", {
  430. color = Color(99, 99, 99, 255),
  431. model = "models/player/mace/mace.mdl",
  432. description = [[]],
  433. weapons = {"weapon_lightsaber"},
  434. command = "windu",
  435. max = 1,
  436. salary = 100,
  437. admin = 0,
  438. vote = false,
  439. hasLicense = false,
  440. candemote = false,
  441. category = "Jedi",
  442. customCheck = function(ply) return ply:GetUserGroup() == "Windu" or ply:IsAdmin() end,
  443. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  444. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  445. })
  446.  
  447. TEAM_B1 = DarkRP.createJob("Aayala Secura", {
  448. color = Color(99, 99, 99, 255),
  449. model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
  450. description = [[]],
  451. weapons = {"weapon_lightsaber"},
  452. command = "aayla",
  453. max = 1,
  454. salary = 100,
  455. admin = 0,
  456. vote = false,
  457. hasLicense = false,
  458. candemote = false,
  459. category = "Jedi",
  460. customCheck = function(ply) return ply:GetUserGroup() == "Aayala" or ply:IsAdmin() end,
  461. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  462. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  463. })
  464.  
  465. TEAM_B1 = DarkRP.createJob("B1 Battle Droid", {
  466. color = Color(99, 99, 99, 255),
  467. model = "models/tfa/comm/gg/pm_sw_droid_b1.mdl",
  468. description = [[]],
  469. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  470. command = "B1",
  471. max = 0,
  472. salary = 100,
  473. admin = 0,
  474. vote = false,
  475. hasLicense = false,
  476. candemote = false,
  477. category = "Battledroid",
  478. customCheck = function(ply) return ply:GetUserGroup() == "B1 Battle Droid" or ply:IsAdmin() end,
  479. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  480. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  481. })
  482.  
  483. TEAM_B1 = DarkRP.createJob("B1 General Droid", {
  484. color = Color(99, 99, 99, 255),
  485. model = "models/tfa/comm/gg/pm_sw_g_droid_b1.mdl",
  486. description = [[]],
  487. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  488. command = "B1G",
  489. max = 1,
  490. salary = 100,
  491. admin = 0,
  492. vote = false,
  493. hasLicense = false,
  494. candemote = false,
  495. category = "Battledroid",
  496. customCheck = function(ply) return ply:GetUserGroup() == "B1 OOM Commander Droid" or ply:IsAdmin() end,
  497. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  498. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  499. })
  500.  
  501. TEAM_B1 = DarkRP.createJob("B1 SSA - Battle Droid", {
  502. color = Color(99, 99, 99, 255),
  503. model = "models/player/sgg/starwars/battledroid_security.mdl",
  504. description = [[]],
  505. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  506. command = "SSA",
  507. max = 5,
  508. salary = 100,
  509. admin = 0,
  510. vote = false,
  511. hasLicense = false,
  512. candemote = false,
  513. category = "Security Droid",
  514. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Battle Droid" or ply:IsAdmin() end,
  515. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  516. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  517. })
  518.  
  519. TEAM_B1 = DarkRP.createJob("B1 SSA - Commander Droid", {
  520. color = Color(99, 99, 99, 255),
  521. model = "models/player/deckboy/battle_droid_pm/assault_droid_pm.mdl",
  522. description = [[]],
  523. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  524. command = "SSAC",
  525. max = 5,
  526. salary = 100,
  527. admin = 0,
  528. vote = false,
  529. hasLicense = false,
  530. candemote = false,
  531. category = "Security Droid",
  532. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Commander Droid" or ply:IsAdmin() end,
  533. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  534. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  535. })
  536.  
  537. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid", {
  538. color = Color(99, 99, 99, 255),
  539. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  540. description = [[]],
  541. weapons = {"b2_gun"},
  542. command = "SBD",
  543. max = 5,
  544. salary = 100,
  545. admin = 0,
  546. vote = false,
  547. hasLicense = false,
  548. candemote = false,
  549. category = "Super Battle Droid",
  550. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid" or ply:IsAdmin() end,
  551. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  552. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  553. })
  554.  
  555. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid Commander", {
  556. color = Color(99, 99, 99, 255),
  557. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  558. description = [[]],
  559. weapons = {"b2_gun", "b2_cannon"},
  560. command = "SBDC",
  561. max = 5,
  562. salary = 100,
  563. admin = 0,
  564. vote = false,
  565. hasLicense = false,
  566. candemote = false,
  567. category = "Super Battle Droid",
  568. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid Commander" or ply:IsAdmin() end,
  569. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  570. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  571. })
  572.  
  573. TEAM_B1 = DarkRP.createJob("Commando Droid", {
  574. color = Color(99, 99, 99, 255),
  575. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
  576. description = [[]],
  577. weapons = {"weapon_jew_emp_rifle", "weapon_jew_x8_night"},
  578. command = "CD",
  579. max = 5,
  580. salary = 100,
  581. admin = 0,
  582. vote = false,
  583. hasLicense = false,
  584. candemote = false,
  585. category = "Commando Droids",
  586. customCheck = function(ply) return ply:GetUserGroup() == "Commando Droid" or ply:IsAdmin() end,
  587. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("800") ply:SetGravity(1) return CLIENT end,
  588. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  589. })
  590.  
  591. TEAM_B1 = DarkRP.createJob("B1 - Commando Droid Commander", {
  592. color = Color(99, 99, 99, 255),
  593. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
  594. description = [[]],
  595. weapons = {"weapon_jew_emp_rifle", "weapon_jew_x8_night"},
  596. command = "CDC",
  597. max = 5,
  598. salary = 100,
  599. admin = 0,
  600. vote = false,
  601. hasLicense = false,
  602. candemote = false,
  603. category = "Commando Droids",
  604. customCheck = function(ply) return ply:GetUserGroup() == "Commando Droid Commander" or ply:IsAdmin() end,
  605. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  606. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  607. })
  608.  
  609. TEAM_B1 = DarkRP.createJob("Sith Apprentice", {
  610. color = Color(99, 99, 99, 255),
  611. model = {
  612. "models/player/x227man/mkotor_9.mdl",
  613. "models/player/x227man/mkotor_2.mdl",
  614. "models/player/x227man/mkotor_3.mdl",
  615. "models/player/x227man/mkotor_4.mdl",
  616. "models/player/x227man/mkotor_5.mdl",
  617. "models/player/x227man/mkotor_6.mdl",
  618. "models/player/x227man/mkotor_7.mdl",
  619. "models/player/x227man/mkotor_8.mdl",
  620. "models/player/x227man/mkotor_1.mdl",
  621. },
  622. description = [[]],
  623. weapons = {"weapon_lightsaber"},
  624. command = "sithapprentice",
  625. max = 5,
  626. salary = 100,
  627. admin = 0,
  628. vote = false,
  629. hasLicense = false,
  630. candemote = false,
  631. scale = 1.2,
  632. category = "Sith",
  633. customCheck = function(ply) return ply:GetUserGroup() == "Sith Apprentice" or ply:IsAdmin() end,
  634. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("1800") ply:SetGravity(1) return CLIENT end,
  635. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  636. })
  637.  
  638. TEAM_B1 = DarkRP.createJob("Sith Knight", {
  639. color = Color(99, 99, 99, 255),
  640. model = {
  641. "models/grealms/characters/jedibattlelord/jedibattlelord_09.mdl",
  642. "models/grealms/characters/jedibattlelord/jedibattlelord_02.mdl",
  643. "models/grealms/characters/jedibattlelord/jedibattlelord_03.mdl",
  644. "models/grealms/characters/jedibattlelord/jedibattlelord_04.mdl",
  645. "models/grealms/characters/jedibattlelord/jedibattlelord_05.mdl",
  646. "models/grealms/characters/jedibattlelord/jedibattlelord_06.mdl",
  647. "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl",
  648. "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl",
  649. "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl",
  650. "models/grealms/characters/jedibattlelord/jedibattlelord.mdl",
  651. },
  652. description = [[]],
  653. weapons = {"weapon_lightsaber"},
  654. command = "sithknight",
  655. max = 5,
  656. salary = 100,
  657. admin = 0,
  658. vote = false,
  659. hasLicense = false,
  660. candemote = false,
  661. scale = 1.2,
  662. category = "Sith",
  663. customCheck = function(ply) return ply:GetUserGroup() == "Sith Knight" or ply:IsAdmin() end,
  664. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetBodygroup(1,2) ply:SetGravity(1) return CLIENT end,
  665. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  666. })
  667.  
  668. TEAM_B1 = DarkRP.createJob("Sith Master", {
  669. color = Color(99, 99, 99, 255),
  670. model = {"models/grealms/characters/darkjedi/darkjedi.mdl",},
  671. description = [[]],
  672. weapons = {"weapon_lightsaber"},
  673. command = "sithmaster",
  674. max = 5,
  675. salary = 100,
  676. admin = 0,
  677. vote = false,
  678. hasLicense = false,
  679. candemote = false,
  680. scale = 1.2,
  681. category = "Sith",
  682. customCheck = function(ply) return ply:GetUserGroup() == "Sith Master" or ply:IsAdmin() end,
  683. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  684. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  685. })
  686.  
  687. TEAM_B1 = DarkRP.createJob("Dooku", {
  688. color = Color(99, 99, 99, 255),
  689. model = "models/tfa/comm/gg/pm_sw_dooku.mdl",
  690. description = [[]],
  691. weapons = {"weapon_lightsaber"},
  692. command = "dooku",
  693. max = 1,
  694. salary = 100,
  695. admin = 0,
  696. vote = false,
  697. hasLicense = false,
  698. candemote = false,
  699. scale = 1.2,
  700. category = "Sith",
  701. customCheck = function(ply) return ply:GetUserGroup() == "Dooku" or ply:IsAdmin() end,
  702. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  703. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  704. })
  705.  
  706. TEAM_B1 = DarkRP.createJob("Maul", {
  707. color = Color(99, 99, 99, 255),
  708. model = "models/tfa/comm/gg/pm_sw_cyberdarthmaul.mdl",
  709. description = [[]],
  710. weapons = {"weapon_lightsaber"},
  711. command = "maul",
  712. max = 1,
  713. salary = 100,
  714. admin = 0,
  715. vote = false,
  716. hasLicense = false,
  717. candemote = false,
  718. scale = 1.2,
  719. category = "Sith",
  720. customCheck = function(ply) return ply:GetUserGroup() == "Maul" or ply:IsAdmin() end,
  721. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  722. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  723. })
  724.  
  725. TEAM_B1 = DarkRP.createJob("Grievous", {
  726. color = Color(99, 99, 99, 255),
  727. model = "models/tfa/comm/gg/pm_sw_grievous.mdl",
  728. description = [[]],
  729. weapons = {"weapon_lightsaber"},
  730. command = "grievous",
  731. max = 1,
  732. salary = 100,
  733. admin = 0,
  734. vote = false,
  735. hasLicense = false,
  736. candemote = false,
  737. category = "Sith",
  738. customCheck = function(ply) return ply:GetUserGroup() == "Grievous" or ply:IsAdmin() end,
  739. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  740. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  741. })
  742.  
  743. TEAM_MOB = DarkRP.createJob("Death Watch Soldier", {
  744. color = Color(141, 87, 255, 255),
  745. model = "models/tfa/comm/gg/deathwatch_bf2/soldier_helmet.mdl",
  746. description = [[]],
  747. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook"},
  748. command = "DWS",
  749. max = 5,
  750. salary = 100,
  751. admin = 0,
  752. vote = false,
  753. hasLicense = false,
  754. candemote = false,
  755. category = "Death Watch",
  756. customCheck = function(ply) return ply:GetUserGroup() == "Death Watch Soldier" or ply:IsAdmin() end,
  757. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  758. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  759. })
  760.  
  761. TEAM_MOB = DarkRP.createJob("Death Watch Lieutenant", {
  762. color = Color(141, 87, 255, 255),
  763. model = "models/tfa/comm/gg/deathwatch_bf2/lieutenant_helmet.mdl",
  764. description = [[]],
  765. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook"},
  766. command = "DWL",
  767. max = 2,
  768. salary = 100,
  769. admin = 0,
  770. vote = false,
  771. hasLicense = false,
  772. candemote = false,
  773. category = "Death Watch",
  774. customCheck = function(ply) return ply:GetUserGroup() == "Death Watch Lieutenant" or ply:IsAdmin() end,
  775. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("500") ply:SetGravity(1) return CLIENT end,
  776. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  777. })
  778.  
  779. TEAM_MOB = DarkRP.createJob("Bo-Katan", {
  780. color = Color(141, 87, 255, 255),
  781. model = "models/tfa/comm/gg/deathwatch_bf2/trooper_helmet.mdl",
  782. description = [[]],
  783. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "weapon_752_dc17m_br"},
  784. command = "DWBK",
  785. max = 1,
  786. salary = 100,
  787. admin = 0,
  788. vote = false,
  789. hasLicense = false,
  790. candemote = false,
  791. category = "Death Watch",
  792. customCheck = function(ply) return ply:GetUserGroup() == "Bo-Katan" or ply:IsAdmin() end,
  793. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  794. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  795. })
  796.  
  797. TEAM_MOB = DarkRP.createJob("Pre Vizsla", {
  798. color = Color(141, 87, 255, 255),
  799. model = "models/tfa/comm/gg/deathwatch_bf2/commander_helmet.mdl",
  800. description = [[]],
  801. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook", "weapon_lightsaber"},
  802. command = "DWPV",
  803. max = 1,
  804. salary = 100,
  805. admin = 0,
  806. vote = false,
  807. hasLicense = false,
  808. candemote = false,
  809. category = "Death Watch",
  810. customCheck = function(ply) return ply:GetUserGroup() == "Pre Vizsla" or ply:IsAdmin() end,
  811. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1500") ply:SetGravity(1) return CLIENT end,
  812. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  813. })
  814.  
  815. TEAM_B1 = DarkRP.createJob("Zakuul Knight", {
  816. color = Color(99, 99, 99, 255),
  817. model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
  818. description = [[]],
  819. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  820. command = "zk",
  821. max = 8,
  822. salary = 100,
  823. admin = 0,
  824. vote = false,
  825. hasLicense = false,
  826. candemote = false,
  827. category = "Eternal Empire",
  828. customCheck = function(ply) return ply:GetUserGroup() == "Zakuul Knight" or ply:IsAdmin() end,
  829. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("600") ply:SetGravity(1) return CLIENT end,
  830. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  831. })
  832.  
  833. TEAM_B1 = DarkRP.createJob("Zakuul Knight Commander", {
  834. color = Color(99, 99, 99, 255),
  835. model = "models/grealms/characters/darktrooper/darktrooper.mdl",
  836. description = [[]],
  837. weapons = {"weapon_lightsaber", "weapon_752_ihr", "weapon_lasermgun"},
  838. command = "zkc",
  839. max = 1,
  840. salary = 100,
  841. admin = 0,
  842. vote = false,
  843. hasLicense = false,
  844. candemote = false,
  845. category = "Eternal Empire",
  846. customCheck = function(ply) return ply:GetUserGroup() == "Zakuul Knight Commander" or ply:IsAdmin() end,
  847. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("1300") ply:SetGravity(1) return CLIENT end,
  848. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  849. })
  850.  
  851. TEAM_B1 = DarkRP.createJob("Prince Arcann", {
  852. color = Color(99, 99, 99, 255),
  853. model = "models/grealms/twins/twins.mdl",
  854. description = [[]],
  855. weapons = {"weapon_lightsaber"},
  856. command = "pa",
  857. max = 1,
  858. salary = 100,
  859. admin = 0,
  860. vote = false,
  861. hasLicense = false,
  862. candemote = false,
  863. category = "Eternal Empire",
  864. customCheck = function(ply) return ply:GetUserGroup() == "Prince Arcann" or ply:IsAdmin() end,
  865. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  866. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  867. })
  868.  
  869. TEAM_B1 = DarkRP.createJob("Prince Thexan", {
  870. color = Color(99, 99, 99, 255),
  871. model = "models/grealms/twins/twins_black/twins_black.mdl",
  872. description = [[]],
  873. weapons = {"weapon_lightsaber"},
  874. command = "pt",
  875. max = 1,
  876. salary = 100,
  877. admin = 0,
  878. vote = false,
  879. hasLicense = false,
  880. candemote = false,
  881. category = "Eternal Empire",
  882. customCheck = function(ply) return ply:GetUserGroup() == "Prince Thexan" or ply:IsAdmin() end,
  883. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  884. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  885. })
  886.  
  887. TEAM_B1 = DarkRP.createJob("Emperor Valkolorian", {
  888. color = Color(99, 99, 99, 255),
  889. model = "models/grealms/characters/valkorian/valkorian.mdl",
  890. description = [[]],
  891. weapons = {"weapon_lightsaber"},
  892. command = "ev",
  893. max = 1,
  894. salary = 100,
  895. admin = 0,
  896. vote = false,
  897. hasLicense = false,
  898. candemote = false,
  899. category = "Eternal Empire",
  900. customCheck = function(ply) return ply:GetUserGroup() == "Emperor Valkolorian" or ply:IsAdmin() end,
  901. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  902. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  903. })
  904.  
  905. TEAM_B1 = DarkRP.createJob("AE Trooper", {
  906. color = Color(99, 99, 99, 255),
  907. model = "models/grealms/characters/imperial/imperial.mdl",
  908. description = [[]],
  909. weapons = {"weapon_752_ihr", "weapon_752_dsbp"},
  910. command = "aetrooper",
  911. max = 8,
  912. salary = 100,
  913. admin = 0,
  914. vote = false,
  915. hasLicense = false,
  916. candemote = false,
  917. category = "Ancient Empire",
  918. customCheck = function(ply) return ply:GetUserGroup() == "Imperial Trooper" or ply:IsAdmin() end,
  919. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  920. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  921. })
  922.  
  923. TEAM_B1 = DarkRP.createJob("Ravenite", {
  924. color = Color(99, 99, 99, 255),
  925. model = "models/grealms/characters/revan/revan.mdl",
  926. description = [[]],
  927. weapons = {"weapon_lightsaber"},
  928. command = "ravenite",
  929. max = 8,
  930. salary = 100,
  931. admin = 0,
  932. vote = false,
  933. hasLicense = false,
  934. candemote = false,
  935. category = "Ancient Empire",
  936. customCheck = function(ply) return ply:GetUserGroup() == "Ravenite" or ply:IsAdmin() end,
  937. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  938. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  939. })
  940.  
  941. TEAM_B1 = DarkRP.createJob("Raven", {
  942. color = Color(99, 99, 99, 255),
  943. model = "models/grealms/characters/revan_real/revan.mdl",
  944. description = [[]],
  945. weapons = {"weapon_lightsaber"},
  946. command = "raven",
  947. max = 1,
  948. salary = 100,
  949. admin = 0,
  950. vote = false,
  951. hasLicense = false,
  952. candemote = false,
  953. category = "Ancient Empire",
  954. customCheck = function(ply) return ply:GetUserGroup() == "Raven" or ply:IsAdmin() end,
  955. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  956. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  957. })
  958.  
  959. TEAM_B1 = DarkRP.createJob("Darth Malgus", {
  960. color = Color(99, 99, 99, 255),
  961. model = "models/grealms/characters/malgus/malgus.mdl",
  962. description = [[]],
  963. weapons = {"weapon_lightsaber"},
  964. command = "DM",
  965. max = 1,
  966. salary = 100,
  967. admin = 0,
  968. vote = false,
  969. hasLicense = false,
  970. candemote = false,
  971. category = "Ancient Empire",
  972. customCheck = function(ply) return ply:GetUserGroup() == "Darth Malgus" or ply:IsAdmin() end,
  973. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  974. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  975. })
  976.  
  977. TEAM_B1 = DarkRP.createJob("Darth Sion", {
  978. color = Color(99, 99, 99, 255),
  979. model = "models/grealms/characters/darthsion/sion.mdl",
  980. description = [[]],
  981. weapons = {"weapon_lightsaber"},
  982. command = "ds",
  983. max = 1,
  984. salary = 100,
  985. admin = 0,
  986. vote = false,
  987. hasLicense = false,
  988. candemote = false,
  989. category = "Ancient Empire",
  990. customCheck = function(ply) return ply:GetUserGroup() == "Darth Sion" or ply:IsAdmin() end,
  991. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  992. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  993. })
  994.  
  995. TEAM_B1 = DarkRP.createJob("Sith Hunter", {
  996. color = Color(99, 99, 99, 255),
  997. model = "models/jazzmcfly/jka/eg5/jka_eg5.mdl",
  998. description = [[]],
  999. weapons = {"weapon_lightsaber", "realistic_hook", "weapon_752_ee3"},
  1000. command = "SHunter",
  1001. max = 1,
  1002. salary = 100,
  1003. admin = 0,
  1004. vote = false,
  1005. hasLicense = false,
  1006. candemote = false,
  1007. category = "Custom Jobs",
  1008. customCheck = function(ply) return ply:GetUserGroup() == "Sith Hunter" or ply:IsAdmin() end,
  1009. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1010. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1011. })
  1012.  
  1013. TEAM_B1 = DarkRP.createJob("Darth Jadus", {
  1014. color = Color(99, 99, 99, 255),
  1015. model = "models/grealms/characters/darthjadus/darthjadus.mdl",
  1016. description = [[]],
  1017. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  1018. command = "jadus",
  1019. max = 1,
  1020. salary = 100,
  1021. admin = 0,
  1022. vote = false,
  1023. hasLicense = false,
  1024. candemote = false,
  1025. category = "Custom Jobs",
  1026. customCheck = function(ply) return ply:GetUserGroup() == "Darth Jadus" or ply:IsAdmin() end,
  1027. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1028. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1029. })
  1030.  
  1031. TEAM_B1 = DarkRP.createJob("Darth Marr", {
  1032. color = Color(99, 99, 99, 255),
  1033. model = "models/grealms/characters/darthmarr/darthmarr.mdl",
  1034. description = [[]],
  1035. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  1036. command = "DMar",
  1037. max = 1,
  1038. salary = 100,
  1039. admin = 0,
  1040. vote = false,
  1041. hasLicense = false,
  1042. candemote = false,
  1043. category = "Custom Jobs",
  1044. customCheck = function(ply) return ply:GetUserGroup() == "HK - 51" or ply:IsAdmin() end,
  1045. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1046. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1047. })
  1048.  
  1049. TEAM_B1 = DarkRP.createJob("Star Killer", {
  1050. color = Color(99, 99, 99, 255),
  1051. model = "models/grealms/characters/ultimategood/ultimategood.mdl",
  1052. description = [[]],
  1053. weapons = {"weapon_lightsaber", "weapon_jew_x8_night"},
  1054. command = "SK",
  1055. max = 1,
  1056. salary = 100,
  1057. admin = 0,
  1058. vote = false,
  1059. hasLicense = false,
  1060. candemote = false,
  1061. category = "Custom Jobs",
  1062. customCheck = function(ply) return ply:GetUserGroup() == "Star Killer" or ply:IsAdmin() end,
  1063. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1064. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1065. })
  1066.  
  1067. TEAM_B1 = DarkRP.createJob("Star Killer Apprentice", {
  1068. color = Color(99, 99, 99, 255),
  1069. model = "models/grealms/characters/experimentaljedi/experimentaljedi.mdl",
  1070. description = [[]],
  1071. weapons = {"weapon_lightsaber"},
  1072. command = "SKA",
  1073. max = 3,
  1074. salary = 100,
  1075. admin = 0,
  1076. vote = false,
  1077. hasLicense = false,
  1078. candemote = false,
  1079. category = "Custom Jobs",
  1080. customCheck = function(ply) return ply:GetUserGroup() == "Star Killer Apprentice" or ply:IsAdmin() end,
  1081. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  1082. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1083. })
  1084.  
  1085. TEAM_B1 = DarkRP.createJob("Sith Assassin", {
  1086. color = Color(99, 99, 99, 255),
  1087. model = "models/syntheticgaming/characters/sithassassin/sithassassin.mdl",
  1088. description = [[]],
  1089. weapons = {"weapon_lightsaber", "realistic_hook", "weapon_752_ee3"},
  1090. command = "Sithass",
  1091. max = 1,
  1092. salary = 100,
  1093. admin = 0,
  1094. vote = false,
  1095. hasLicense = false,
  1096. candemote = false,
  1097. category = "Custom Jobs",
  1098. customCheck = function(ply) return ply:GetUserGroup() == "Sith Assassin" or ply:IsAdmin() end,
  1099. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  1100. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1101. })
  1102.  
  1103. --[[---------------------------------------------------------------------------
  1104. Define which team joining players spawn into and what team you change to if demoted
  1105. ---------------------------------------------------------------------------]]
  1106. GAMEMODE.DefaultTeam = TEAM_CC
  1107.  
  1108. --[[---------------------------------------------------------------------------
  1109. Jobs that are hitmen (enables the hitman menu)
  1110. ---------------------------------------------------------------------------]]
  1111. DarkRP.addHitmanTeam(TEAM_MOB)
  1112.  
  1113. DarkRP.createCategory{
  1114. name = "Citizen",
  1115. categorises = "jobs",
  1116. startExpanded = true,
  1117. color = Color(0, 107, 0, 255),
  1118. canSee = fp{fn.Id, true},
  1119. sortOrder = 100,
  1120. }
  1121.  
  1122. DarkRP.createCategory{
  1123. name = "Clone Trooper",
  1124. categorises = "jobs",
  1125. startExpanded = true,
  1126. color = Color(0, 107, 0, 255),
  1127. canSee = fp{fn.Id, true},
  1128. sortOrder = 100,
  1129. }
  1130.  
  1131. DarkRP.createCategory{
  1132. name = "501st Clone Trooper",
  1133. categorises = "jobs",
  1134. startExpanded = true,
  1135. color = Color(0, 107, 0, 255),
  1136. canSee = fp{fn.Id, true},
  1137. sortOrder = 100,
  1138. }
  1139.  
  1140. DarkRP.createCategory{
  1141. name = "212th Clone Trooper",
  1142. categorises = "jobs",
  1143. startExpanded = true,
  1144. color = Color(0, 107, 0, 255),
  1145. canSee = fp{fn.Id, true},
  1146. sortOrder = 100,
  1147. }
  1148.  
  1149. DarkRP.createCategory{
  1150. name = "187th Clone Trooper",
  1151. categorises = "jobs",
  1152. startExpanded = true,
  1153. color = Color(0, 107, 0, 255),
  1154. canSee = fp{fn.Id, true},
  1155. sortOrder = 100,
  1156. }
  1157.  
  1158. DarkRP.createCategory{
  1159. name = "Clone Commando",
  1160. categorises = "jobs",
  1161. startExpanded = true,
  1162. color = Color(0, 107, 0, 255),
  1163. canSee = fp{fn.Id, true},
  1164. sortOrder = 100,
  1165. }
  1166.  
  1167. DarkRP.createCategory{
  1168. name = "Jedi",
  1169. categorises = "jobs",
  1170. startExpanded = true,
  1171. color = Color(0, 107, 0, 255),
  1172. canSee = fp{fn.Id, true},
  1173. sortOrder = 100,
  1174. }
  1175.  
  1176. DarkRP.createCategory{
  1177. name = "Battledroid",
  1178. categorises = "jobs",
  1179. startExpanded = true,
  1180. color = Color(0, 107, 0, 255),
  1181. canSee = fp{fn.Id, true},
  1182. sortOrder = 100,
  1183. }
  1184.  
  1185. DarkRP.createCategory{
  1186. name = "Security Droid",
  1187. categorises = "jobs",
  1188. startExpanded = true,
  1189. color = Color(0, 107, 0, 255),
  1190. canSee = fp{fn.Id, true},
  1191. sortOrder = 100,
  1192. }
  1193.  
  1194. DarkRP.createCategory{
  1195. name = "Super Battle Droid",
  1196. categorises = "jobs",
  1197. startExpanded = true,
  1198. color = Color(0, 107, 0, 255),
  1199. canSee = fp{fn.Id, true},
  1200. sortOrder = 100,
  1201. }
  1202.  
  1203. DarkRP.createCategory{
  1204. name = "Commando Droids",
  1205. categorises = "jobs",
  1206. startExpanded = true,
  1207. color = Color(0, 107, 0, 255),
  1208. canSee = fp{fn.Id, true},
  1209. sortOrder = 100,
  1210. }
  1211.  
  1212. DarkRP.createCategory{
  1213. name = "Sith",
  1214. categorises = "jobs",
  1215. startExpanded = true,
  1216. color = Color(0, 107, 0, 255),
  1217. canSee = fp{fn.Id, true},
  1218. sortOrder = 100,
  1219. }
  1220.  
  1221. DarkRP.createCategory{
  1222. name = "Eternal Empire",
  1223. categorises = "jobs",
  1224. startExpanded = true,
  1225. color = Color(0, 107, 0, 255),
  1226. canSee = fp{fn.Id, true},
  1227. sortOrder = 100,
  1228. }
  1229.  
  1230. DarkRP.createCategory{
  1231. name = "Ancient Empire",
  1232. categorises = "jobs",
  1233. startExpanded = true,
  1234. color = Color(0, 107, 0, 255),
  1235. canSee = fp{fn.Id, true},
  1236. sortOrder = 100,
  1237. }
  1238.  
  1239. DarkRP.createCategory{
  1240. name = "Custom Jobs",
  1241. categorises = "jobs",
  1242. startExpanded = true,
  1243. color = Color(0, 107, 0, 255),
  1244. canSee = fp{fn.Id, true},
  1245. sortOrder = 100,
  1246. }
  1247.  
  1248. DarkRP.createCategory{
  1249. name = "Death Watch",
  1250. categorises = "jobs",
  1251. startExpanded = true,
  1252. color = Color(0, 107, 0, 255),
  1253. canSee = fp{fn.Id, true},
  1254. sortOrder = 100,
  1255. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement