Advertisement
Guest User

Untitled

a guest
Sep 24th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. TEAM_FIREFIGHTER = DarkRP.createJob("Pompier", {
  2. color = Color(255, 165, 51, 255),
  3. model = "models/player/monk.mdl",
  4. description = [[]],
  5. weapons = {"fire_extinguisher", "fire_axe"},
  6. command = "firefighter",
  7. max = 4,
  8. salary = 45,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category = "Civil",
  13. customCheck = function(ply) return CLIENT or
  14. table.HasValue({"VIP","admin","superadmin","Fondateur","Modérateur","Modérateur Test"}, ply:GetNWString("usergroup"))
  15. end,
  16. CustomCheckFailMsg = "Ce metier est que pour les VIP",
  17. })
  18.  
  19. TEAM_PYRO = DarkRP.createJob("Pyro", {
  20. color = Color(255, 0, 0, 255),
  21. model = "models/player/monk.mdl",
  22. description = [[]],
  23. weapons = {},
  24. command = "pyro",
  25. max = 2,
  26. salary = 45,
  27. admin = 0,
  28. vote = false,
  29. hasLicense = false,
  30. category = "Civil",
  31. customCheck = function(ply) return CLIENT or
  32. table.HasValue({"VIP","admin","superadmin","Fondateur","Modérateur","Modérateur Test"}, ply:GetNWString("usergroup"))
  33. end,
  34. CustomCheckFailMsg = "Ce metier est que pour les VIP",
  35. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement