Advertisement
Guest User

Untitled

a guest
Nov 13th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.26 KB | None | 0 0
  1.  
  2. DarkRP custom jobs
  3. ---------------------------------------------------------------------------
  4. This file contains your custom jobs.
  5. This file should also contain jobs from DarkRP that you edited.
  6.  
  7. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua
  8. Once you've done that, copy and paste the job to this file and edit it.
  9.  
  10. The default jobs can be found here:
  11. https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua
  12.  
  13. For examples and explanation please visit this wiki page:
  14. http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields
  15.  
  16. Add your custom jobs under the following line:
  17. ---------------------------------------------------------------------------]]
  18.  
  19. TEAM_STAFF = DarkRP.createJob("Staff On Duty", {
  20. color = Color(244, 235, 104),
  21. model = "models/player/combine_super_soldier.mdl",
  22. description = [[You are on Duty and representing the server. No roleplay should be done whilst on duty.]],
  23. weapons = {"pist_weagon", "unarrest_stick"},
  24. command = "Staff",
  25. max = 10,
  26. salary = 60,
  27. admin = 1,
  28. vote = false,
  29. hasLicense = true
  30. })
  31.  
  32. TEAM_SWAT = DarkRP.createJob("SWAT Member", {
  33. color = Color(3, 0, 203),
  34. model = "models/player/swa2.mdl",
  35. description = [[You are a police specialist. Help out police in high intensity situations!]],
  36. weapons = {"m9k_honeybadger", "m9k_hk45", "door_ram", "stunstick", "weaponchecker", "arrest_stick", "unarrest_stick"},
  37. command = "swat",
  38. max = 2,
  39. salary = 70,
  40. admin = 0,
  41. vote = false,
  42. hasLicense = true
  43. })
  44.  
  45. TEAM_SWAT_SNIPER = DarkRP.createJob("SWAT Sniper", {
  46. color = Color(3, 0, 203),
  47. model = "models/piket_playermodel/piket_playermodel.mdl",
  48. description = [[You are a police specialist. Help out police in high intensity situations!]],
  49. weapons = {"m9k_aw50", "m9k_hk45", "door_ram", "stunstick", "weaponchecker", "arrest_stick", "unarrest_stick", "m9k_aw50"},
  50. command = "swatsniper",
  51. max = 1,
  52. salary = 70,
  53. admin = 0,
  54. vote = false,
  55. hasLicense = true
  56. })
  57.  
  58. TEAM_SWAT_MEDIC = DarkRP.createJob("SWAT Medic", {
  59. color = Color(3, 0, 203),
  60. model = "models/piket_playermodel/piket_playermodel.mdl",
  61. description = [[You are a police specialist. Help out police in high intensity situations!]],
  62. weapons = {"med_kit", "m9k_hk45", "m9k_mp5sd", "door_ram", "stunstick", "weaponchecker", "arrest_stick", "unarrest_stick"},
  63. command = "swatmedic",
  64. max = 1,
  65. salary = 70,
  66. admin = 0,
  67. vote = false,
  68. hasLicense = true
  69. })
  70.  
  71. TEAM_POLICE = DarkRP.createJob("Police Officer", {
  72. color = Color(5, 1, 146),
  73. model = "models/player/clannypolice/male_02.mdl",
  74. description = [[You are a police officer. Inforce the law!]],
  75. weapons = {"m9k_m92beretta", "door_ram", "stunstick", "weaponchecker", "arrest_stick", "unarrest_stick"},
  76. command = "police",
  77. max = 10,
  78. salary = 50,
  79. admin = 0,
  80. vote = false,
  81. hasLicense = true
  82. })
  83.  
  84. TEAM_POLICE = DarkRP.createJob("Police Medic", {
  85. color = Color(5, 1, 146),
  86. model = "models/adi/parker/male_01.mdl",
  87. description = [[You are a police medic. Help out police and don't die!]],
  88. weapons = {"m9k_m92beretta", "med_kit", "door_ram", "stunstick", "weaponchecker", "arrest_stick", "unarrest_stick"},
  89. command = "policemedic",
  90. max = 4,
  91. salary = 50,
  92. admin = 0,
  93. vote = false,
  94. hasLicense = true
  95. })
  96.  
  97. TEAM_PROSTITUTE = DarkRP.createJob("Prostitute", {
  98. color = Color(250, 191, 255),
  99. model = "models/pacagma/seishun_buta_yarou_wa_bunny_girl_senpai_no_yume_wo_minai/mai_sakurajima_bunny/mai_sakurajima_bunny_player.mdl",
  100. description = [[Good luck not getting an STD. Sell your services for money.]],
  101. weapons = {"weapon_rape"},
  102. command = "prostitute",
  103. max = 5,
  104. salary = 50,
  105. admin = 0,
  106. vote = false,
  107. hasLicense = false
  108. })
  109.  
  110. TEAM_GUN = DarkRP.createJob("Gun Dealer", {
  111. color = Color(248, 150, 54),
  112. model = "models/joshers/badasses/playermodels/grigori_closed.mdl",
  113. description = [[Sell guns for money but be careful of the police!]],
  114. weapons = {},
  115. command = "gun",
  116. max = 5,
  117. salary = 50,
  118. admin = 0,
  119. vote = false,
  120. hasLicense = false
  121. })
  122.  
  123. TEAM_Thief = DarkRP.createJob("Thief", {
  124. color = Color(253, 2, 3),
  125. model = "models/player/pd2_dallas_p.mdl",
  126. description = [[You are a thief. You can rob and mug people.]],
  127. weapons = {"lockpick", "csgo_bayonet_night", "m9k_m416", "m9k_aw50"},
  128. command = "thief",
  129. max = 10,
  130. salary = 60,
  131. admin = 0,
  132. vote = false,
  133. hasLicense = false
  134. })
  135.  
  136. TEAM_STARWARS = DarkRP.createJob("Jedi", {
  137. color = Color(0, 191, 226),
  138. model = "models/player/bln/starwars/jedi/poombayz/poombayz.mdl",
  139. description = [[(Donor Job) Kill the sith.]],
  140. weapons = {"weapon_lightsaber"},
  141. command = "jedi",
  142. max = 2,
  143. salary = 60,
  144. admin = 1,
  145. vote = false,
  146. hasLicense = false
  147. })
  148.  
  149. TEAM_STARWARS = DarkRP.createJob("Sith", {
  150. color = Color(0, 191, 226),
  151. model = "models/staticiser/req/prophet_2/prophet_2.mdl",
  152. description = [[(Donor Job) Kill the Jedi.]],
  153. weapons = {"weapon_lightsaber"},
  154. command = "sith",
  155. max = 2,
  156. salary = 60,
  157. admin = 1,
  158. vote = false,
  159. hasLicense = false
  160. })
  161.  
  162. TEAM_JUDICIAL = DarkRP.createJob("Judge", {
  163. color = Color(244, 235, 104),
  164. model = "models/player/donald_trump.mdl",
  165. description = [[You are on Duty and representing the server. No roleplay should be done whilst on duty.]],
  166. weapons = {},
  167. command = "judge",
  168. max = 2,
  169. salary = 100,
  170. admin = 1,
  171. vote = false,
  172. hasLicense = true
  173. })
  174.  
  175. TEAM_JUDICIAL = DarkRP.createJob("Lawyer", {
  176. color = Color(28, 44, 39),
  177. model = "models/joshers/badasses/playermodels/barney_closed.mdl",
  178. description = [[Represent your clients and defend them.]],
  179. weapons = {},
  180. command = "lawyer",
  181. max = 6,
  182. salary = 100,
  183. admin = 1,
  184. vote = false,
  185. hasLicense = true
  186. })
  187.  
  188. TEAM_BANKER = DarkRP.createJob("Banker", {
  189. color = Color(200, 191, 51),
  190. model = "models/joshers/badasses/playermodels/kleiner_closed.mdl",
  191. description = [[Represent your clients and defend them.]],
  192. weapons = {},
  193. command = "banker",
  194. max = 6,
  195. salary = 60,
  196. admin = 1,
  197. vote = false,
  198. hasLicense = true
  199. })
  200.  
  201. --[[---------------------------------------------------------------------------
  202. Define which team joining players spawn into and what team you change to if demoted
  203. ---------------------------------------------------------------------------]]
  204. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  205. --[[---------------------------------------------------------------------------
  206. Define which teams belong to civil protection
  207. Civil protection can set warrants, make people wanted and do some other police related things
  208. ---------------------------------------------------------------------------]]
  209. GAMEMODE.CivilProtection = {
  210. [TEAM_MAYOR] = true,
  211. }
  212. --[[---------------------------------------------------------------------------
  213. Jobs that are hitmen (enables the hitman menu)
  214. ---------------------------------------------------------------------------]]
  215. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement