Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. --]]
  2. TEAM_UNSCCADET = DarkRP.createJob("UNSC Cadet", {
  3. color = Color(22, 15, 117, 255),
  4. model = {"models/jessev92/halo/unsc_h3_marine/m01.mdl"},
  5. description = [[The UNSC Cadet is the lowest rank in the UNSC.]],
  6. weapons = {"hr_swep_assault_rifle", "hr_swep_magnum"},
  7. command = "unsccadet",
  8. max = 0,
  9. salary = 150,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. candemote = false,
  14. category = "UNSC",
  15. ammo = {
  16. ["pistol"] = 120,
  17. ["pulse"] = 750
  18. },
  19. PlayerSpawn = function(ply)
  20. ply:SetMaxHealth(300)
  21. ply:SetHealth(300)
  22. ply:SetArmor(0)
  23. ply:SetBodygroup(0, 0)
  24. end,
  25. customCheck = function(ply) return CLIENT or
  26. table.HasValue({}, ply:GetNWString("usergroup"))
  27. end,
  28. CustomCheckFailMsg = "",
  29. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement