Advertisement
Guest User

ok

a guest
Jun 26th, 2017
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.22 KB | None | 0 0
  1. TEAM_STEVE = DarkRP.createJob("Steve", { -- That's TEAM_STEVE (Used for like AddCustomDoorgroup or Add to only that group to a door. Also, never use the same TEAM_)
  2. color = Color(80, 5, 255, 0),
  3. model = "models/player/blockdude.mdl",
  4. description = [[Description.]],
  5. weapons = {"","mc_pickaxe_diamond","m9k_an94"},
  6. command = "Steve",
  7. max = 5,
  8. salary = 200,
  9. admin = 0,
  10. vote = true,
  11. hasLicense = true,
  12. customCheck = function(ply)
  13. return ply:SteamID() == "STEAM_0:0:33959110"
  14. or ply:SteamID() == "STEAM_0:0:138284822"
  15. or ply:SteamID() == "STEAM_0:1:218631177"
  16. or ply:SteamID() == "STEAM_0:1:63102407"
  17.  
  18. end
  19. })
  20. --[[
  21. Generated using: DarkRP | Job Generator
  22. https://csite.io/tools/gmod-darkrp-job
  23. --]]
  24. TEAM_BREACHER = DarkRP.createJob("Breacher", {
  25. color = Color(10, 71, 227, 255),
  26. model = {"models/player/gasmask.mdl"},
  27. description = [[The breacher is the first one in line for a police raid they use their battering ram to break down the door and use their shotgun for close range encounters]],
  28. weapons = {"m9k_mossberg590", "arrest_stick", "unarrest_stick", "stunstick", "weaponchecker", "m9k_m92beretta", "door_ram"},
  29. command = "Breacher",
  30. max = 2,
  31. salary = 350,
  32. admin = 0,
  33. vote = false,
  34. hasLicense = true,
  35. candemote = true,
  36. category = "Civil Protection"
  37.  
  38. customCheck = function(ply) return ply:GetNWString("VIP") == "VIP"
  39.  
  40.  
  41. end
  42. })
  43.  
  44. --[[---------------------------------------------------------------------------
  45. Define which team joining players spawn into and what team you change to if demoted
  46. ---------------------------------------------------------------------------]]
  47. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  48. --[[---------------------------------------------------------------------------
  49. Define which teams belong to civil protection
  50. Civil protection can set warrants, make people wanted and do some other police related things
  51. ---------------------------------------------------------------------------]]
  52. GAMEMODE.CivilProtection = {
  53. [TEAM_POLICE] = true,
  54. [TEAM_CHIEF] = true,
  55. [TEAM_MAYOR] = true,
  56. [TEAM_BREACHER] = true,
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement