Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1.  
  2. TEAM_SUPERADMINONDUTY = DarkRP.createJob("Superadmin on Duty", {
  3. color = Color(0, 211, 255, 255),
  4. model = {
  5. "models/lt_c/sci_fi/humans/male_louis.mdl",
  6. "models/ikanadea/albedo/albedo_pm.mdl",
  7. "models/momonga.mdl"
  8. },
  9. description = [[Admin]],
  10. weapons = {},
  11. command = "superadmin",
  12. max = 0,
  13. salary = 1,
  14. admin = 0,
  15. vote = false,
  16. hasLicense = false,
  17. candemote = false,
  18. category = "Adminonduty",
  19. PlayerSpawn = function(ply)
  20. ply:SetMaxHealth(10000)
  21. ply:SetHealth(10000)
  22. ply:SetArmor(100)
  23. end
  24. })
  25.  
  26.  
  27. TEAM_ADMINONDUTY = DarkRP.createJob("Admin on Duty", {
  28. color = Color(0, 211, 255, 255),
  29. model = {"models/player/valley/medicaldroid.mdl"},
  30. description = [[Admin]],
  31. weapons = {},
  32. command = "admin",
  33. max = 0,
  34. salary = 1,
  35. admin = 0,
  36. vote = false,
  37. hasLicense = false,
  38. candemote = false,
  39. category = "Adminonduty",
  40. PlayerSpawn = function(ply)
  41. ply:SetMaxHealth(10000)
  42. ply:SetHealth(10000)
  43. ply:SetArmor(100)
  44. end
  45. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement