Advertisement
lol12313123

Untitled

Oct 28th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 53.24 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. weapons = {"weapon_lightsaber"},
  343. command = "Yoda",
  344. max = 1,
  345. salary = 100,
  346. admin = 0,
  347. vote = false,
  348. hasLicense = false,
  349. candemote = false,
  350. category = "Jedi",
  351. customCheck = function(ply) return ply:GetUserGroup() == "Yoda" or ply:IsAdmin() end,
  352. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("4000") ply:SetGravity(1) return CLIENT end,
  353. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  354. })
  355.  
  356. TEAM_B1 = DarkRP.createJob("Obiwan Kenobi", {
  357. color = Color(99, 99, 99, 255),
  358. model = "models/tfa/comm/gg/pm_sw_obiwan_alt.mdl",
  359. description = [[]],
  360. weapons = {"weapon_lightsaber"},
  361. command = "obiwan",
  362. max = 1,
  363. salary = 100,
  364. admin = 0,
  365. vote = false,
  366. hasLicense = false,
  367. candemote = false,
  368. category = "Jedi",
  369. customCheck = function(ply) return ply:GetUserGroup() == "Obiwan" or ply:IsAdmin() end,
  370. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  371. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  372. })
  373.  
  374. TEAM_B1 = DarkRP.createJob("Anakin Skywalker", {
  375. color = Color(99, 99, 99, 255),
  376. model = "models/tfa/comm/gg/pm_sw_anakin_v2.mdl",
  377. description = [[]],
  378. weapons = {"weapon_lightsaber"},
  379. command = "anakin",
  380. max = 1,
  381. salary = 100,
  382. admin = 0,
  383. vote = false,
  384. hasLicense = false,
  385. candemote = false,
  386. category = "Jedi",
  387. customCheck = function(ply) return ply:GetUserGroup() == "Anakin" or ply:IsAdmin() end,
  388. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  389. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  390. })
  391.  
  392. TEAM_B1 = DarkRP.createJob("Ahsoka Tano", {
  393. color = Color(99, 99, 99, 255),
  394. model = "models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl",
  395. description = [[]],
  396. weapons = {"weapon_lightsaber"},
  397. command = "ahsoka",
  398. max = 1,
  399. salary = 100,
  400. admin = 0,
  401. vote = false,
  402. hasLicense = false,
  403. candemote = false,
  404. category = "Jedi",
  405. customCheck = function(ply) return ply:GetUserGroup() == "Ahsoka" or ply:IsAdmin() end,
  406. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  407. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  408. })
  409.  
  410. TEAM_B1 = DarkRP.createJob("Kit Fisto", {
  411. color = Color(99, 99, 99, 255),
  412. model = "models/tfa/comm/gg/pm_sw_fisto.mdl",
  413. description = [[]],
  414. weapons = {"weapon_lightsaber"},
  415. command = "fisto",
  416. max = 1,
  417. salary = 100,
  418. admin = 0,
  419. vote = false,
  420. hasLicense = false,
  421. candemote = false,
  422. category = "Jedi",
  423. customCheck = function(ply) return ply:GetUserGroup() == "Fisto" or ply:IsAdmin() end,
  424. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  425. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  426. })
  427.  
  428. TEAM_B1 = DarkRP.createJob("Mace Windu", {
  429. color = Color(99, 99, 99, 255),
  430. model = "models/player/mace/mace.mdl",
  431. description = [[]],
  432. weapons = {"weapon_lightsaber"},
  433. command = "windu",
  434. max = 1,
  435. salary = 100,
  436. admin = 0,
  437. vote = false,
  438. hasLicense = false,
  439. candemote = false,
  440. category = "Jedi",
  441. customCheck = function(ply) return ply:GetUserGroup() == "Windu" or ply:IsAdmin() end,
  442. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  443. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  444. })
  445.  
  446. TEAM_B1 = DarkRP.createJob("Aayala Secura", {
  447. color = Color(99, 99, 99, 255),
  448. model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
  449. description = [[]],
  450. weapons = {"weapon_lightsaber"},
  451. command = "aayla",
  452. max = 1,
  453. salary = 100,
  454. admin = 0,
  455. vote = false,
  456. hasLicense = false,
  457. candemote = false,
  458. category = "Jedi",
  459. customCheck = function(ply) return ply:GetUserGroup() == "Aayala" or ply:IsAdmin() end,
  460. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  461. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  462. })
  463.  
  464. TEAM_B1 = DarkRP.createJob("B1 Battle Droid", {
  465. color = Color(99, 99, 99, 255),
  466. model = "models/tfa/comm/gg/pm_sw_droid_b1.mdl",
  467. description = [[]],
  468. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  469. command = "B1",
  470. max = 0,
  471. salary = 100,
  472. admin = 0,
  473. vote = false,
  474. hasLicense = false,
  475. candemote = false,
  476. category = "Battledroid",
  477. customCheck = function(ply) return ply:GetUserGroup() == "B1 Battle Droid" or ply:IsAdmin() end,
  478. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  479. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  480. })
  481.  
  482. TEAM_B1 = DarkRP.createJob("B1 General Droid", {
  483. color = Color(99, 99, 99, 255),
  484. model = "models/tfa/comm/gg/pm_sw_g_droid_b1.mdl",
  485. description = [[]],
  486. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  487. command = "B1G",
  488. max = 1,
  489. salary = 100,
  490. admin = 0,
  491. vote = false,
  492. hasLicense = false,
  493. candemote = false,
  494. category = "Battledroid",
  495. customCheck = function(ply) return ply:GetUserGroup() == "B1 OOM Commander Droid" or ply:IsAdmin() end,
  496. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  497. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  498. })
  499.  
  500. TEAM_B1 = DarkRP.createJob("B1 SSA - Battle Droid", {
  501. color = Color(99, 99, 99, 255),
  502. model = "models/player/sgg/starwars/battledroid_security.mdl",
  503. description = [[]],
  504. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  505. command = "SSA",
  506. max = 5,
  507. salary = 100,
  508. admin = 0,
  509. vote = false,
  510. hasLicense = false,
  511. candemote = false,
  512. category = "Security Droid",
  513. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Battle Droid" or ply:IsAdmin() end,
  514. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  515. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  516. })
  517.  
  518. TEAM_B1 = DarkRP.createJob("B1 SSA - Commander Droid", {
  519. color = Color(99, 99, 99, 255),
  520. model = "models/player/deckboy/battle_droid_pm/assault_droid_pm.mdl",
  521. description = [[]],
  522. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  523. command = "SSAC",
  524. max = 5,
  525. salary = 100,
  526. admin = 0,
  527. vote = false,
  528. hasLicense = false,
  529. candemote = false,
  530. category = "Security Droid",
  531. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Commander Droid" or ply:IsAdmin() end,
  532. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  533. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  534. })
  535.  
  536. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid", {
  537. color = Color(99, 99, 99, 255),
  538. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  539. description = [[]],
  540. weapons = {"b2_gun"},
  541. command = "SBD",
  542. max = 5,
  543. salary = 100,
  544. admin = 0,
  545. vote = false,
  546. hasLicense = false,
  547. candemote = false,
  548. category = "Super Battle Droid",
  549. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid" or ply:IsAdmin() end,
  550. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("400") ply:SetGravity(1) return CLIENT end,
  551. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  552. })
  553.  
  554. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid Commander", {
  555. color = Color(99, 99, 99, 255),
  556. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  557. description = [[]],
  558. weapons = {"b2_gun", "b2_cannon"},
  559. command = "SBDC",
  560. max = 5,
  561. salary = 100,
  562. admin = 0,
  563. vote = false,
  564. hasLicense = false,
  565. candemote = false,
  566. category = "Super Battle Droid",
  567. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid Commander" or ply:IsAdmin() end,
  568. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  569. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  570. })
  571.  
  572. TEAM_B1 = DarkRP.createJob("Commando Droid", {
  573. color = Color(99, 99, 99, 255),
  574. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
  575. description = [[]],
  576. weapons = {"weapon_jew_emp_rifle", "weapon_jew_x8_night"},
  577. command = "CD",
  578. max = 5,
  579. salary = 100,
  580. admin = 0,
  581. vote = false,
  582. hasLicense = false,
  583. candemote = false,
  584. category = "Commando Droids",
  585. customCheck = function(ply) return ply:GetUserGroup() == "Commando Droid" or ply:IsAdmin() end,
  586. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("800") ply:SetGravity(1) return CLIENT end,
  587. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  588. })
  589.  
  590. TEAM_B1 = DarkRP.createJob("B1 - Commando Droid Commander", {
  591. color = Color(99, 99, 99, 255),
  592. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
  593. description = [[]],
  594. weapons = {"weapon_jew_emp_rifle", "weapon_jew_x8_night"},
  595. command = "CDC",
  596. max = 5,
  597. salary = 100,
  598. admin = 0,
  599. vote = false,
  600. hasLicense = false,
  601. candemote = false,
  602. category = "Commando Droids",
  603. customCheck = function(ply) return ply:GetUserGroup() == "Commando Droid Commander" or ply:IsAdmin() end,
  604. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  605. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  606. })
  607.  
  608. TEAM_B1 = DarkRP.createJob("Sith Apprentice", {
  609. color = Color(99, 99, 99, 255),
  610. model = {
  611. "models/player/x227man/mkotor_9.mdl",
  612. "models/player/x227man/mkotor_2.mdl",
  613. "models/player/x227man/mkotor_3.mdl",
  614. "models/player/x227man/mkotor_4.mdl",
  615. "models/player/x227man/mkotor_5.mdl",
  616. "models/player/x227man/mkotor_6.mdl",
  617. "models/player/x227man/mkotor_7.mdl",
  618. "models/player/x227man/mkotor_8.mdl",
  619. "models/player/x227man/mkotor_1.mdl",
  620. },
  621. description = [[]],
  622. weapons = {"weapon_lightsaber"},
  623. command = "sithapprentice",
  624. max = 5,
  625. salary = 100,
  626. admin = 0,
  627. vote = false,
  628. hasLicense = false,
  629. candemote = false,
  630. scale = 1.2,
  631. category = "Sith",
  632. customCheck = function(ply) return ply:GetUserGroup() == "Sith Apprentice" or ply:IsAdmin() end,
  633. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("1800") ply:SetGravity(1) return CLIENT end,
  634. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  635. })
  636.  
  637. TEAM_B1 = DarkRP.createJob("Sith Knight", {
  638. color = Color(99, 99, 99, 255),
  639. model = {
  640. "models/grealms/characters/jedibattlelord/jedibattlelord_09.mdl",
  641. "models/grealms/characters/jedibattlelord/jedibattlelord_02.mdl",
  642. "models/grealms/characters/jedibattlelord/jedibattlelord_03.mdl",
  643. "models/grealms/characters/jedibattlelord/jedibattlelord_04.mdl",
  644. "models/grealms/characters/jedibattlelord/jedibattlelord_05.mdl",
  645. "models/grealms/characters/jedibattlelord/jedibattlelord_06.mdl",
  646. "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl",
  647. "models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl",
  648. "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl",
  649. "models/grealms/characters/jedibattlelord/jedibattlelord.mdl",
  650. },
  651. description = [[]],
  652. weapons = {"weapon_lightsaber"},
  653. command = "sithknight",
  654. max = 5,
  655. salary = 100,
  656. admin = 0,
  657. vote = false,
  658. hasLicense = false,
  659. candemote = false,
  660. scale = 1.2,
  661. category = "Sith",
  662. customCheck = function(ply) return ply:GetUserGroup() == "Sith Knight" or ply:IsAdmin() end,
  663. 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,
  664. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  665. })
  666.  
  667. TEAM_B1 = DarkRP.createJob("Sith Master", {
  668. color = Color(99, 99, 99, 255),
  669. model = {"models/grealms/characters/darkjedi/darkjedi.mdl",},
  670. description = [[]],
  671. weapons = {"weapon_lightsaber"},
  672. command = "sithmaster",
  673. max = 5,
  674. salary = 100,
  675. admin = 0,
  676. vote = false,
  677. hasLicense = false,
  678. candemote = false,
  679. scale = 1.2,
  680. category = "Sith",
  681. customCheck = function(ply) return ply:GetUserGroup() == "Sith Master" or ply:IsAdmin() end,
  682. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  683. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  684. })
  685.  
  686. TEAM_B1 = DarkRP.createJob("Dooku", {
  687. color = Color(99, 99, 99, 255),
  688. model = "models/tfa/comm/gg/pm_sw_dooku.mdl",
  689. description = [[]],
  690. weapons = {"weapon_lightsaber"},
  691. command = "dooku",
  692. max = 1,
  693. salary = 100,
  694. admin = 0,
  695. vote = false,
  696. hasLicense = false,
  697. candemote = false,
  698. scale = 1.2,
  699. category = "Sith",
  700. customCheck = function(ply) return ply:GetUserGroup() == "Dooku" or ply:IsAdmin() end,
  701. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  702. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  703. })
  704.  
  705. TEAM_B1 = DarkRP.createJob("Maul", {
  706. color = Color(99, 99, 99, 255),
  707. model = "models/tfa/comm/gg/pm_sw_cyberdarthmaul.mdl",
  708. description = [[]],
  709. weapons = {"weapon_lightsaber"},
  710. command = "maul",
  711. max = 1,
  712. salary = 100,
  713. admin = 0,
  714. vote = false,
  715. hasLicense = false,
  716. candemote = false,
  717. scale = 1.2,
  718. category = "Sith",
  719. customCheck = function(ply) return ply:GetUserGroup() == "Maul" or ply:IsAdmin() end,
  720. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  721. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  722. })
  723.  
  724. TEAM_B1 = DarkRP.createJob("Grievous", {
  725. color = Color(99, 99, 99, 255),
  726. model = "models/tfa/comm/gg/pm_sw_grievous.mdl",
  727. description = [[]],
  728. weapons = {"weapon_lightsaber"},
  729. command = "grievous",
  730. max = 1,
  731. salary = 100,
  732. admin = 0,
  733. vote = false,
  734. hasLicense = false,
  735. candemote = false,
  736. category = "Sith",
  737. customCheck = function(ply) return ply:GetUserGroup() == "Grievous" or ply:IsAdmin() end,
  738. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  739. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  740. })
  741.  
  742. TEAM_MOB = DarkRP.createJob("Death Watch Soldier", {
  743. color = Color(141, 87, 255, 255),
  744. model = "models/tfa/comm/gg/deathwatch_bf2/soldier_helmet.mdl",
  745. description = [[]],
  746. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook"},
  747. command = "DWS",
  748. max = 5,
  749. salary = 100,
  750. admin = 0,
  751. vote = false,
  752. hasLicense = false,
  753. candemote = false,
  754. category = "Death Watch",
  755. customCheck = function(ply) return ply:GetUserGroup() == "Death Watch Soldier" or ply:IsAdmin() end,
  756. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  757. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  758. })
  759.  
  760. TEAM_MOB = DarkRP.createJob("Death Watch Lieutenant", {
  761. color = Color(141, 87, 255, 255),
  762. model = "models/tfa/comm/gg/deathwatch_bf2/lieutenant_helmet.mdl",
  763. description = [[]],
  764. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook"},
  765. command = "DWL",
  766. max = 2,
  767. salary = 100,
  768. admin = 0,
  769. vote = false,
  770. hasLicense = false,
  771. candemote = false,
  772. category = "Death Watch",
  773. customCheck = function(ply) return ply:GetUserGroup() == "Death Watch Lieutenant" or ply:IsAdmin() end,
  774. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("500") ply:SetGravity(1) return CLIENT end,
  775. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  776. })
  777.  
  778. TEAM_MOB = DarkRP.createJob("Bo-Katan", {
  779. color = Color(141, 87, 255, 255),
  780. model = "models/tfa/comm/gg/deathwatch_bf2/trooper_helmet.mdl",
  781. description = [[]],
  782. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "weapon_752_dc17m_br"},
  783. command = "DWBK",
  784. max = 1,
  785. salary = 100,
  786. admin = 0,
  787. vote = false,
  788. hasLicense = false,
  789. candemote = false,
  790. category = "Death Watch",
  791. customCheck = function(ply) return ply:GetUserGroup() == "Bo-Katan" or ply:IsAdmin() end,
  792. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  793. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  794. })
  795.  
  796. TEAM_MOB = DarkRP.createJob("Pre Vizsla", {
  797. color = Color(141, 87, 255, 255),
  798. model = "models/tfa/comm/gg/deathwatch_bf2/commander_helmet.mdl",
  799. description = [[]],
  800. weapons = {"weapon_752_ee3", "weapon_jew_x8_night", "weapon_jew_emp_rifle", "realistic_hook", "weapon_lightsaber"},
  801. command = "DWPV",
  802. max = 1,
  803. salary = 100,
  804. admin = 0,
  805. vote = false,
  806. hasLicense = false,
  807. candemote = false,
  808. category = "Death Watch",
  809. customCheck = function(ply) return ply:GetUserGroup() == "Pre Vizsla" or ply:IsAdmin() end,
  810. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1500") ply:SetGravity(1) return CLIENT end,
  811. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  812. })
  813.  
  814. TEAM_B1 = DarkRP.createJob("Zakuul Knight", {
  815. color = Color(99, 99, 99, 255),
  816. model = "models/grealms/characters/zakuulknight/zakuulknight.mdl",
  817. description = [[]],
  818. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  819. command = "zk",
  820. max = 8,
  821. salary = 100,
  822. admin = 0,
  823. vote = false,
  824. hasLicense = false,
  825. candemote = false,
  826. category = "Eternal Empire",
  827. customCheck = function(ply) return ply:GetUserGroup() == "Zakuul Knight" or ply:IsAdmin() end,
  828. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("600") ply:SetGravity(1) return CLIENT end,
  829. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  830. })
  831.  
  832. TEAM_B1 = DarkRP.createJob("Zakuul Knight Commander", {
  833. color = Color(99, 99, 99, 255),
  834. model = "models/grealms/characters/darktrooper/darktrooper.mdl",
  835. description = [[]],
  836. weapons = {"weapon_lightsaber", "weapon_752_ihr", "weapon_lasermgun"},
  837. command = "zkc",
  838. max = 1,
  839. salary = 100,
  840. admin = 0,
  841. vote = false,
  842. hasLicense = false,
  843. candemote = false,
  844. category = "Eternal Empire",
  845. customCheck = function(ply) return ply:GetUserGroup() == "Zakuul Knight Commander" or ply:IsAdmin() end,
  846. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("1300") ply:SetGravity(1) return CLIENT end,
  847. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  848. })
  849.  
  850. TEAM_B1 = DarkRP.createJob("Prince Arcann", {
  851. color = Color(99, 99, 99, 255),
  852. model = "models/grealms/twins/twins.mdl",
  853. description = [[]],
  854. weapons = {"weapon_lightsaber"},
  855. command = "pa",
  856. max = 1,
  857. salary = 100,
  858. admin = 0,
  859. vote = false,
  860. hasLicense = false,
  861. candemote = false,
  862. category = "Eternal Empire",
  863. customCheck = function(ply) return ply:GetUserGroup() == "Prince Arcann" or ply:IsAdmin() end,
  864. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  865. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  866. })
  867.  
  868. TEAM_B1 = DarkRP.createJob("Prince Thexan", {
  869. color = Color(99, 99, 99, 255),
  870. model = "models/grealms/twins/twins_black/twins_black.mdl",
  871. description = [[]],
  872. weapons = {"weapon_lightsaber"},
  873. command = "pt",
  874. max = 1,
  875. salary = 100,
  876. admin = 0,
  877. vote = false,
  878. hasLicense = false,
  879. candemote = false,
  880. category = "Eternal Empire",
  881. customCheck = function(ply) return ply:GetUserGroup() == "Prince Thexan" or ply:IsAdmin() end,
  882. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  883. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  884. })
  885.  
  886. TEAM_B1 = DarkRP.createJob("Emperor Valkolorian", {
  887. color = Color(99, 99, 99, 255),
  888. model = "models/grealms/characters/valkorian/valkorian.mdl",
  889. description = [[]],
  890. weapons = {"weapon_lightsaber"},
  891. command = "ev",
  892. max = 1,
  893. salary = 100,
  894. admin = 0,
  895. vote = false,
  896. hasLicense = false,
  897. candemote = false,
  898. category = "Eternal Empire",
  899. customCheck = function(ply) return ply:GetUserGroup() == "Emperor Valkolorian" or ply:IsAdmin() end,
  900. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  901. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  902. })
  903.  
  904. TEAM_B1 = DarkRP.createJob("AE Trooper", {
  905. color = Color(99, 99, 99, 255),
  906. model = "models/grealms/characters/imperial/imperial.mdl",
  907. description = [[]],
  908. weapons = {"weapon_752_ihr", "weapon_752_dsbp"},
  909. command = "aetrooper",
  910. max = 8,
  911. salary = 100,
  912. admin = 0,
  913. vote = false,
  914. hasLicense = false,
  915. candemote = false,
  916. category = "Ancient Empire",
  917. customCheck = function(ply) return ply:GetUserGroup() == "Imperial Trooper" or ply:IsAdmin() end,
  918. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  919. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  920. })
  921.  
  922. TEAM_B1 = DarkRP.createJob("Ravenite", {
  923. color = Color(99, 99, 99, 255),
  924. model = "models/grealms/characters/revan/revan.mdl",
  925. description = [[]],
  926. weapons = {"weapon_lightsaber"},
  927. command = "ravenite",
  928. max = 8,
  929. salary = 100,
  930. admin = 0,
  931. vote = false,
  932. hasLicense = false,
  933. candemote = false,
  934. category = "Ancient Empire",
  935. customCheck = function(ply) return ply:GetUserGroup() == "Ravenite" or ply:IsAdmin() end,
  936. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2000") ply:SetGravity(1) return CLIENT end,
  937. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  938. })
  939.  
  940. TEAM_B1 = DarkRP.createJob("Raven", {
  941. color = Color(99, 99, 99, 255),
  942. model = "models/grealms/characters/revan_real/revan.mdl",
  943. description = [[]],
  944. weapons = {"weapon_lightsaber"},
  945. command = "raven",
  946. max = 1,
  947. salary = 100,
  948. admin = 0,
  949. vote = false,
  950. hasLicense = false,
  951. candemote = false,
  952. category = "Ancient Empire",
  953. customCheck = function(ply) return ply:GetUserGroup() == "Raven" or ply:IsAdmin() end,
  954. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  955. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  956. })
  957.  
  958. TEAM_B1 = DarkRP.createJob("Darth Malgus", {
  959. color = Color(99, 99, 99, 255),
  960. model = "models/grealms/characters/malgus/malgus.mdl",
  961. description = [[]],
  962. weapons = {"weapon_lightsaber"},
  963. command = "DM",
  964. max = 1,
  965. salary = 100,
  966. admin = 0,
  967. vote = false,
  968. hasLicense = false,
  969. candemote = false,
  970. category = "Ancient Empire",
  971. customCheck = function(ply) return ply:GetUserGroup() == "Darth Malgus" or ply:IsAdmin() end,
  972. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  973. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  974. })
  975.  
  976. TEAM_B1 = DarkRP.createJob("Darth Sion", {
  977. color = Color(99, 99, 99, 255),
  978. model = "models/grealms/characters/darthsion/sion.mdl",
  979. description = [[]],
  980. weapons = {"weapon_lightsaber"},
  981. command = "ds",
  982. max = 1,
  983. salary = 100,
  984. admin = 0,
  985. vote = false,
  986. hasLicense = false,
  987. candemote = false,
  988. category = "Ancient Empire",
  989. customCheck = function(ply) return ply:GetUserGroup() == "Darth Sion" or ply:IsAdmin() end,
  990. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  991. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  992. })
  993.  
  994. TEAM_B1 = DarkRP.createJob("Sith Hunter", {
  995. color = Color(99, 99, 99, 255),
  996. model = "models/jazzmcfly/jka/eg5/jka_eg5.mdl",
  997. description = [[]],
  998. weapons = {"weapon_lightsaber", "realistic_hook", "weapon_752_ee3"},
  999. command = "SHunter",
  1000. max = 1,
  1001. salary = 100,
  1002. admin = 0,
  1003. vote = false,
  1004. hasLicense = false,
  1005. candemote = false,
  1006. category = "Custom Jobs",
  1007. customCheck = function(ply) return ply:GetUserGroup() == "Sith Hunter" or ply:IsAdmin() end,
  1008. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1009. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1010. })
  1011.  
  1012. TEAM_B1 = DarkRP.createJob("Darth Jadus", {
  1013. color = Color(99, 99, 99, 255),
  1014. model = "models/grealms/characters/darthjadus/darthjadus.mdl",
  1015. description = [[]],
  1016. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  1017. command = "jadus",
  1018. max = 1,
  1019. salary = 100,
  1020. admin = 0,
  1021. vote = false,
  1022. hasLicense = false,
  1023. candemote = false,
  1024. category = "Custom Jobs",
  1025. customCheck = function(ply) return ply:GetUserGroup() == "Darth Jadus" or ply:IsAdmin() end,
  1026. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1027. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1028. })
  1029.  
  1030. TEAM_B1 = DarkRP.createJob("Darth Marr", {
  1031. color = Color(99, 99, 99, 255),
  1032. model = "models/grealms/characters/darthmarr/darthmarr.mdl",
  1033. description = [[]],
  1034. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  1035. command = "DMar",
  1036. max = 1,
  1037. salary = 100,
  1038. admin = 0,
  1039. vote = false,
  1040. hasLicense = false,
  1041. candemote = false,
  1042. category = "Custom Jobs",
  1043. customCheck = function(ply) return ply:GetUserGroup() == "HK - 51" or ply:IsAdmin() end,
  1044. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1045. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1046. })
  1047.  
  1048. TEAM_B1 = DarkRP.createJob("Star Killer", {
  1049. color = Color(99, 99, 99, 255),
  1050. model = "models/grealms/characters/ultimategood/ultimategood.mdl",
  1051. description = [[]],
  1052. weapons = {"weapon_lightsaber", "weapon_jew_x8_night"},
  1053. command = "SK",
  1054. max = 1,
  1055. salary = 100,
  1056. admin = 0,
  1057. vote = false,
  1058. hasLicense = false,
  1059. candemote = false,
  1060. category = "Custom Jobs",
  1061. customCheck = function(ply) return ply:GetUserGroup() == "Star Killer" or ply:IsAdmin() end,
  1062. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("3000") ply:SetGravity(1) return CLIENT end,
  1063. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1064. })
  1065.  
  1066. TEAM_B1 = DarkRP.createJob("Star Killer Apprentice", {
  1067. color = Color(99, 99, 99, 255),
  1068. model = "models/grealms/characters/experimentaljedi/experimentaljedi.mdl",
  1069. description = [[]],
  1070. weapons = {"weapon_lightsaber"},
  1071. command = "SKA",
  1072. max = 3,
  1073. salary = 100,
  1074. admin = 0,
  1075. vote = false,
  1076. hasLicense = false,
  1077. candemote = false,
  1078. category = "Custom Jobs",
  1079. customCheck = function(ply) return ply:GetUserGroup() == "Star Killer Apprentice" or ply:IsAdmin() end,
  1080. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  1081. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1082. })
  1083.  
  1084. TEAM_B1 = DarkRP.createJob("Sith Assassin", {
  1085. color = Color(99, 99, 99, 255),
  1086. model = "models/syntheticgaming/characters/sithassassin/sithassassin.mdl",
  1087. description = [[]],
  1088. weapons = {"weapon_lightsaber", "realistic_hook", "weapon_752_ee3"},
  1089. command = "Sithass",
  1090. max = 1,
  1091. salary = 100,
  1092. admin = 0,
  1093. vote = false,
  1094. hasLicense = false,
  1095. candemote = false,
  1096. category = "Custom Jobs",
  1097. customCheck = function(ply) return ply:GetUserGroup() == "Sith Assassin" or ply:IsAdmin() end,
  1098. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2) ply:SetHealth("2500") ply:SetGravity(1) return CLIENT end,
  1099. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  1100. })
  1101.  
  1102. --[[---------------------------------------------------------------------------
  1103. Define which team joining players spawn into and what team you change to if demoted
  1104. ---------------------------------------------------------------------------]]
  1105. GAMEMODE.DefaultTeam = TEAM_CC
  1106.  
  1107. --[[---------------------------------------------------------------------------
  1108. Jobs that are hitmen (enables the hitman menu)
  1109. ---------------------------------------------------------------------------]]
  1110. DarkRP.addHitmanTeam(TEAM_MOB)
  1111.  
  1112. DarkRP.createCategory{
  1113. name = "Citizen",
  1114. categorises = "jobs",
  1115. startExpanded = true,
  1116. color = Color(0, 107, 0, 255),
  1117. canSee = fp{fn.Id, true},
  1118. sortOrder = 100,
  1119. }
  1120.  
  1121. DarkRP.createCategory{
  1122. name = "Clone Trooper",
  1123. categorises = "jobs",
  1124. startExpanded = true,
  1125. color = Color(0, 107, 0, 255),
  1126. canSee = fp{fn.Id, true},
  1127. sortOrder = 100,
  1128. }
  1129.  
  1130. DarkRP.createCategory{
  1131. name = "501st Clone Trooper",
  1132. categorises = "jobs",
  1133. startExpanded = true,
  1134. color = Color(0, 107, 0, 255),
  1135. canSee = fp{fn.Id, true},
  1136. sortOrder = 100,
  1137. }
  1138.  
  1139. DarkRP.createCategory{
  1140. name = "212th Clone Trooper",
  1141. categorises = "jobs",
  1142. startExpanded = true,
  1143. color = Color(0, 107, 0, 255),
  1144. canSee = fp{fn.Id, true},
  1145. sortOrder = 100,
  1146. }
  1147.  
  1148. DarkRP.createCategory{
  1149. name = "187th Clone Trooper",
  1150. categorises = "jobs",
  1151. startExpanded = true,
  1152. color = Color(0, 107, 0, 255),
  1153. canSee = fp{fn.Id, true},
  1154. sortOrder = 100,
  1155. }
  1156.  
  1157. DarkRP.createCategory{
  1158. name = "Clone Commando",
  1159. categorises = "jobs",
  1160. startExpanded = true,
  1161. color = Color(0, 107, 0, 255),
  1162. canSee = fp{fn.Id, true},
  1163. sortOrder = 100,
  1164. }
  1165.  
  1166. DarkRP.createCategory{
  1167. name = "Jedi",
  1168. categorises = "jobs",
  1169. startExpanded = true,
  1170. color = Color(0, 107, 0, 255),
  1171. canSee = fp{fn.Id, true},
  1172. sortOrder = 100,
  1173. }
  1174.  
  1175. DarkRP.createCategory{
  1176. name = "Battledroid",
  1177. categorises = "jobs",
  1178. startExpanded = true,
  1179. color = Color(0, 107, 0, 255),
  1180. canSee = fp{fn.Id, true},
  1181. sortOrder = 100,
  1182. }
  1183.  
  1184. DarkRP.createCategory{
  1185. name = "Security Droid",
  1186. categorises = "jobs",
  1187. startExpanded = true,
  1188. color = Color(0, 107, 0, 255),
  1189. canSee = fp{fn.Id, true},
  1190. sortOrder = 100,
  1191. }
  1192.  
  1193. DarkRP.createCategory{
  1194. name = "Super Battle Droid",
  1195. categorises = "jobs",
  1196. startExpanded = true,
  1197. color = Color(0, 107, 0, 255),
  1198. canSee = fp{fn.Id, true},
  1199. sortOrder = 100,
  1200. }
  1201.  
  1202. DarkRP.createCategory{
  1203. name = "Commando Droids",
  1204. categorises = "jobs",
  1205. startExpanded = true,
  1206. color = Color(0, 107, 0, 255),
  1207. canSee = fp{fn.Id, true},
  1208. sortOrder = 100,
  1209. }
  1210.  
  1211. DarkRP.createCategory{
  1212. name = "Sith",
  1213. categorises = "jobs",
  1214. startExpanded = true,
  1215. color = Color(0, 107, 0, 255),
  1216. canSee = fp{fn.Id, true},
  1217. sortOrder = 100,
  1218. }
  1219.  
  1220. DarkRP.createCategory{
  1221. name = "Eternal Empire",
  1222. categorises = "jobs",
  1223. startExpanded = true,
  1224. color = Color(0, 107, 0, 255),
  1225. canSee = fp{fn.Id, true},
  1226. sortOrder = 100,
  1227. }
  1228.  
  1229. DarkRP.createCategory{
  1230. name = "Ancient Empire",
  1231. categorises = "jobs",
  1232. startExpanded = true,
  1233. color = Color(0, 107, 0, 255),
  1234. canSee = fp{fn.Id, true},
  1235. sortOrder = 100,
  1236. }
  1237.  
  1238. DarkRP.createCategory{
  1239. name = "Custom Jobs",
  1240. categorises = "jobs",
  1241. startExpanded = true,
  1242. color = Color(0, 107, 0, 255),
  1243. canSee = fp{fn.Id, true},
  1244. sortOrder = 100,
  1245. }
  1246.  
  1247. DarkRP.createCategory
  1248. name = "Death Watch",
  1249. categorises = "jobs",
  1250. startExpanded = true,
  1251. color = Color(0, 107, 0, 255),
  1252. canSee = fp{fn.Id, true},
  1253. sortOrder = 100,
  1254. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement