Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.57 KB | None | 0 0
  1. TEAM_41STTROOPER = DarkRP.createJob("41st Trooper", {
  2. color = Color(3, 80, 0),
  3. model = {"models/player/doom/starwars/trooper.mdl"},
  4. description = [[You Are A 41st Trooper]],
  5. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  6. category = "41st",
  7. command = "/41sttrp",
  8. max = 100,
  9. salary = 500,
  10. admin = 0,
  11. vote = false,
  12. modelScale = 1,
  13. hasLicense = false,
  14. PlayerLoadout = function(ply)
  15. ply:SetHealth(300)
  16. end,
  17. })
  18.  
  19. TEAM_41STPRIVATE = DarkRP.createJob("41st Private", {
  20. color = Color(3, 80, 0),
  21. model = {"models/player/doom/starwars/trooper.mdl"},
  22. description = [[You Are A 41st PVT]],
  23. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  24. category = "41st",
  25. command = "/41stpvt",
  26. max = 100,
  27. salary = 500,
  28. admin = 0,
  29. vote = false,
  30. modelScale = 1,
  31. hasLicense = false,
  32. PlayerLoadout = function(ply)
  33. ply:SetHealth(300)
  34. end,
  35. })
  36.  
  37. TEAM_41STCORPORAL = DarkRP.createJob("41st Corporal", {
  38. color = Color(3, 80, 0),
  39. model = {"models/player/doom/starwars/trooper.mdl"},
  40. description = [[You Are A 41st CPL]],
  41. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  42. category = "41st",
  43. command = "/41stcpl",
  44. max = 100,
  45. salary = 500,
  46. admin = 0,
  47. vote = false,
  48. modelScale = 1,
  49. hasLicense = false,
  50. PlayerLoadout = function(ply)
  51. ply:SetHealth(300)
  52. end,
  53. })
  54.  
  55. TEAM_41STSERGEANT = DarkRP.createJob("41st Sergeant", {
  56. color = Color(3, 80, 0),
  57. model = {"models/player/doom/starwars/sharp.mdl"},
  58. description = [[You Are A 41st SGT]],
  59. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  60. category = "41st",
  61. command = "/41stsgt",
  62. max = 8,
  63. salary = 500,
  64. admin = 0,
  65. vote = false,
  66. modelScale = 1,
  67. hasLicense = false,
  68. PlayerLoadout = function(ply)
  69. ply:SetHealth(400)
  70. end,
  71. })
  72.  
  73. TEAM_41ST2NDLIEUTENANT = DarkRP.createJob("41st 2nd Lieutenant", {
  74. color = Color(3, 80, 0),
  75. model = {"models/player/doom/starwars/lieutenant.mdl"},
  76. description = [[You Are A 41st 2LT]],
  77. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  78. category = "41st",
  79. command = "/41st2lt",
  80. max = 5,
  81. salary = 500,
  82. admin = 0,
  83. vote = false,
  84. modelScale = 1,
  85. hasLicense = false,
  86. PlayerLoadout = function(ply)
  87. ply:SetHealth(500)
  88. end,
  89. })
  90.  
  91. TEAM_41STLIEUTENANT = DarkRP.createJob("41st Lieutenant", {
  92. color = Color(3, 80, 0),
  93. model = {"models/player/doom/starwars/lieutenant.mdl"},
  94. description = [[You Are A 41st 1LT]],
  95. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  96. category = "41st",
  97. command = "/41st1lt",
  98. max = 5,
  99. salary = 500,
  100. admin = 0,
  101. vote = false,
  102. modelScale = 1,
  103. hasLicense = false,
  104. PlayerLoadout = function(ply)
  105. ply:SetHealth(500)
  106. end,
  107. })
  108.  
  109. TEAM_41STCAPTAIN = DarkRP.createJob("41st Captain", {
  110. color = Color(3, 80, 0),
  111. model = {"models/player/doom/starwars/lieutenant.mdl"},
  112. description = [[You Are A 41st CPT]],
  113. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  114. category = "41st",
  115. command = "/41stcpt",
  116. max = 5,
  117. salary = 500,
  118. admin = 0,
  119. vote = false,
  120. modelScale = 1,
  121. hasLicense = false,
  122. PlayerLoadout = function(ply)
  123. ply:SetHealth(500)
  124. end,
  125. })
  126.  
  127. TEAM_41STMAJOR = DarkRP.createJob("41st Major", {
  128. color = Color(3, 80, 0),
  129. model = {"models/player/doom/starwars/elite.mdl"},
  130. description = [[You Are A 41st MJR]],
  131. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  132. category = "41st",
  133. command = "/41stmjr",
  134. max = 2,
  135. salary = 500,
  136. admin = 0,
  137. vote = false,
  138. modelScale = 1,
  139. hasLicense = false,
  140. PlayerLoadout = function(ply)
  141. ply:SetHealth(750)
  142. end,
  143. })
  144.  
  145. TEAM_41STCOLONEL = DarkRP.createJob("41st Colonel", {
  146. color = Color(3, 80, 0),
  147. model = {"models/player/doom/starwars/elite.mdl"},
  148. description = [[You Are A 41st COL]],
  149. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c1","weapon_jew_iondisruptor","realistic_hook"},
  150. category = "41st",
  151. command = "/41stcol",
  152. max = 2,
  153. salary = 500,
  154. admin = 0,
  155. vote = false,
  156. modelScale = 1,
  157. hasLicense = false,
  158. PlayerLoadout = function(ply)
  159. ply:SetHealth(750)
  160. end,
  161. })
  162.  
  163. TEAM_41STEXECUTIVECOMMANDER = DarkRP.createJob("41st Executive Commander", {
  164. color = Color(3, 80, 0),
  165. model = {"models/player/doom/starwars/doom.mdl"},
  166. description = [[You Are The 41st XO!]],
  167. weapons = {"weapon_752_ihr","weapon_752_dsbp","clone_card_c3","weapon_cuff_elastic","gmod_tool","weapon_physgun","weapon_stungun","weapon_jew_iondisruptor","realistic_hook"},
  168. category = "41st",
  169. command = "/41stxo",
  170. max = 2,
  171. salary = 500,
  172. admin = 0,
  173. vote = false,
  174. modelScale = 1,
  175. hasLicense = false,
  176. PlayerLoadout = function(ply)
  177. ply:SetHealth(1000)
  178. end,
  179. })
  180.  
  181. TEAM_41STCOMMANDER = DarkRP.createJob("41st Commander", {
  182. color = Color(3, 80, 0),
  183. model = {"models/player/doom/starwars/doom.mdl"},
  184. description = [[You Are The 41st CO!]],
  185. weapons = {"weapon_752_dsbp","weapon_752_ihr","clone_card_c3","weapon_jew_iondisruptor","weapon_cuff_elastic","gmod_tool","weapon_physgun","weapon_stungun","realistic_hook"},
  186. category = "41st",
  187. command = "/41stco",
  188. max = 2,
  189. salary = 500,
  190. admin = 0,
  191. vote = false,
  192. modelScale = 1,
  193. hasLicense = false,
  194. PlayerLoadout = function(ply)
  195. ply:SetHealth(1000)
  196. end,
  197. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement