Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. TEAM_PROT = DarkRP.createJob("Pro Thief", {
  2. color = Color(255, 0, 0, 255),
  3. model = {"models/player/phoenix.mdl"},
  4. description = [[The Pro Thief includes an AK-47 and Glock-18!]],
  5. weapons = {"m9k_ak47", "m9k_glock", "lockpick", "keypad_cracker"},
  6. command = "prothief",
  7. max = 4,
  8. salary = 1500,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. PlayerSpawn = function(ply)
  14. ply:SetMaxHealth(100)
  15. ply:SetHealth(100)
  16. ply:SetArmor(50)
  17. end,
  18. customCheck = function(ply) return CLIENT or
  19. table.HasValue({"Prothief"}, ply:GetNWString("usergroup"))
  20. end,
  21. CustomCheckFailMsg = "For access check out !donate!",
  22. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement