Advertisement
BlitherLlama

Untitled

Feb 20th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. TEAM_ASSASSIN = DarkRP.createJob("Assassin", {
  2. color = Color(0, 189, 0, 255),
  3. model = {"models/blacklist/spy1.mdl"},
  4. description = [[Strike from the shadows and take people on a nice little "vacation".]],
  5. weapons = {"m9k_mp9", "m9k_knife"},
  6. command = "assassin",
  7. max = 4,
  8. salary = 85,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. customCheck = function(ply) return CLIENT or
  13. table.HasValue({"zeus", "donator admin", "owner", "superadmin", "co-owner"}, ply:GetNWString("usergroup"))
  14. end,
  15. CustomCheckFailMsg = "This job is donator only",
  16. })
  17.  
  18. TEAM_MERCENARY = DarkRP.createJob("Mercenary", {
  19. color = Color(0, 118, 48, 255),
  20. model = {"models/blacklist/merc1.mdl"},
  21. description = [[Get payed to raid somebody elses base and bring back the goods. You're payed to do the dirty work.]],
  22. weapons = {"m9k_l85", "m9k_glock"},
  23. command = "mercenary",
  24. max = 4,
  25. salary = 85,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. PlayerSpawn = function(ply) ply:SetHealth(250) end,
  30. customCheck = function(ply) return CLIENT or
  31. table.HasValue({"zeus", "donator admin", "owner", "superadmin", "co-owner"}, ply:GetNWString("usergroup"))
  32. end,
  33. CustomCheckFailMsg = "This job is donator only",
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement