Advertisement
Guest User

Untitled

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