Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.32 KB | None | 0 0
  1. TEAM_BDROID = DarkRP.createJob("Battle Droid", {
  2. color = Color(245, 10, 10, 255),
  3. model = {"models/tfa/comm/gg/pm_sw_droid_b1.mdl"},
  4. description = [[The Battle Droid is the basic unit used by the CIS to fight our troopers!]],
  5. weapons = {"tfa_swch_e5"},
  6. command = "bdroid",
  7. max = 0,
  8. salary = 70,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Event Jobs",
  14. PlayerSpawn = function(ply)
  15. ply:SetMaxHealth(500)
  16. ply:SetHealth(500)
  17. end
  18. })
  19.  
  20. TEAM_SITH = DarkRP.createJob("Sith", {
  21. color = Color(105, 39, 39, 255),
  22. model = {"models/grealms/characters/jedibattlelord/jedibattlelord_08.mdl"},
  23. description = [[The Sith gives into their own hatred and uses the power of the Darkside to destroy their enemies!]],
  24. weapons = {"weapon_lightsaber_assassin"},
  25. command = "sith",
  26. max = 0,
  27. salary = 70,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = false,
  31. candemote = false,
  32. category = "Event Jobs",
  33. PlayerSpawn = function(ply)
  34. ply:SetMaxHealth(4500)
  35. ply:SetHealth(4500)
  36. ply:SetBodygroup(1, 1)
  37. ply:SetBodygroup(1, 1)
  38. end
  39. })
  40.  
  41. TEAM_DOOKU = DarkRP.createJob("Count Dooku", {
  42. color = Color(105, 39, 39, 255),
  43. model = {"models/kriegsyntax/sw_752/dooku_est.mdl"},
  44. description = [[Count Dooku, also known as Darth Tyrannus, is a Sith Lord who used to be Apprentice to Master Yoda now a child of the Darkside.]],
  45. weapons = {"weapon_lightsaber_wos_demo2"},
  46. command = "dooku",
  47. max = 0,
  48. salary = 70,
  49. admin = 0,
  50. vote = false,
  51. hasLicense = false,
  52. candemote = false,
  53. category = "Event Jobs",
  54. PlayerSpawn = function(ply)
  55. ply:SetMaxHealth(5000)
  56. ply:SetHealth(5000)
  57. end
  58. })
  59.  
  60. TEAM_GRIEVOUS = DarkRP.createJob("General Grievous", {
  61. color = Color(43, 109, 122, 255),
  62. model = {"models/player/grievous.mdl"},
  63. description = [[General Grievous is the Droid General in charge of the CIS and was trained in the arts of Light Saber combat by Count Dooku.]],
  64. weapons = {"weapon_lightsaber_wos_dual"},
  65. command = "griev",
  66. max = 0,
  67. salary = 70,
  68. admin = 0,
  69. vote = false,
  70. hasLicense = false,
  71. candemote = false,
  72. category = "Event Jobs",
  73. PlayerSpawn = function(ply)
  74. ply:SetMaxHealth(5000)
  75. ply:SetHealth(5000)
  76. end
  77. })
  78.  
  79. TEAM_SUPERDROID = DarkRP.createJob("Super Battle Droid", {
  80. color = Color(250, 41, 41, 255),
  81. model = {"models/tfa/comm/gg/pm_sw_droid_b2.mdl"},
  82. description = [[The Super Battle Droid is a heavy armored droid armed with a wrist blaster and rocket launcher created to use as heavy resistance to standard clone forces.]],
  83. weapons = {"b2_gun", "b2_cannon"},
  84. command = "sbd",
  85. max = 0,
  86. salary = 70,
  87. admin = 0,
  88. vote = false,
  89. hasLicense = false,
  90. candemote = false,
  91. category = "Event Jobs",
  92. PlayerSpawn = function(ply)
  93. ply:SetMaxHealth(1000)
  94. ply:SetHealth(1000)
  95. ply:SetArmor(250)
  96. end
  97. })
  98.  
  99. TEAM_COMMANDODROID = DarkRP.createJob("Commando Droid", {
  100. color = Color(250, 41, 41, 255),
  101. model = {"models/tfa/comm/gg/pm_sw_droid_commando.mdl"},
  102. description = [[The Commando Droid was created to act as an Advanced Recon unit to spy on the Republic by the CIS. Primarily Notable for their ability to disguise as Clone Troopers. ]],
  103. weapons = {"tfa_sw_cisshot", "tfa_swch_e5"},
  104. command = "cdroid",
  105. max = 0,
  106. salary = 70,
  107. admin = 0,
  108. vote = false,
  109. hasLicense = false,
  110. candemote = false,
  111. category = "Event Jobs",
  112. PlayerSpawn = function(ply)
  113. ply:SetMaxHealth(750)
  114. ply:SetHealth(750)
  115. end
  116. })
  117.  
  118. TEAM_DROIDCMD = DarkRP.createJob("Droid Commander", {
  119. color = Color(237, 18, 18, 255),
  120. model = {"models/tfa/comm/gg/pm_sw_droid_commander.mdl"},
  121. description = [[Unlike the other Battle Droids, this one functions as a commanding officer to droids on the field. ]],
  122. weapons = {"tfa_swch_e5", "weapon_jew_e60r"},
  123. command = "cmddroid",
  124. max = 0,
  125. salary = 70,
  126. admin = 0,
  127. vote = false,
  128. hasLicense = false,
  129. candemote = false,
  130. category = "Event Jobs",
  131. PlayerSpawn = function(ply)
  132. ply:SetMaxHealth(800)
  133. ply:SetHealth(800)
  134. end
  135. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement