Advertisement
Jacebutcher3

Untitled

Jan 23rd, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "Criminals",
  3. categorises = "jobs",
  4. startExpanded = true,
  5. color = Color(0, 0, 0, 255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 2
  8. }
  9.  
  10. DarkRP.createCategory{
  11. name = "Dealers",
  12. categorises = "jobs",
  13. startExpanded = true,
  14. color = Color(0, 0, 0, 255),
  15. canSee = function(ply) return true end,
  16. sortOrder = 3
  17. }
  18.  
  19. DarkRP.createCategory{
  20. name = "Assault Rifles",
  21. categorises = "weapons",
  22. startExpanded = true,
  23. color = Color(201, 25, 25, 255),
  24. canSee = function(ply) return table.HasValue({TEAM_GUN}, ply:Team()) end,
  25. sortOrder = 1
  26. }
  27.  
  28. DarkRP.createCategory{
  29. name = "LMG's",
  30. categorises = "weapons",
  31. startExpanded = true,
  32. color = Color(201, 25, 25, 255),
  33. canSee = function(ply) return table.HasValue({TEAM_GUN}, ply:Team()) end,
  34. sortOrder = 1
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement