Advertisement
lol12313123

code

Oct 17th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 38.21 KB | None | 0 0
  1. TEAM_CC = DarkRP.createJob("Citizen", {
  2. color = Color(221, 19, 255, 255),
  3. model = "models/player/Group01/male_09.mdl",
  4. description = [[]],
  5. weapons = {""},
  6. command = "Citizen”,
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Citizen"
  14. })
  15.  
  16. TEAM_B1 = DarkRP.createJob("Clone Trooper", {
  17. color = Color(17, 213, 239, 255),
  18. model = "models/player/testp2c/cgi ctp2.mdl",
  19. description = [[]],
  20. weapons = {"weapon_752_dc15a", "weapon_752_dc15s"},
  21. command = "CT",
  22. max = 0,
  23. salary = 0,
  24. admin = 0,
  25. vote = false,
  26. hasLicense = false,
  27. candemote = false,
  28. category = "Clone Trooper",
  29. customCheck = function(ply) return ply:GetUserGroup() == "Clone Trooper" or ply:IsAdmin() end,
  30. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  31. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  32. })
  33.  
  34. TEAM_B1 = DarkRP.createJob("501st Clone Trooper", {
  35. color = Color(17, 213, 239, 255),
  36. model = "models/player/501trp2/cgi_501t.mdl",
  37. description = [[]],
  38. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dlt19"},
  39. command = "501t",
  40. max = 0,
  41. salary = 0,
  42. admin = 0,
  43. vote = false,
  44. hasLicense = false,
  45. candemote = false,
  46. category = "501st Clone Trooper",
  47. customCheck = function(ply) return ply:GetUserGroup() == "501st Clone Trooper" or ply:IsAdmin() end,
  48. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  49. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  50. })
  51.  
  52. TEAM_B1 = DarkRP.createJob("501st Commander Rex", {
  53. color = Color(17, 213, 239, 255),
  54. model = "models/player/rex2/rex ph2.mdl",
  55. description = [[]],
  56. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dh17", "weapon_752_dlt19"},
  57. command = "501cmd",
  58. max = 1,
  59. salary = 0,
  60. admin = 0,
  61. vote = false,
  62. hasLicense = false,
  63. candemote = false,
  64. category = "501st Clone Trooper",
  65. customCheck = function(ply) return ply:GetUserGroup() == "501st Commander Rex" or ply:IsAdmin() end,
  66. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  67. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  68. })
  69.  
  70. TEAM_B1 = DarkRP.createJob("212th Clone Trooper", {
  71. color = Color(17, 213, 239, 255),
  72. model = "models/player/212troo/cgi_212l.mdl",
  73. description = [[]],
  74. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dc17m_br"},
  75. command = "212t",
  76. max = 0,
  77. salary = 0,
  78. admin = 0,
  79. vote = false,
  80. hasLicense = false,
  81. candemote = false,
  82. category = "212th Clone Trooper",
  83. customCheck = function(ply) return ply:GetUserGroup() == "212th Clone Trooper" or ply:IsAdmin() end,
  84. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  85. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  86. })
  87.  
  88. TEAM_B1 = DarkRP.createJob("212st Commander Cody", {
  89. color = Color(17, 213, 239, 255),
  90. model = "models/player/testccp2/cgi cody ph2.mdl",
  91. description = [[]],
  92. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dc17", "weapon_752_dc17m_br"},
  93. command = "212cmd",
  94. max = 1,
  95. salary = 0,
  96. admin = 0,
  97. vote = false,
  98. hasLicense = false,
  99. candemote = false,
  100. category = "212th Clone Trooper",
  101. customCheck = function(ply) return ply:GetUserGroup() == "212st Commander Cody" or ply:IsAdmin() end,
  102. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  103. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  104. })
  105.  
  106. TEAM_B1 = DarkRP.createJob("187th Clone Trooper", {
  107. color = Color(17, 213, 239, 255),
  108. model = "models/player/187troo/cgi_ctp2.mdl",
  109. description = [[]],
  110. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dc17m_br"},
  111. command = "187t",
  112. max = 0,
  113. salary = 0,
  114. admin = 0,
  115. vote = false,
  116. hasLicense = false,
  117. candemote = false,
  118. category = "187th Clone Trooper",
  119. customCheck = function(ply) return ply:GetUserGroup() == "187th Clone Trooper" or ply:IsAdmin() end,
  120. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("300") ply:SetGravity(1) return CLIENT end,
  121. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  122. })
  123.  
  124. TEAM_B1 = DarkRP.createJob("187th Clone Commander", {
  125. color = Color(17, 213, 239, 255),
  126. model = "models/player/187/187commdr/187c/commander/187_commander.mdl",
  127. description = [[]],
  128. weapons = {"weapon_752_dc15a", "weapon_752_dc15s", "weapon_752_dc17", "weapon_752_dc17m_br"},
  129. command = "187cmd",
  130. max = 1,
  131. salary = 0,
  132. admin = 0,
  133. vote = false,
  134. hasLicense = false,
  135. candemote = false,
  136. category = "187th Clone Trooper",
  137. customCheck = function(ply) return ply:GetUserGroup() == "187th Clone Commander" or ply:IsAdmin() end,
  138. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("900") ply:SetGravity(1) return CLIENT end,
  139. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  140. })
  141.  
  142. TEAM_B1 = DarkRP.createJob("Boss", {
  143. color = Color(99, 99, 99, 255),
  144. model = "models/tfa/comm/gg/pm_sw_clone_commando_boss.mdl",
  145. description = [[]],
  146. weapons = {"dc17m_shotgun", "weapon_jew_dc17m_at", "weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  147. command = "B26",
  148. max = 1,
  149. salary = 0,
  150. admin = 0,
  151. vote = false,
  152. hasLicense = false,
  153. candemote = false,
  154. category = "Clone Commando",
  155. customCheck = function(ply) return ply:GetUserGroup() == "Boss" or ply:IsAdmin() end,
  156. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  157. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  158. })
  159.  
  160. TEAM_B1 = DarkRP.createJob("Scorch", {
  161. color = Color(99, 99, 99, 255),
  162. model = "models/tfa/comm/gg/pm_sw_clone_commando_scorch.mdl",
  163. description = [[]],
  164. weapons = {"weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  165. command = "B27",
  166. max = 1,
  167. salary = 0,
  168. admin = 0,
  169. vote = false,
  170. hasLicense = false,
  171. candemote = false,
  172. category = "Clone Commando",
  173. customCheck = function(ply) return ply:GetUserGroup() == "Scorch" or ply:IsAdmin() end,
  174. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  175. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  176. })
  177.  
  178. TEAM_B1 = DarkRP.createJob("Sev", {
  179. color = Color(99, 99, 99, 255),
  180. model = "models/tfa/comm/gg/pm_sw_clone_commando_sev.mdl",
  181. description = [[]],
  182. weapons = {"dc17m_shotgun", "weapon_jew_det", "weapon_752_dc15sa", "weapon_752_dc17m_br"},
  183. command = "B28",
  184. max = 1,
  185. salary = 0,
  186. admin = 0,
  187. vote = false,
  188. hasLicense = false,
  189. candemote = false,
  190. category = "Clone Commando",
  191. customCheck = function(ply) return ply:GetUserGroup() == "Sev" or ply:IsAdmin() end,
  192. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  193. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  194. })
  195.  
  196. TEAM_B1 = DarkRP.createJob("Fixer", {
  197. color = Color(99, 99, 99, 255),
  198. model = "models/tfa/comm/gg/pm_sw_clone_commando_fixer.mdl",
  199. description = [[]],
  200. weapons = {"weapon_jew_dc17m_at", "weapon_jew_det", "weapon_752_dc17m_br", "weapon_752_dc17m_sn"},
  201. command = "B29",
  202. max = 1,
  203. salary = 0,
  204. admin = 0,
  205. vote = false,
  206. hasLicense = false,
  207. candemote = false,
  208. category = "Clone Commando",
  209. customCheck = function(ply) return ply:GetUserGroup() == "Fixer" or ply:IsAdmin() end,
  210. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth("1000") ply:SetGravity(1) return CLIENT end,
  211. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  212. })
  213.  
  214. TEAM_B1 = DarkRP.createJob(“Jedi Learner”, {
  215. color = Color(99, 99, 99, 255),
  216. model = {
  217. "models/grealms/characters/casualjedi/casualjedi_01.mdll",
  218. "models/grealms/characters/casualjedi/casualjedi_02.mdll",
  219. "models/grealms/characters/casualjedi/casualjedi_03.mdll",
  220. "models/grealms/characters/casualjedi/casualjedi_04.mdll",
  221. "models/grealms/characters/casualjedi/casualjedi_05.mdll",
  222. "models/grealms/characters/casualjedi/casualjedi_06.mdll",
  223. "models/grealms/characters/casualjedi/casualjedi_07.mdll",
  224. "models/grealms/characters/casualjedi/casualjedi_08.mdll",
  225. "models/grealms/characters/casualjedi/casualjedi_09.mdll",
  226. },
  227. description = [[]],
  228. weapons = {"weapon_lightsaber"},
  229. command = “Jedilearner”
  230. max = 0,
  231. salary = 0,
  232. admin = 0,
  233. vote = false,
  234. hasLicense = false,
  235. candemote = false,
  236. scale = 1.2,
  237. category = “Jedi”,
  238. customCheck = function(ply) return ply:GetUserGroup() == “Jedi Learner” or ply:IsAdmin() end,
  239. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“1500”) ply:SetGravity(1) return CLIENT end,
  240. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  241. })
  242.  
  243. TEAM_B1 = DarkRP.createJob(“Jedi Padawan”, {
  244. color = Color(99, 99, 99, 255),
  245. model = {
  246. "models/grealms/characters/padawan/padawan_01.mdl",
  247. "models/grealms/characters/padawan/padawan_02.mdl",
  248. "models/grealms/characters/padawan/padawan_03.mdl",
  249. "models/grealms/characters/padawan/padawan_04.mdl",
  250. "models/grealms/characters/padawan/padawan_05.mdl",
  251. "models/grealms/characters/padawan/padawan_06.mdl",
  252. "models/grealms/characters/padawan/padawan_07.mdl",
  253. "models/grealms/characters/padawan/padawan_08.mdl",
  254. "models/grealms/characters/padawan/padawan_09.mdl",
  255. },
  256. description = [[]],
  257. weapons = {"weapon_lightsaber"},
  258. command = “Jedipadawan”
  259. max = 0,
  260. salary = 0,
  261. admin = 0,
  262. vote = false,
  263. hasLicense = false,
  264. candemote = false,
  265. scale = 1.2,
  266. category = “Jedi”,
  267. customCheck = function(ply) return ply:GetUserGroup() == “Jedi Padawan” or ply:IsAdmin() end,
  268. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“1800”) ply:SetGravity(1) return CLIENT end,
  269. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  270. })
  271.  
  272. TEAM_B1 = DarkRP.createJob(“Jedi Knight”, {
  273. color = Color(99, 99, 99, 255),
  274. model = {
  275. "models/grealms/characters/jedibattlelord/jedibattlelord_1.mdl",
  276. "models/grealms/characters/jedibattlelord/jedibattlelord_2.mdl",
  277. "models/grealms/characters/jedibattlelord/jedibattlelord_3.mdl",
  278. "models/grealms/characters/jedibattlelord/jedibattlelord_4.mdl",
  279. "models/grealms/characters/jedibattlelord/jedibattlelord_5.mdl",
  280. "models/grealms/characters/jedibattlelord/jedibattlelord_6.mdl",
  281. "models/grealms/characters/jedibattlelord/jedibattlelord_7.mdl",
  282. "models/grealms/characters/jedibattlelord/jedibattlelord_8.mdl",
  283. "models/grealms/characters/jedibattlelord/jedibattlelord_9.mdl",
  284. },
  285. description = [[]],
  286. weapons = {"weapon_lightsaber"},
  287. command = “jediknight”
  288. max = 0,
  289. salary = 0,
  290. admin = 0,
  291. vote = false,
  292. hasLicense = false,
  293. candemote = false,
  294. scale = 1.2,
  295. category = "Sith",
  296. customCheck = function(ply) return ply:GetUserGroup() == “Jedi Knight” or ply:IsAdmin() end,
  297. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2000”) ply:SetGravity(1) return CLIENT end,
  298. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  299. })
  300.  
  301. TEAM_B1 = DarkRP.createJob(“Jedi Master”, {
  302. color = Color(99, 99, 99, 255),
  303. model = {
  304. "models/grealms/characters/jedirobes/jedirobes_01.mdl",
  305. "models/grealms/characters/jedirobes/jedirobes_02.mdl",
  306. "models/grealms/characters/jedirobes/jedirobes_03.mdl",
  307. "models/grealms/characters/jedirobes/jedirobes_04.mdl",
  308. "models/grealms/characters/jedirobes/jedirobes_05.mdl",
  309. "models/grealms/characters/jedirobes/jedirobes_06.mdl",
  310. "models/grealms/characters/jedirobes/jedirobes_07.mdl",
  311. "models/grealms/characters/jedirobes/jedirobes_08.mdl",
  312. "models/grealms/characters/jedirobes/jedirobes_09.mdl",
  313. },
  314. description = [[]],
  315. weapons = {"weapon_lightsaber"},
  316. command = “jedimaster”
  317. max = 0,
  318. salary = 0,
  319. admin = 0,
  320. vote = false,
  321. hasLicense = false,
  322. candemote = false,
  323. scale = 1.2,
  324. category = "Sith",
  325. customCheck = function(ply) return ply:GetUserGroup() == “Jedi Master” or ply:IsAdmin() end,
  326. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000”) ply:SetGravity(1) return CLIENT end,
  327. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  328. })
  329.  
  330. TEAM_B1 = DarkRP.createJob("Obiwan", {
  331. color = Color(99, 99, 99, 255),
  332. model = "models/tfa/comm/gg/pm_sw_obiwan_alt.mdl",
  333. description = [[]],
  334. weapons = {"weapon_lightsaber"},
  335. command = "B31",
  336. max = 1,
  337. salary = 0,
  338. admin = 0,
  339. vote = false,
  340. hasLicense = false,
  341. candemote = false,
  342. category = "Jedi",
  343. customCheck = function(ply) return ply:GetUserGroup() == "Obiwan" or ply:IsAdmin() end,
  344. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  345. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  346. })
  347.  
  348. TEAM_B1 = DarkRP.createJob("Ahsoka", {
  349. color = Color(99, 99, 99, 255),
  350. model = "models/tfa/comm/gg/pm_sw_ahsoka_v2.mdl",
  351. description = [[]],
  352. weapons = {"weapon_lightsaber"},
  353. command = "B32",
  354. max = 1,
  355. salary = 0,
  356. admin = 0,
  357. vote = false,
  358. hasLicense = false,
  359. candemote = false,
  360. category = "Jedi",
  361. customCheck = function(ply) return ply:GetUserGroup() == "Ahsoka" or ply:IsAdmin() end,
  362. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  363. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  364. })
  365.  
  366. TEAM_B1 = DarkRP.createJob("Fisto", {
  367. color = Color(99, 99, 99, 255),
  368. model = "models/tfa/comm/gg/pm_sw_fisto.mdl",
  369. description = [[]],
  370. weapons = {"weapon_lightsaber"},
  371. command = "B33",
  372. max = 1,
  373. salary = 0,
  374. admin = 0,
  375. vote = false,
  376. hasLicense = false,
  377. candemote = false,
  378. category = "Jedi",
  379. customCheck = function(ply) return ply:GetUserGroup() == "Fisto" or ply:IsAdmin() end,
  380. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  381. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  382. })
  383.  
  384. TEAM_B1 = DarkRP.createJob("Mundi", {
  385. color = Color(99, 99, 99, 255),
  386. model = "models/tfa/comm/gg/pm_sw_mundi.mdl",
  387. description = [[]],
  388. weapons = {"weapon_lightsaber"},
  389. command = "B34",
  390. max = 1,
  391. salary = 0,
  392. admin = 0,
  393. vote = false,
  394. hasLicense = false,
  395. candemote = false,
  396. category = "Jedi",
  397. customCheck = function(ply) return ply:GetUserGroup() == "Mundi" or ply:IsAdmin() end,
  398. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  399. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  400. })
  401.  
  402. TEAM_B1 = DarkRP.createJob("Aayala", {
  403. color = Color(99, 99, 99, 255),
  404. model = "models/tfa/comm/gg/pm_sw_aayala.mdl",
  405. description = [[]],
  406. weapons = {"weapon_lightsaber"},
  407. command = "B35",
  408. max = 1,
  409. salary = 0,
  410. admin = 0,
  411. vote = false,
  412. hasLicense = false,
  413. candemote = false,
  414. category = "Jedi",
  415. customCheck = function(ply) return ply:GetUserGroup() == "Aayala" or ply:IsAdmin() end,
  416. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  417. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  418. })
  419.  
  420. TEAM_B1 = DarkRP.createJob("B1 Battle Droid", {
  421. color = Color(99, 99, 99, 255),
  422. model = "models/tfa/comm/gg/pm_sw_droid_b1.mdl",
  423. description = [[]],
  424. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  425. command = "B1",
  426. max = 0,
  427. salary = 0,
  428. admin = 0,
  429. vote = false,
  430. hasLicense = false,
  431. candemote = false,
  432. category = "Battledroid",
  433. customCheck = function(ply) return ply:GetUserGroup() == "B1 Battle Droid" or ply:IsAdmin() end,
  434. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“500") ply:SetGravity(1) return CLIENT end,
  435. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  436. })
  437.  
  438. TEAM_B1 = DarkRP.createJob("B1 General Droid", {
  439. color = Color(99, 99, 99, 255),
  440. model = "models/tfa/comm/gg/pm_sw_g_droid_b1.mdl",
  441. description = [[]],
  442. weapons = {"weapon_752_e5", "weapon_752_se14c", "droid"},
  443. command = "B1G”,
  444. max = 1,
  445. salary = 0,
  446. admin = 0,
  447. vote = false,
  448. hasLicense = false,
  449. candemote = false,
  450. category = "Battledroid",
  451. customCheck = function(ply) return ply:GetUserGroup() == "B1 OOM Commander Droid" or ply:IsAdmin() end,
  452. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“800") ply:SetGravity(1) return CLIENT end,
  453. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  454. })
  455.  
  456. TEAM_B1 = DarkRP.createJob("B1 SSA - Battle Droid", {
  457. color = Color(99, 99, 99, 255),
  458. model = "models/player/sgg/starwars/battledroid_security.mdl",
  459. description = [[]],
  460. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  461. command = “SSA”,
  462. max = 0,
  463. salary = 0,
  464. admin = 0,
  465. vote = false,
  466. hasLicense = false,
  467. candemote = false,
  468. category = "Security Droid",
  469. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Battle Droid" or ply:IsAdmin() end,
  470. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“600") ply:SetGravity(1) return CLIENT end,
  471. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  472. })
  473.  
  474. TEAM_B1 = DarkRP.createJob("B1 SSA - Commander Droid", {
  475. color = Color(99, 99, 99, 255),
  476. model = "models/player/deckboy/battle_droid_pm/assault_droid_pm.mdl",
  477. description = [[]],
  478. weapons = {"weapon_80watt", "weapon_752_se14c", "droid", "stunstick", "unarrest_stick", "arrest_stick"},
  479. command = “SSAC”,
  480. max = 1,
  481. salary = 0,
  482. admin = 0,
  483. vote = false,
  484. hasLicense = false,
  485. candemote = false,
  486. category = "Security Droid",
  487. customCheck = function(ply) return ply:GetUserGroup() == "B1 SSA - Commander Droid" or ply:IsAdmin() end,
  488. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“700") ply:SetGravity(1) return CLIENT end,
  489. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  490. })
  491.  
  492. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid", {
  493. color = Color(99, 99, 99, 255),
  494. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  495. description = [[]],
  496. weapons = {"b2_gun"},
  497. command = “SBD”,
  498. max = 0,
  499. salary = 0,
  500. admin = 0,
  501. vote = false,
  502. hasLicense = false,
  503. candemote = false,
  504. category = "B1 - Super Battle Droid",
  505. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid" or ply:IsAdmin() end,
  506. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“1000") ply:SetGravity(1) return CLIENT end,
  507. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  508. })
  509.  
  510. TEAM_B1 = DarkRP.createJob("B1 - Super Battle Droid Commander”, {
  511. color = Color(99, 99, 99, 255),
  512. model = "models/tfa/comm/gg/pm_sw_droid_b2.mdl",
  513. description = [[]],
  514. weapons = {"b2_gun", "b2_cannon"},
  515. command = “SBDC”,
  516. max = 0,
  517. salary = 0,
  518. admin = 0,
  519. vote = false,
  520. hasLicense = false,
  521. candemote = false,
  522. category = "Super Battle Droid",
  523. customCheck = function(ply) return ply:GetUserGroup() == "B1 - Super Battle Droid Commander” or ply:IsAdmin() end,
  524. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“1200") ply:SetGravity(1) return CLIENT end,
  525. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  526. })
  527.  
  528. TEAM_B1 = DarkRP.createJob(“Commando Droid”, {
  529. color = Color(99, 99, 99, 255),
  530. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl",
  531. description = [[]],
  532. weapons = {"weapon_chatterbox_minigun", "weapon_jew_x8_night"},
  533. command = “CD”,
  534. max = 0,
  535. salary = 0,
  536. admin = 0,
  537. vote = false,
  538. hasLicense = false,
  539. candemote = false,
  540. category = "Commando Droids",
  541. customCheck = function(ply) return ply:GetUserGroup() == "Commando Droid“ or ply:IsAdmin() end,
  542. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“800") ply:SetGravity(1) return CLIENT end,
  543. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  544. })
  545.  
  546. TEAM_B1 = DarkRP.createJob("B1 - Commando Droid Commander”, {
  547. color = Color(99, 99, 99, 255),
  548. model = "models/tfa/comm/gg/pm_sw_droid_commando.mdl”,
  549. description = [[]],
  550. weapons = {"weapon_chatterbox_minigun", "weapon_jew_x8_night"},
  551. command = “CDC”,
  552. max = 0,
  553. salary = 0,
  554. admin = 0,
  555. vote = false,
  556. hasLicense = false,
  557. candemote = false,
  558. category = "Commando Droids",
  559. customCheck = function(ply) return ply:GetUserGroup() == “Commando Droid Commander” or ply:IsAdmin() end,
  560. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) ply:SetHealth(“900") ply:SetGravity(1) return CLIENT end,
  561. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  562. })
  563.  
  564. TEAM_B1 = DarkRP.createJob(“Sith Learner”, {
  565. color = Color(99, 99, 99, 255),
  566. model = {
  567. "models/grealms/characters/sithtrainee/sithtrainee_01.mdl",
  568. "models/grealms/characters/sithtrainee/sithtrainee_02.mdl",
  569. "models/grealms/characters/sithtrainee/sithtrainee_03.mdl",
  570. "models/grealms/characters/sithtrainee/sithtrainee_04.mdl",
  571. "models/grealms/characters/sithtrainee/sithtrainee_05.mdl",
  572. "models/grealms/characters/sithtrainee/sithtrainee_06.mdl",
  573. "models/grealms/characters/sithtrainee/sithtrainee_07.mdl",
  574. "models/grealms/characters/sithtrainee/sithtrainee_08.mdl",
  575. "models/grealms/characters/sithtrainee/sithtrainee_09.mdl",
  576. },
  577. description = [[]],
  578. weapons = {"weapon_lightsaber"},
  579. command = “sithlearner”
  580. max = 0,
  581. salary = 0,
  582. admin = 0,
  583. vote = false,
  584. hasLicense = false,
  585. candemote = false,
  586. scale = 1.2,
  587. category = "Sith",
  588. customCheck = function(ply) return ply:GetUserGroup() == “Sith Learner” or ply:IsAdmin() end,
  589. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“1500”) ply:SetGravity(1) return CLIENT end,
  590. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  591. })
  592.  
  593. TEAM_B1 = DarkRP.createJob(“Sith Apprentice”, {
  594. color = Color(99, 99, 99, 255),
  595. model = {
  596. "models/player/x227man/mkotor_1.mdl",
  597. "models/player/x227man/mkotor_2.mdl
  598. "models/player/x227man/mkotor_3.mdl
  599. "models/player/x227man/mkotor_4.mdl
  600. "models/player/x227man/mkotor_5.mdl
  601. "models/player/x227man/mkotor_6.mdl
  602. "models/player/x227man/mkotor_7.mdl
  603. "models/player/x227man/mkotor_8.mdl
  604. "models/player/x227man/mkotor_9.mdl
  605. },
  606. description = [[]],
  607. weapons = {"weapon_lightsaber"},
  608. command = “sithapprentice”
  609. max = 0,
  610. salary = 0,
  611. admin = 0,
  612. vote = false,
  613. hasLicense = false,
  614. candemote = false,
  615. scale = 1.2,
  616. category = "Sith",
  617. customCheck = function(ply) return ply:GetUserGroup() == “Sith Apprentice” or ply:IsAdmin() end,
  618. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“1800”) ply:SetGravity(1) return CLIENT end,
  619. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  620. })
  621.  
  622. TEAM_B1 = DarkRP.createJob(“Sith Knight”, {
  623. color = Color(99, 99, 99, 255),
  624. model = {
  625. "models/grealms/characters/jedibattlelord/jedibattlelord_1.mdl",
  626. "models/grealms/characters/jedibattlelord/jedibattlelord_2.mdl",
  627. "models/grealms/characters/jedibattlelord/jedibattlelord_3.mdl",
  628. "models/grealms/characters/jedibattlelord/jedibattlelord_4.mdll",
  629. "models/grealms/characters/jedibattlelord/jedibattlelord_5.mdl",
  630. "models/grealms/characters/jedibattlelord/jedibattlelord_6.mdl"
  631. "models/grealms/characters/jedibattlelord/jedibattlelord_7.mdl"
  632. "models/grealms/characters/jedibattlelord/jedibattlelord_8.mdl"
  633. "models/grealms/characters/jedibattlelord/jedibattlelord_9.mdl"
  634. "models/grealms/characters/jedibattlelord/jedibattlelord.mdl"
  635. },
  636. description = [[]],
  637. weapons = {"weapon_lightsaber"},
  638. command = “sithknight”
  639. max = 0,
  640. salary = 0,
  641. admin = 0,
  642. vote = false,
  643. hasLicense = false,
  644. candemote = false,
  645. scale = 1.2,
  646. category = "Sith",
  647. customCheck = function(ply) return ply:GetUserGroup() == “Sith Knight“ or ply:IsAdmin() end,
  648. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth("2000”) ply:SetBodygroup(1, 1) ply:SetGravity(1) return CLIENT end,
  649. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  650. })
  651.  
  652. TEAM_B1 = DarkRP.createJob(“Sith Master”, {
  653. color = Color(99, 99, 99, 255),
  654. model = {"models/grealms/characters/darkjedi/darkjedi.mdl",},
  655. description = [[]],
  656. weapons = {"weapon_lightsaber"},
  657. command = “sithmaster”
  658. max = 0,
  659. salary = 0,
  660. admin = 0,
  661. vote = false,
  662. hasLicense = false,
  663. candemote = false,
  664. scale = 1.2,
  665. category = "Sith",
  666. customCheck = function(ply) return ply:GetUserGroup() == “Sith Master“ or ply:IsAdmin() end,
  667. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth("2500”) ply:SetBodygroup(1, 1) ply:SetGravity(1) return CLIENT end,
  668. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  669. })
  670.  
  671. TEAM_B1 = DarkRP.createJob(“Dooku“, {
  672. color = Color(99, 99, 99, 255),
  673. model = "models/tfa/comm/gg/pm_sw_dooku.mdl",
  674. description = [[]],
  675. weapons = {"weapon_lightsaber"},
  676. command = “Dooku””
  677. max = 1,
  678. salary = 0,
  679. admin = 0,
  680. vote = false,
  681. hasLicense = false,
  682. candemote = false,
  683. scale = 1.2,
  684. category = "Sith",
  685. customCheck = function(ply) return ply:GetUserGroup() == "Dooku" or ply:IsAdmin() end,
  686. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  687. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  688. })
  689.  
  690. TEAM_B1 = DarkRP.createJob("Maul", {
  691. color = Color(99, 99, 99, 255),
  692. model = "models/tfa/comm/gg/pm_sw_cyberdarthmaul.mdl",
  693. description = [[]],
  694. weapons = {"weapon_lightsaber"},
  695. command = “maul”,
  696. max = 1,
  697. salary = 0,
  698. admin = 0,
  699. vote = false,
  700. hasLicense = false,
  701. candemote = false,
  702. scale = 1.2,
  703. category = "Sith",
  704. customCheck = function(ply) return ply:GetUserGroup() == "Maul" or ply:IsAdmin() end,
  705. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  706. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  707. })
  708.  
  709. TEAM_B1 = DarkRP.createJob("Grievous", {
  710. color = Color(99, 99, 99, 255),
  711. model = "models/tfa/comm/gg/pm_sw_grievous_nocloak.mdl",
  712. description = [[]],
  713. weapons = {"weapon_lightsaber"},
  714. command = “grievous”,
  715. max = 1,
  716. salary = 0,
  717. admin = 0,
  718. vote = false,
  719. hasLicense = false,
  720. candemote = false,
  721. category = "Sith",
  722. customCheck = function(ply) return ply:GetUserGroup() == "Grievous" or ply:IsAdmin() end,
  723. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  724. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  725. })
  726.  
  727. TEAM_B1 = DarkRP.createJob(“Zakuul Knight”, {
  728. color = Color(99, 99, 99, 255),
  729. model = "models/grealms/characters/imperial/imperial.mdl",
  730. description = [[]],
  731. weapons = {"weapon_lightsaber", "weapon_752_ihr"},
  732. command = “zk”,
  733. max = 0,
  734. salary = 0,
  735. admin = 0,
  736. vote = false,
  737. hasLicense = false,
  738. candemote = false,
  739. category = “Eternal Empire“,
  740. customCheck = function(ply) return ply:GetUserGroup() == “Zakuul Knight“ or ply:IsAdmin() end,
  741. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“1500") ply:SetGravity(1) return CLIENT end,
  742. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  743. })
  744.  
  745. TEAM_B1 = DarkRP.createJob(“Prince Arcann”, {
  746. color = Color(99, 99, 99, 255),
  747. model = "models/grealms/characters/imperial/imperial.mdl",
  748. description = [[]],
  749. weapons = {"weapon_lightsaber"},
  750. command = “pa”,
  751. max = 0,
  752. salary = 0,
  753. admin = 0,
  754. vote = false,
  755. hasLicense = false,
  756. candemote = false,
  757. category = “Eternal Empire“,
  758. customCheck = function(ply) return ply:GetUserGroup() == “Prince Arcann“ or ply:IsAdmin() end,
  759. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  760. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  761. })
  762.  
  763. TEAM_B1 = DarkRP.createJob(“Prince Thexan”, {
  764. color = Color(99, 99, 99, 255),
  765. model = "models/grealms/twins/twins_black/twins_black.mdll",
  766. description = [[]],
  767. weapons = {"weapon_lightsaber"},
  768. command = “pt”,
  769. max = 0,
  770. salary = 0,
  771. admin = 0,
  772. vote = false,
  773. hasLicense = false,
  774. candemote = false,
  775. category = “Eternal Empire“,
  776. customCheck = function(ply) return ply:GetUserGroup() == “Prince Thexan“ or ply:IsAdmin() end,
  777. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“2500") ply:SetGravity(1) return CLIENT end,
  778. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  779. })
  780.  
  781. TEAM_B1 = DarkRP.createJob(“Emperor Valkolorian”, {
  782. color = Color(99, 99, 99, 255),
  783. model = "models/grealms/characters/imperial/imperial.mdl",
  784. description = [[]],
  785. weapons = {"weapon_lightsaber"},
  786. command = “ev”,
  787. max = 0,
  788. salary = 0,
  789. admin = 0,
  790. vote = false,
  791. hasLicense = false,
  792. candemote = false,
  793. category = "Battledroid",
  794. customCheck = function(ply) return ply:GetUserGroup() == “Emperor Valkolorian“ or ply:IsAdmin() end,
  795. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 400) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  796. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  797. })
  798.  
  799. TEAM_B1 = DarkRP.createJob(“AE Trooper”, {
  800. color = Color(99, 99, 99, 255),
  801. model = "models/grealms/characters/imperial/imperial.mdl",
  802. description = [[]],
  803. weapons = {"weapon_752_ihr", "weapon_752_dsbp"},
  804. command = “aetrooper”,
  805. max = 0,
  806. salary = 0,
  807. admin = 0,
  808. vote = false,
  809. hasLicense = false,
  810. candemote = false,
  811. category = “Ancient Empire“,
  812. customCheck = function(ply) return ply:GetUserGroup() == “Imperial Trooper“ or ply:IsAdmin() end,
  813. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1000) ply:SetHealth(“1500") ply:SetGravity(1) return CLIENT end,
  814. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  815. })
  816.  
  817. TEAM_B1 = DarkRP.createJob(“Ravenite”, {
  818. color = Color(99, 99, 99, 255),
  819. model = "models/grealms/characters/revan/revan.mdl",
  820. description = [[]],
  821. weapons = {"weapon_lightsaber"},
  822. command = “rave nite”,
  823. max = 0,
  824. salary = 0,
  825. admin = 0,
  826. vote = false,
  827. hasLicense = false,
  828. candemote = false,
  829. category = “Ancient Empire“,
  830. customCheck = function(ply) return ply:GetUserGroup() == “Ravenite“ or ply:IsAdmin() end,
  831. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 2500) ply:SetHealth(“2000") ply:SetGravity(1) return CLIENT end,
  832. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  833. }
  834.  
  835. TEAM_B1 = DarkRP.createJob(“Raven”, {
  836. color = Color(99, 99, 99, 255),
  837. model = "models/grealms/characters/revan_real/revan.mdl",
  838. description = [[]],
  839. weapons = {"weapon_lightsaber"},
  840. command = “raven”,
  841. max = 0,
  842. salary = 0,
  843. admin = 0,
  844. vote = false,
  845. hasLicense = false,
  846. candemote = false,
  847. category = “Ancient Empire“,
  848. customCheck = function(ply) return ply:GetUserGroup() == “Raven“ or ply:IsAdmin() end,
  849. PlayerSpawn = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 3000) ply:SetHealth(“3000") ply:SetGravity(1) return CLIENT end,
  850. PlayerDeath = function(ply) GAMEMODE:SetPlayerSpeed(ply, GAMEMODE.Config.walkspeed * 1, GAMEMODE.Config.runspeed * 1) return CLIENT end
  851. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement