Advertisement
MVGDaniel

Untitled

Feb 24th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.10 KB | None | 0 0
  1. --[[-----------------------------------------------------------------------
  2. Categories
  3. ---------------------------------------------------------------------------
  4. The categories of the default F4 menu.
  5.  
  6. Please read this page for more information:
  7. http://wiki.darkrp.com/index.php/DarkRP:Categories
  8.  
  9. In case that page can't be reached, here's an example with explanation:
  10.  
  11. DarkRP.createCategory{
  12. name = "Citizens", -- The name of the category.
  13. categorises = "jobs", -- What it categorises. MUST be one of "jobs", "entities", "shipments", "weapons", "vehicles", "ammo".
  14. startExpanded = false, -- Whether the category is expanded when you open the F4 menu.
  15. color = Color(0, 107, 0, 255), -- The color of the category header.
  16. canSee = function(ply) return true end, -- OPTIONAL: whether the player can see this category AND EVERYTHING IN IT.
  17. sortOrder = 100, -- OPTIONAL: With this you can decide where your category is. Low numbers to put it on top, high numbers to put it on the bottom. It's 100 by default.
  18. }
  19.  
  20.  
  21. Add new categories under the next line!
  22. ---------------------------------------------------------------------------]]
  23.  
  24. DarkRP.createCategory{
  25. name = "Recruitment",
  26. categorises = "jobs",
  27. startExpanded = false,
  28. color = Color(10, 133, 133, 255),
  29. canSee = function(ply) return true end,
  30. sortOrder = 0,
  31. }
  32.  
  33. DarkRP.createCategory{
  34. name = "FN Stormtroopers",
  35. categorises = "jobs",
  36. startExpanded = false,
  37. color = Color(201, 201, 201, 255),
  38. canSee = function(ply) return true end,
  39. sortOrder = 1,
  40. }
  41.  
  42. DarkRP.createCategory{
  43. name = "51st Assault Infantry",
  44. categorises = "jobs",
  45. startExpanded = false,
  46. color = Color(9, 25, 168, 255),
  47. canSee = function(ply) return true end,
  48. sortOrder = 2,
  49. }
  50.  
  51. DarkRP.createCategory{
  52. name = "1st Reconnaissance",
  53. categorises = "jobs",
  54. startExpanded = false,
  55. color = Color(30, 125, 14, 255),
  56. canSee = function(ply) return true end,
  57. sortOrder = 3,
  58. }
  59.  
  60. DarkRP.createCategory{
  61. name = "Shock Military Police",
  62. categorises = "jobs",
  63. startExpanded = false,
  64. color = Color(207, 34, 34, 255),
  65. canSee = function(ply) return true end,
  66. sortOrder = 4,
  67. }
  68.  
  69. DarkRP.createCategory{
  70. name = "91st Medical Squadron",
  71. categorises = "jobs",
  72. startExpanded = false,
  73. color = Color(255, 0, 80, 255),
  74. canSee = function(ply) return true end,
  75. sortOrder = 5,
  76. }
  77.  
  78. DarkRP.createCategory{
  79. name = "Havoc Engineers",
  80. categorises = "jobs",
  81. startExpanded = false,
  82. color = Color(255, 157, 0, 255),
  83. canSee = function(ply) return true end,
  84. sortOrder = 6,
  85. }
  86.  
  87. DarkRP.createCategory{
  88. name = "First Order High Command",
  89. categorises = "jobs",
  90. startExpanded = false,
  91. color = Color(4, 0, 100, 255),
  92. canSee = function(ply) return true end,
  93. sortOrder = 7,
  94. }
  95.  
  96. DarkRP.createCategory{
  97. name = "Naval Officers",
  98. categorises = "jobs",
  99. startExpanded = false,
  100. color = Color(102, 102, 102, 255),
  101. canSee = function(ply) return true end,
  102. sortOrder = 8,
  103. }
  104.  
  105. DarkRP.createCategory{
  106. name = "Military Command",
  107. categorises = "jobs",
  108. startExpanded = false,
  109. color = Color(102, 102, 102, 255),
  110. canSee = function(ply) return true end,
  111. sortOrder = 9,
  112. }
  113.  
  114. DarkRP.createCategory{
  115. name = "Ren Council",
  116. categorises = "jobs",
  117. startExpanded = false,
  118. color = Color(175, 0, 0, 255),
  119. canSee = function(ply) return true end,
  120. sortOrder = 10,
  121. }
  122.  
  123. DarkRP.createCategory{
  124. name = "Knights Of Ren",
  125. categorises = "jobs",
  126. startExpanded = false,
  127. color = Color(175, 0, 0, 255),
  128. canSee = function(ply) return true end,
  129. sortOrder = 11,
  130. }
  131.  
  132. DarkRP.createCategory{
  133. name = "Force Adepts",
  134. categorises = "jobs",
  135. startExpanded = false,
  136. color = Color(177, 84, 212, 255),
  137. canSee = function(ply) return true end,
  138. sortOrder = 12,
  139. }
  140.  
  141. DarkRP.createCategory{
  142. name = "First Order Commandos - Epsilon Squadron",
  143. categorises = "jobs",
  144. startExpanded = false,
  145. color = Color(225, 0, 255, 255),
  146. canSee = function(ply) return true end,
  147. sortOrder = 13,
  148. }
  149.  
  150. DarkRP.createCategory{
  151. name = "Legacy Neutral Jobs",
  152. categorises = "jobs",
  153. startExpanded = false,
  154. color = Color(177, 84, 212, 255),
  155. canSee = function(ply) return true end,
  156. sortOrder = 14,
  157. }
  158.  
  159. DarkRP.createCategory{
  160. name = "Administrative",
  161. categorises = "jobs",
  162. startExpanded = false,
  163. color = Color(175, 0, 0, 255),
  164. canSee = function(ply) return true end,
  165. sortOrder = 16,
  166. }
  167.  
  168. DarkRP.createCategory{
  169. name = "Dark Forces Project",
  170. categorises = "jobs",
  171. startExpanded = false,
  172. color = Color(0, 0, 0, 255),
  173. canSee = function(ply) return true end,
  174. sortOrder = 17,
  175. }
  176.  
  177. DarkRP.createCategory{
  178. name = "Knights of Zakuul",
  179. categorises = "jobs",
  180. startExpanded = false,
  181. color = Color(225, 0, 255, 255),
  182. canSee = function(ply) return true end,
  183. sortOrder = 18,
  184. }
  185.  
  186. DarkRP.createCategory{
  187. name = "Custom",
  188. categorises = "jobs",
  189. startExpanded = false,
  190. color = Color(0, 0, 0, 255),
  191. canSee = function(ply) return true end,
  192. sortOrder = 99,
  193. }
  194.  
  195. DarkRP.createCategory{
  196. name = "Entities",
  197. categorises = "entities",
  198. startExpanded = false,
  199. color = Color(221, 255, 0, 255),
  200. canSee = function(ply) return true end,
  201. sortOrder = 100,
  202. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement