Advertisement
MartinLaps

Стражи

Feb 19th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. TEAM_JEDIG1 = DarkRP.createJob("Джедай Страж", {
  2. color = Color(205, 92, 92),
  3. model = "models/joshbotts/temple_guard/temple_guard.mdl",
  4. description = [[Джедай Страж]],
  5. weapons = {"weapon_lightsaber_wos_padawan"},
  6. command = "guardjedi",
  7. category = "Джедаи",
  8. max = 0,
  9. salary = GAMEMODE.Config.normalsalary * 0,
  10. admin = 0,
  11. hasLicense = false,
  12. candemote = true,
  13. type = "guardjedi",
  14. PlayerSpawn = function(ply)
  15. ply:SetHealth(600)
  16. ply:SetMaxHealth(600)
  17. end,
  18. })
  19.  
  20. TEAM_JEDIGCC = DarkRP.createJob("Верховный Страж", {
  21. color = Color(205, 92, 92),
  22. model = "models/player/swtor/arsenic/topher/male_scion.mdl",
  23. description = [[Верховный Страж Джедаев]],
  24. weapons = {"weapon_lightsaber_master"},
  25. command = "gccjedi",
  26. category = "Джедаи",
  27. max = 0,
  28. salary = GAMEMODE.Config.normalsalary * 0,
  29. admin = 0,
  30. hasLicense = false,
  31. candemote = true,
  32. type = "gccjedi",
  33. PlayerSpawn = function(ply)
  34. ply:SetHealth(1500)
  35. ply:SetMaxHealth(1500)
  36. end,
  37. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement