Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. TEAM_RECRUIT = DarkRP.createJob("Airborne Recruit", {
  2. color = Color(168, 168, 168, 255),
  3. model = {
  4. "models/airborne1pm.mdl",
  5. "models/airborne2pm.mdl",
  6. "models/airborne3pm.mdl",
  7. "models/airborne5pm.mdl",
  8. "models/airborne4pm.mdl",
  9. "models/airborne6pmn.mdl",
  10. "models/airborne7pm.mdl",
  11. "models/airborne8pm.mdl",
  12. "models/airborne9pm.mdl"
  13. },
  14. description = [[The Starting Place Of The 82nd Airborne]],
  15. weapons = {},
  16. command = "recruit",
  17. max = 0,
  18. salary = 50,
  19. admin = 0,
  20. vote = false,
  21. hasLicense = false,
  22. candemote = false,
  23. category = "Unassigned",
  24. PlayerSpawn = function(ply)
  25. ply:SetMaxHealth(100)
  26. ply:SetHealth(100)
  27. ply:SetArmor(0)
  28. ply:SetBodygroup(0, 4, 2, 1, 0, 0)
  29. end,
  30. customCheck = function(ply) return CLIENT or
  31. table.HasValue({"superadmin", "admin", "Administrator", "Head Administrator", "Moderator", "Trial Moderator", "Gamemaster", "Trial Gamemaster", "Head Gamemaster", "Owner", "Founder", "Developer", "Senior Administrator"}, ply:GetNWString("usergroup"))
  32. end,
  33. CustomCheckFailMsg = "This Job Is for Airborne Recuits Only",
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement