Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.19 KB | None | 0 0
  1.  
  2. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Private", {
  3. color = Color(87, 85, 85, 255),
  4. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  5. description = [[Executioner Private]],
  6. weapons = {"bf2017_fwmb10", "bf2017_se44c"},
  7. command = "exepvt",
  8. max = 0,
  9. salary = 200,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = true,
  13. candemote = false,
  14. category = "Executioners",
  15. PlayerSpawn = function(ply)
  16. ply:SetMaxHealth(200)
  17. ply:SetHealth(200)
  18. ply:SetArmor(100)
  19. end
  20. })
  21.  
  22.  
  23. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Corporal", {
  24. color = Color(87, 85, 85, 255),
  25. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  26. description = [[Executioner Corporal]],
  27. weapons = {"bf2017_fwmb10", "bf2017_se44c"},
  28. command = "execpl",
  29. max = 0,
  30. salary = 250,
  31. admin = 0,
  32. vote = false,
  33. hasLicense = true,
  34. candemote = false,
  35. category = "Executioners",
  36. PlayerSpawn = function(ply)
  37. ply:SetMaxHealth(250)
  38. ply:SetHealth(250)
  39. ply:SetArmor(100)
  40. end
  41. })
  42.  
  43.  
  44. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Sergeant", {
  45. color = Color(87, 85, 85, 255),
  46. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  47. description = [[Executioner Sergeant]],
  48. weapons = {"bf2017_fwmb10", "bf2017_se44c", "weapon_iondisruptor"},
  49. command = "exesgt",
  50. max = 0,
  51. salary = 300,
  52. admin = 0,
  53. vote = false,
  54. hasLicense = true,
  55. candemote = false,
  56. category = "Executioners",
  57. PlayerSpawn = function(ply)
  58. ply:SetMaxHealth(300)
  59. ply:SetHealth(300)
  60. ply:SetArmor(100)
  61. end
  62. })
  63.  
  64.  
  65. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Warrant Officer", {
  66. color = Color(87, 85, 85, 255),
  67. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  68. description = [[Executioner Warrant officer]],
  69. weapons = {"bf2017_fwmb10", "bf2017_se44c", "weapon_iondisruptor"},
  70. command = "exewo",
  71. max = 0,
  72. salary = 350,
  73. admin = 0,
  74. vote = false,
  75. hasLicense = true,
  76. candemote = false,
  77. category = "Executioners",
  78. PlayerSpawn = function(ply)
  79. ply:SetMaxHealth(350)
  80. ply:SetHealth(350)
  81. ply:SetArmor(100)
  82. end
  83. })
  84.  
  85.  
  86. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Lieutenant", {
  87. color = Color(87, 85, 85, 255),
  88. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  89. description = [[Executioner Lieutenant]],
  90. weapons = {"bf2017_fwmb10", "bf2017_se44c", "weapon_iondisruptor"},
  91. command = "exelt",
  92. max = 0,
  93. salary = 400,
  94. admin = 0,
  95. vote = false,
  96. hasLicense = true,
  97. candemote = false,
  98. category = "Executioners",
  99. PlayerSpawn = function(ply)
  100. ply:SetMaxHealth(400)
  101. ply:SetHealth(400)
  102. ply:SetArmor(100)
  103. end
  104. })
  105.  
  106.  
  107. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Officer", {
  108. color = Color(87, 85, 85, 255),
  109. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  110. description = [[Executioner Officer]],
  111. weapons = {"bf2017_fwmb10", "bf2017_se44c", "weapon_iondisruptor", "weapon_swrc_det"},
  112. command = "exeofficer",
  113. max = 0,
  114. salary = 450,
  115. admin = 0,
  116. vote = false,
  117. hasLicense = true,
  118. candemote = false,
  119. category = "Executioners",
  120. PlayerSpawn = function(ply)
  121. ply:SetMaxHealth(450)
  122. ply:SetHealth(450)
  123. ply:SetArmor(100)
  124. end
  125. })
  126.  
  127.  
  128. TEAM_EXECUTIONER = DarkRP.createJob("Executioner Commander", {
  129. color = Color(87, 85, 85, 255),
  130. model = {"models/ven/kryptonite/sbii_fotrooper/sbii_executionerfotrooper.mdl"},
  131. description = [[Executioner Commander]],
  132. weapons = {"bf2017_fwmb10", "bf2017_se44c", "weapon_iondisruptor", "weapon_swrc_det"},
  133. command = "execmdr",
  134. max = 0,
  135. salary = 500,
  136. admin = 0,
  137. vote = false,
  138. hasLicense = true,
  139. candemote = false,
  140. category = "Executioners",
  141. PlayerSpawn = function(ply)
  142. ply:SetMaxHealth(500)
  143. ply:SetHealth(500)
  144. ply:SetArmor(100)
  145. end
  146. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement