Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. Strażnik Miejski
  2.  
  3. TEAM_STRAZ1 = DarkRP.createJob("Straznik Miejski", {
  4. color = Color(84, 180, 212, 255),
  5. model = {"models/player/guard_dawnstar.mdl"},
  6. description = [[.]],
  7. weapons = {"weapon_mor_iron_broadsword"},
  8. command = "/straz1",
  9. max = 0,
  10. salary = 50,
  11. admin = 0,
  12. vote = false,
  13. hasLicense = ,
  14. candemote = false,
  15. category = "Straz Miejska",
  16. NeedToChangeFrom = TEAM_STRAZ1,
  17. PlayerSpawn = function(ply)
  18. ply:SetMaxHealth(100)
  19. ply:SetHealth(100)
  20. ply:SetArmor(50)
  21. end
  22. })
  23.  
  24. Kapitan Straży miejskiej
  25.  
  26. TEAM_STRAZ2 = DarkRP.createJob("Kapitan Straży Miejskiej", {
  27. color = Color(84, 180, 212, 255),
  28. model = {"models/gryff/gryff.mdl"},
  29. description = [[.]],
  30. weapons = {"weapon_mor_iron_broadsword", "morrowind_iron_knife"},
  31. command = "/straz2",
  32. max = 1,
  33. salary = 100,
  34. admin = 0,
  35. vote = false,
  36. hasLicense = ,
  37. candemote = false,
  38. category = "Straz Miejska",
  39. NeedToChangeFrom = TEAM_STRAZ2,
  40. PlayerSpawn = function(ply)
  41. ply:SetMaxHealth(100)
  42. ply:SetHealth(100)
  43. ply:SetArmor(50)
  44. end
  45. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement