Advertisement
SIR1232

Untitled

Jan 23rd, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.52 KB | None | 0 0
  1. TEAM_SWATS = DarkRP.createJob("Swat Security Agent", {
  2. color = Color(20, 150, 20, 255),
  3. model = {
  4. "models/player/pmc_5/pmc__05.mdl"
  5. },
  6. description = [[SWAT (Special Weapons and Tactics) officers are members of highly trained paramilitary units that tackle situations beyond the capability of conventional police forces. SWAT teams are called in when an incident presents significant risk to law enforcement officers or the public.]],
  7. weapons = {},
  8. command = "SWATS",
  9. max = 3,
  10. salary = 1500,
  11. admin = 0,
  12. vote = true,
  13. hasLicense = true,
  14. candemote = true,
  15. category = "Swat",
  16. })
  17. TEAM_SWATB = DarkRP.createJob("Swat Breacher", {
  18. color = Color(20, 150, 20, 255),
  19. model = {
  20. "models/player/pmc_5/pmc__07.mdl"
  21. },
  22. description = [[You as the breacher are the person who breaks down the door for the team to move in.]],
  23. weapons = {},
  24. command = "SWATB",
  25. max = 1,
  26. salary = 1800,
  27. admin = 0,
  28. vote = true,
  29. hasLicense = true,
  30. candemote = true,
  31. category = "Swat",
  32. })
  33. TEAM_SWATB = DarkRP.createJob("Swat Leader", {
  34. color = Color(20, 150, 20, 255),
  35. model = {
  36. "models/player/pmc_5/pmc__01.mdl"
  37. },
  38. description = [[You as the Swat Leader are the person who commands other Swat members and have the finally say on any task ahand.]],
  39. weapons = {},
  40. command = "SWATL",
  41. max = 1,
  42. salary = 2500,
  43. admin = 0,
  44. vote = true,
  45. hasLicense = true,
  46. candemote = true,
  47. category = "Swat",
  48. })
  49. TEAM_SWATSN= DarkRP.createJob("Swat Sniper", {
  50. color = Color(20, 150, 20, 255),
  51. model = {
  52. "models/player/pmc_5/pmc__08.mdl"
  53. },
  54. description = [[You as the Swat Sniper will have to take down tragets from a far.]],
  55. weapons = {"radio"},
  56. command = "SWATSN",
  57. max = 1,
  58. salary = 1900,
  59. admin = 0,
  60. vote = true,
  61. hasLicense = true,
  62. candemote = true,
  63. category = "Swat",
  64. })
  65. TEAM_SWATM= DarkRP.createJob("Swat Medic", {
  66. color = Color(20, 150, 20, 255),
  67. model = {
  68. "models/player/pmc_5/pmc__02.mdl"
  69. },
  70. description = [[You as the Swat Medic will help fallen mambers.]],
  71. weapons = {},
  72. command = "SWATM",
  73. max = 1,
  74. salary = 1900,
  75. admin = 0,
  76. vote = true,
  77. hasLicense = true,
  78. candemote = true,
  79. category = "Swat",
  80. })
  81. TEAM_POLICE= DarkRP.createJob("Police Officer", {
  82. color = Color(20, 150, 20, 255),
  83. model = {
  84. "models/ecpd/male_06_npc.mdl"
  85. },
  86. description = [[As a police Officer you will protect civs and stop crime.]],
  87. weapons = {},
  88. command = "POLICE",
  89. max = 5,
  90. salary = 800,
  91. admin = 0,
  92. vote = true,
  93. hasLicense = true,
  94. candemote = true,
  95. category = "Police Officer",
  96. })
  97. TEAM_STATE= DarkRP.createJob("State Trooper", {
  98. color = Color(20, 150, 20, 255),
  99. model = {
  100. "models/gta5/npc/deputy.mdl"
  101. },
  102. description = [[As a State Trooper you will protect civs and stop crime outside city limits.]],
  103. weapons = {},
  104. command = "STATE",
  105. max = 3,
  106. salary = 1100,
  107. admin = 0,
  108. vote = true,
  109. hasLicense = true,
  110. candemote = true,
  111. category = "State Trooper",
  112. })
  113. TEAM_POLICEC= DarkRP.createJob("Police Chief", {
  114. color = Color(20, 150, 20, 255),
  115. model = {
  116. "models/gta5/npc/armoredcitycop.mdl"
  117. },
  118. description = [[As a Police Chief you command the police force.]],
  119. weapons = {},
  120. command = "POLICEC",
  121. max = 1,
  122. salary = 3800,
  123. admin = 0,
  124. vote = true,
  125. hasLicense = true,
  126. candemote = true,
  127. category = "Police Officer",
  128. })
  129. TEAM_POLICELT= DarkRP.createJob("LT.Police Officer", {
  130. color = Color(20, 150, 20, 255),
  131. model = {
  132. "models/gta5/npc/armoredcitycop.mdl"
  133. },
  134. description = [[As a Police Lieutenant you are the right hand man for the Police Chief.]],
  135. weapons = {},
  136. command = "POLICELT",
  137. max = 1,
  138. salary = 2800,
  139. admin = 0,
  140. vote = true,
  141. hasLicense = true,
  142. candemote = true,
  143. category = "Police Officer",
  144. })
  145. TEAM_POLICES= DarkRP.createJob("Sargent.Police Officer", {
  146. color = Color(20, 150, 20, 255),
  147. model = {
  148. "models/gta5/npc/armoredcitycop.mdl"
  149. },
  150. description = [[As a Police Sargent you are a supervisor for other police officers.]],
  151. weapons = {},
  152. command = "POLICES",
  153. max = 1,
  154. salary = 2800,
  155. admin = 0,
  156. vote = true,
  157. hasLicense = true,
  158. candemote = true,
  159. category = "Police Officer",
  160. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement