Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 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. ---------------------------------------------------------------------------*/TEAM_THIEF = DarkRP.createJob("Thief", { color = (255, 250, 250, 105), model = "models//player/t_arctic.mdl", description = [[You are a thief, You can raid and mug with other thiefs. Obey the Thief Master at all times.]], weapons = {"lockpick"}, {"keypad_cracker"},command = /thief, max = 4, salary = 20, admin = 0, vote = false, haslicense = false, })
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29. /*---------------------------------------------------------------------------
  30. Define which team joining players spawn into and what team you change to if demoted
  31. ---------------------------------------------------------------------------*/
  32. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  33.  
  34.  
  35. /*---------------------------------------------------------------------------
  36. Define which teams belong to civil protection
  37. Civil protection can set warrants, make people wanted and do some other police related things
  38. ---------------------------------------------------------------------------*/
  39. GAMEMODE.CivilProtection = {
  40. [TEAM_POLICE] = true,
  41. [TEAM_CHIEF] = true,
  42. [TEAM_MAYOR] = true,
  43. }
  44.  
  45. /*---------------------------------------------------------------------------
  46. Jobs that are hitmen (enables the hitman menu)
  47. ---------------------------------------------------------------------------*/
  48. DarkRP.addHitmanTeam(TEAM_MOB)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement