Advertisement
Guest User

123

a guest
Feb 28th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. TEAM_PRACA = DarkRP.createJob("Legenda", {
  2. color = Color(0, 108, 0, 255),
  3. model = {"models/ms13/slow_2.mdl"},
  4. description = [[Legendarny mieszkaniec Grove Street.]],
  5. weapons = {"tfa_nmrih_sledge", "csgo_bowie"},
  6. command = "lgs",
  7. max = 1,
  8. salary = 50,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. PlayerSpawn = function(ply) ply:SetHealth(1000) ply:SetMaxHealth(1000) return CLIENT end,
  14. category = "Grove Street",
  15. customCheck = function(ply) return PlychangeAllowed(ply,"Legenda") end,
  16. CustomCheckFailMsg = "Nie pochodzisz z Grove Street!"
  17. })
  18. TEAM_PRACA = DarkRP.createJob("Zaufany", {
  19. color = Color(0, 108, 0, 255),
  20. model = {"models/ms13/slow_3.mdl"},
  21. description = [[Zaufany mieszkaniec Grove Street.]],
  22. weapons = {"tfa_nmrih_bat", "csgo_bowie"},
  23. command = "zgs",
  24. max = 2,
  25. salary = 50,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. candemote = false,
  30. PlayerSpawn = function(ply) ply:SetHealth(600) ply:SetMaxHealth(600) return CLIENT end,
  31. category = "Grove Street",
  32. customCheck = function(ply) return PlychangeAllowed(ply,"Zaufany") end,
  33. CustomCheckFailMsg = "Nie pochodzisz z Grove Street!"
  34. })
  35. TEAM_PRACA = DarkRP.createJob("Nowy", {
  36. color = Color(0, 108, 0, 255),
  37. model = {"models/ms13/slow_1.mdl"},
  38. description = [[Nowy mieszkaniec Grove Street.]],
  39. weapons = {"tfa_nmrih_crowbar", "csgo_bowie"},
  40. command = "ngs",
  41. max = 5,
  42. salary = 50,
  43. admin = 0,
  44. vote = false,
  45. hasLicense = false,
  46. candemote = false,
  47. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetMaxHealth(250) return CLIENT end,
  48. category = "Grove Street",
  49. customCheck = function(ply) return PlychangeAllowed(ply,"Nowy") end,
  50. CustomCheckFailMsg = "Nie pochodzisz z Grove Street!"
  51. })
  52. TEAM_PRACA = DarkRP.createJob("Szarak", {
  53. color = Color(0, 108, 0, 255),
  54. model = {"models/ms13/slow_1.mdl"},
  55. description = [[Zwyczajny mieszkaniec Grove Street.]],
  56. weapons = {"tfa_nmrih_wrench", "csgo_bowie"},
  57. command = "zgs",
  58. max = 10,
  59. salary = 50,
  60. admin = 0,
  61. vote = false,
  62. hasLicense = false,
  63. candemote = false,
  64. PlayerSpawn = function(ply) ply:SetHealth(350) ply:SetMaxHealth(350) return CLIENT end,
  65. category = "Grove Street",
  66. customCheck = function(ply) return PlychangeAllowed(ply,"Szarak") end,
  67. CustomCheckFailMsg = "Nie pochodzisz z Grove Street!"
  68. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement