Advertisement
Guest User

Categories 4 IRP By Odyssey

a guest
Oct 19th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.16 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "501st",
  3. categorises = "jobs",
  4. startExpanded = true,
  5. color = Color(255, 0, 0, 255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 1
  8. }
  9. DarkRP.createCategory{
  10. name = "Donater/VIP",
  11. categorises = "jobs",
  12. startExpanded = true,
  13. color = Color(255, 0, 0, 255),
  14. canSee = function(ply) return true end,
  15. sortOrder = 2
  16. }
  17. DarkRP.createCategory{
  18. name = "Admin",
  19. categorises = "jobs",
  20. startExpanded = true,
  21. color = Color(255, 0, 0, 255),
  22. canSee = function(ply) return true end,
  23. sortOrder = 3
  24. }
  25. DarkRP.createCategory{
  26. name = "Medics",
  27. categorises = "jobs",
  28. startExpanded = true,
  29. color = Color(255, 0, 0, 255),
  30. canSee = function(ply) return true end,
  31. sortOrder = 4
  32. }
  33. DarkRP.createCategory{
  34. name = "Shadow",
  35. categorises = "jobs",
  36. startExpanded = true,
  37. color = Color(255, 0, 0, 255),
  38. canSee = function(ply) return true end,
  39. sortOrder = 5
  40. }
  41. DarkRP.createCategory{
  42. name = "DT",
  43. categorises = "jobs",
  44. startExpanded = true,
  45. color = Color(255, 0, 0, 255),
  46. canSee = function(ply) return true end,
  47. sortOrder = 6
  48. }
  49. DarkRP.createCategory{
  50. name = "SCK",
  51. categorises = "jobs",
  52. startExpanded = true,
  53. color = Color(255, 0, 0, 255),
  54. canSee = function(ply) return true end,
  55. sortOrder = 7
  56. }
  57. DarkRP.createCategory{
  58. name = "STU",
  59. categorises = "jobs",
  60. startExpanded = true,
  61. color = Color(255, 0, 0, 255),
  62. canSee = function(ply) return true end,
  63. sortOrder = 8
  64. }
  65. DarkRP.createCategory{
  66. name = "Stormtroopers",
  67. categorises = "jobs",
  68. startExpanded = true,
  69. color = Color(255, 0, 0, 255),
  70. canSee = function(ply) return true end,
  71. sortOrder = 9
  72. }
  73. DarkRP.createCategory{
  74. name = "ISB",
  75. categorises = "jobs",
  76. startExpanded = true,
  77. color = Color(255, 0, 0, 255),
  78. canSee = function(ply) return true end,
  79. sortOrder = 10
  80. }
  81. DarkRP.createCategory{
  82. name = "Fleet",
  83. categorises = "jobs",
  84. startExpanded = true,
  85. color = Color(255, 0, 0, 255),
  86. canSee = function(ply) return true end,
  87. sortOrder = 11
  88. }
  89. DarkRP.createCategory{
  90. name = "SCT",
  91. categorises = "jobs",
  92. startExpanded = true,
  93. color = Color(255, 0, 0, 255),
  94. canSee = function(ply) return true end,
  95. sortOrder = 12
  96. }
  97. DarkRP.createCategory{
  98. name = "Pilots",
  99. categorises = "jobs",
  100. startExpanded = true,
  101. color = Color(255, 0, 0, 255),
  102. canSee = function(ply) return true end,
  103. sortOrder = 13
  104. }
  105. DarkRP.createCategory{
  106. name = "ArmyStaff",
  107. categorises = "jobs",
  108. startExpanded = true,
  109. color = Color(255, 0, 0, 255),
  110. canSee = function(ply) return true end,
  111. sortOrder = 14
  112. }
  113. DarkRP.createCategory{
  114. name = "EventJob",
  115. categorises = "jobs",
  116. startExpanded = true,
  117. color = Color(255, 0, 0, 255),
  118. canSee = fp{fn.Id, true},
  119. sortOrder = 15
  120. }
  121. DarkRP.createCategory{
  122. name = "Recruits",
  123. categorises = "jobs",
  124. startExpanded = true,
  125. color = Color(255, 0, 0, 255),
  126. canSee = function(ply) return true end,
  127. sortOrder = 16
  128. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement