Advertisement
Guest User

Untitled

a guest
Dec 11th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. TEAM_SANTA = DarkRP.createJob("Father Christmas", {
  2. color = Color(255, 0, 0, 255),
  3. model = {
  4. "models/player/christmas/santa.mdl",
  5. },
  6. description = [[Ho ho ho, merry christmas!]],
  7. weapons = {},
  8. command = "santa",
  9. max = 2,
  10. salary = GAMEMODE.Config.normalsalary,
  11. admin = 2,
  12. vote = false,
  13. hasLicense = false,
  14. candemote = false,
  15. category = "Event",
  16. })
  17.  
  18.  
  19. TEAM_GRINCH = DarkRP.createJob("Grinch", {
  20. color = Color(51, 255, 0, 255),
  21. model = {
  22. "models/player/christmas/santa.mdl",
  23. },
  24. description = [[Maybe Christmas, the Grinch thought, doesn't come from a store.]],
  25. weapons = {keypad_cracker, lockpick},
  26. command = "grinch",
  27. max = 3,
  28. salary = GAMEMODE.Config.normalsalary,
  29. admin = 1,
  30. vote = false,
  31. hasLicense = false,
  32. candemote = false,
  33. category = "Event",
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement