Advertisement
Guest User

Untitled

a guest
Nov 28th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.99 KB | None | 0 0
  1. --[[---------------------------------------------------------------------------
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4.  
  5. This file contains your custom jobs.
  6. This file should also contain jobs from DarkRP that you edited.
  7.  
  8. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  9. Once you've done that, copy and paste the job to this file and edit it.
  10.  
  11. The default jobs can be found here:
  12. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  13.  
  14. For examples and explanation please visit this wiki page:
  15. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  16.  
  17.  
  18. Add jobs under the following line:
  19. ---------------------------------------------------------------------------]]
  20.  
  21. TEAM_PATROL = DarkRP.createJob("Patrol Officer", {
  22. color = Color(0, 34, 255),
  23. model = {
  24. "models/player/nypd/male_02.mdl",
  25. "models/player/nypd/male_04.mdl",
  26. "models/player/nypd/male_05.mdl",
  27. "models/player/nypd/male_07.mdl",
  28. "models/player/nypd/male_08.mdl",
  29. "models/player/nypd/male_09.mdl"
  30. },
  31. description = [[Provide for public safety by maintaining order, responding to emergencies,
  32. protecting people and property, enforcing motor vehicle and criminal laws, and promoting good community relations.]],
  33. weapons = {},
  34. command = "patrol",
  35. max = 0,
  36. salary = GAMEMODE.Config.normalsalary,
  37. admin = 0,
  38. vote = false,
  39. hasLicense = true,
  40. candemote = false,
  41. category = "Government Official's",
  42. })
  43.  
  44. TEAM_DETECTIVE = DarkRP.createJob("Detective", {
  45. color = Color(0, 34, 255),
  46. model = {
  47. "models/player/nypd/male_02.mdl",
  48. "models/player/nypd/male_04.mdl",
  49. "models/player/nypd/male_05.mdl",
  50. "models/player/nypd/male_07.mdl",
  51. "models/player/nypd/male_08.mdl",
  52. "models/player/nypd/male_09.mdl"
  53. },
  54. description = [[Detectives work closely with their jurisdiction's Crime Scene Investigation Unit (CSI),
  55. which gathers the forensic evidence police detectives need to work their cases.
  56. They will continue to work diligently on a case until it is solved or until they can go no further with the
  57. evidence and other information they have gathered.]],
  58. weapons = {},
  59. command = "detective",
  60. max = 2,
  61. salary = 20,
  62. admin = 0,
  63. vote = false,
  64. hasLicense = true,
  65. candemote = true,
  66. category = "Government Official's",
  67. })
  68.  
  69. TEAM_SERGEANT = DarkRP.createJob("Police Medic", {
  70. color = Color(0, 34, 255),
  71. model = {
  72. "models/player/nypd/male_02.mdl",
  73. "models/player/nypd/male_04.mdl",
  74. "models/player/nypd/male_05.mdl",
  75. "models/player/nypd/male_07.mdl",
  76. "models/player/nypd/male_08.mdl",
  77. "models/player/nypd/male_09.mdl"
  78. },
  79. description = [[]],
  80. weapons = {},
  81. command = "pmed",
  82. max = 2,
  83. salary = 30,
  84. admin = 0,
  85. vote = false,
  86. hasLicense = true,
  87. candemote = true,
  88. category = "Government Official's",
  89. })
  90.  
  91. TEAM_LIEUTENANT = DarkRP.createJob("Police Sniper", {
  92. color = Color(0, 34, 255),
  93. model = {
  94. "models/player/nypd/male_02.mdl",
  95. "models/player/nypd/male_04.mdl",
  96. "models/player/nypd/male_05.mdl",
  97. "models/player/nypd/male_07.mdl",
  98. "models/player/nypd/male_08.mdl",
  99. "models/player/nypd/male_09.mdl"
  100. },
  101. description = [[Hang back snipe in only dangerous situations. (Only come for back up)]],
  102. weapons = {},
  103. command = "sniper",
  104. max = 2,
  105. salary = 40,
  106. admin = 0,
  107. vote = false,
  108. hasLicense = true,
  109. candemote = true,
  110. category = "Government Official's",
  111. })
  112.  
  113. TEAM_CAPTAIN = DarkRP.createJob("Police Captain (VIP)", {
  114. color = Color(0, 34, 255),
  115. model = {
  116. "models/player/nypd/male_02.mdl",
  117. "models/player/nypd/male_04.mdl",
  118. "models/player/nypd/male_05.mdl",
  119. "models/player/nypd/male_07.mdl",
  120. "models/player/nypd/male_08.mdl",
  121. "models/player/nypd/male_09.mdl"
  122. },
  123. description = [[ As a Commanding Officer of a patrol or detective division,
  124. the Captain is responsible for the following duties: inspecting and overseeing the functions of
  125. the patrol officers and detectives to ensure compliance with the Department policies,
  126. procedures, regulations and standards;
  127. supervising the administrative and support functions of non-sworn personnel;
  128. inspecting personnel, facilities, and tactics for safety and/or training needs;
  129. maintaining liaison with numerous municipal, government, civic organizations,
  130. and private citizens to establish and maintain rapport to facilitate Department’s functions
  131. and to promote neighborhood safety and community policing programs.]],
  132. weapons = {},
  133. command = "captain",
  134. max = 1,
  135. salary = 100,
  136. admin = 0,
  137. vote = true,
  138. hasLicense = true,
  139. candemote = true,
  140. category = "Government Official's",
  141. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement