Advertisement
MartinLaps

Алая Гвардия

Feb 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. TEAM_AG = DarkRP.createJob("Алый Гвардеец, {
  2. color = Color(165, 42, 42),
  3. model = "models/player/ven/guard.mdl",
  4. description = [[Алый Гвардеец]],
  5. weapons = {"swep_mexicanz6"},
  6. command = "ag",
  7. category = "Алая Гвардия",
  8. max = 0,
  9. salary = GAMEMODE.Config.normalsalary * 0,
  10. admin = 0,
  11. hasLicense = false,
  12. candemote = false,
  13. type = "ag",
  14. PlayerSpawn = function(ply)
  15. ply:SetHealth(200)
  16. ply:SetMaxHealth(200)
  17. ply:SetArmor(200)
  18. ply:SetMaxArmor(200)
  19. end,
  20. })
  21.  
  22. TEAM_AGCMD = DarkRP.createJob("Коммандер-Алый Гвардеец, {
  23. color = Color(165, 42, 42),
  24. model = "models/player/ven/shadowguard.mdl",
  25. description = [[Алый Гвардеец]],
  26. weapons = {"swep_mexicanz6"},
  27. command = "agcc",
  28. category = "Алая Гвардия",
  29. max = 0,
  30. salary = GAMEMODE.Config.normalsalary * 0,
  31. admin = 0,
  32. hasLicense = false,
  33. candemote = false,
  34. type = "agcc",
  35. PlayerSpawn = function(ply)
  36. ply:SetHealth(200)
  37. ply:SetMaxHealth(200)
  38. ply:SetArmor(200)
  39. ply:SetMaxArmor(200)
  40. end,
  41. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement