Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. TEAM_SNOOP = DarkRP.createJob("Snoop Dogg", {
  2. color = Color(136, 102, 227, 255),
  3. model = {
  4. "models/snoopdogg.mdl",
  5. "models/player/voikanaa/snoop_dogg_npc.mdl"
  6. },
  7. description = [[The veteran weed smoker, no bowl too small for man like Snoop. --- You can mug & base, you also inherit the same permissions as a Hobo (feel free to play music for people).]],
  8. weapons = {"weapon_juul_medicinal", "sent_bong", "weapon_fists", "m9k_1897winchester", "m9k_knife"},
  9. command = "snoopdogg",
  10. max = 1,
  11. salary = 100,
  12. admin = 0,
  13. vote = false,
  14. hasLicense = false,
  15. candemote = false,
  16. category = "VIP",
  17. ammo = {
  18. ["m9k_ammo_buckshot"] = 40
  19. },
  20. PlayerSpawn = function(ply)
  21. ply:SetMaxHealth(100)
  22. ply:SetHealth(100)
  23. end,
  24. customCheck = function(ply) return CLIENT or
  25. table.HasValue({"vip", "trialmodvip", "moderator", "admin", "builder_trialmodvip", "builder_vip", "builder_moderator"}, ply:GetNWString("usergroup"))
  26. end,
  27. CustomCheckFailMsg = "You must be VIP to access this job.",
  28. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement