Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. TEAM_MAFIAMEMBER = DarkRP.createJob("Mafia Member", {
  2. color = Color(0, 140, 255, 255),
  3. model = {"models/player/Suits/male_04_open_waistcoat.mdl"},
  4. description = [[You are a part of the mafia. Your job is to control Berlin, mug civilians, break into houses and get any money you can.]],
  5. weapons = {"pocket", "weapon_fists", "keys"},
  6. command = "mafiamember",
  7. max = 5,
  8. salary = 75,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Mafia",
  14. customCheck = function(ply) return CLIENT or
  15. table.HasValue({"user"}, ply:GetNWString("usergroup"))
  16. end,
  17. CustomCheckFailMsg = "User",
  18. })
  19.  
  20.  
  21.  
  22. TEAM_MAFIALEDER = DarkRP.createJob("Mafia Leader", {
  23. color = Color(0, 140, 255, 255),
  24. model = {"models/player/Suits/male_04_open_waistcoat.mdl"},
  25. description = [[You are the boss of the Mafia set them goals you want to reach. You are a part of the mafia. Control Berlin, mug civilians, break into houses and get any money you can.]],
  26. weapons = {"pocket", "weapon_fists", "keys"},
  27. command = "mafialeader",
  28. max = 1,
  29. salary = 100,
  30. admin = 0,
  31. vote = false,
  32. hasLicense = false,
  33. candemote = false,
  34. category = "Mafia",
  35. customCheck = function(ply) return CLIENT or
  36. table.HasValue({"user"}, ply:GetNWString("usergroup"))
  37. end,
  38. CustomCheckFailMsg = "User",
  39. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement