Advertisement
Guest User

Untitled

a guest
Mar 28th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.69 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "Assault Battalions",
  3. categorises = "jobs",
  4. startExpanded = false,
  5. color = Color(255, 255, 255, 255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 1
  8. }
  9.  
  10. DarkRP.createCategory{
  11. name = "Support Battalions",
  12. categorises = "jobs",
  13. startExpanded = false,
  14. color = Color(255, 255, 255, 255),
  15. canSee = function(ply) return true end,
  16. sortOrder = 2
  17. }
  18.  
  19. DarkRP.createCategory{
  20. name = "Scout Battalions",
  21. categorises = "jobs",
  22. startExpanded = false,
  23. color = Color(255, 255, 255, 255),
  24. canSee = function(ply) return true end,
  25. sortOrder = 3
  26. }
  27.  
  28. DarkRP.createCategory{
  29. name = "Special Battalions",
  30. categorises = "jobs",
  31. startExpanded = false,
  32. color = Color(255, 255, 255, 255),
  33. canSee = function(ply) return true end,
  34. sortOrder = 4
  35. }
  36.  
  37. DarkRP.createCategory{
  38. name = "The Seperatists",
  39. categorises = "jobs",
  40. startExpanded = false,
  41. color = Color(255, 255, 255, 255),
  42. canSee = function(ply) return true end,
  43. sortOrder = 5
  44. }
  45.  
  46. DarkRP.createCategory{
  47. name = "The Jedi",
  48. categorises = "jobs",
  49. startExpanded = false,
  50. color = Color(0, 0, 0, 255),
  51. canSee = function(ply) return true end,
  52. sortOrder = 6
  53. }
  54.  
  55. DarkRP.createCategory{
  56. name = "Custom Battalions",
  57. categorises = "jobs",
  58. startExpanded = false,
  59. color = Color(255, 0, 0, 255),
  60. canSee = function(ply) return true end,
  61. sortOrder = 7
  62. }
  63.  
  64. DarkRP.createCategory{
  65. name = "Staff",
  66. categorises = "jobs",
  67. startExpanded = false,
  68. color = Color(0, 0, 0, 255),
  69. canSee = function(ply) return true end,
  70. sortOrder = 999999999
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement