Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.93 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "Citizens",
  3. categorises = "jobs",
  4. startExpanded = true,
  5. color = Color(0,255,255,255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 100,
  8. }
  9.  
  10. DarkRP.createCategory{
  11. name = "Criminals",
  12. categorises = "jobs",
  13. startExpanded = true,
  14. color = Color(0, 255, 255, 255),
  15. canSee = function(ply) return true end,
  16. sortOrder = 100,
  17. }
  18.  
  19. DarkRP.createCategory{
  20. name = "Gangs",
  21. categorises = "jobs",
  22. startExpanded = true,
  23. color = Color(255, 255, 255, 255),
  24. canSee = function(ply) return true end,
  25. sortOrder = 100,
  26. }
  27.  
  28. DarkRP.createCategory{
  29. name = "Dealers",
  30. categorises = "jobs",
  31. startExpanded = true,
  32. color = Color(255, 255, 255, 255),
  33. canSee = function(ply) return true end,
  34. sortOrder = 100,
  35. }
  36.  
  37. DarkRP.createCategory{
  38. name = "Mafia",
  39. categorises = "jobs",
  40. startExpanded = true,
  41. color = Color(255, 255, 255, 255),
  42. canSee = function(ply) return true end,
  43. sortOrder = 100,
  44. }
  45.  
  46. DarkRP.createCategory{
  47. name = "Government",
  48. categorises = "jobs",
  49. startExpanded = true,
  50. color = Color(255, 255, 255, 255),
  51. canSee = function(ply) return true end,
  52. sortOrder = 100,
  53. }
  54.  
  55. DarkRP.createCategory{
  56. name = "Pets",
  57. categorises = "jobs",
  58. startExpanded = true,
  59. color = Color(255, 255, 255, 255),
  60. canSee = function(ply) return true end,
  61. sortOrder = 100,
  62. }
  63.  
  64. DarkRP.createCategory{
  65. name = "Staff",
  66. categorises = "jobs",
  67. startExpanded = true,
  68. color = Color(255, 0, 0, 255),
  69. canSee = function(ply) return table.HasValue({"superadmin", "admin", "staffmanager", "owner", "operator", "amanager", "developer"}, ply:GetNWString("usergroup")) end,
  70. sortOrder = 100
  71. }
  72.  
  73. DarkRP.createCategory{
  74. name = "Custom Class",
  75. categorises = "jobs",
  76. startExpanded = true,
  77. color = Color(255, 0, 0, 255),
  78. canSee = function(ply) return true end,
  79. sortOrder = 100
  80. }
  81.  
  82. DarkRP.createCategory{
  83. name = "Assault Rifles",
  84. categorises = "shipments",
  85. startExpanded = true,
  86. color = Color(255, 0, 0, 255),
  87. canSee = function(ply) return table.HasValue({TEAM_GUN, TEAM_EQUIPMENT, TEAM_HEAVY, TEAM_BLACK}, ply:Team()) end,
  88. sortOrder = 1
  89. }
  90.  
  91. DarkRP.createCategory{
  92. name = "Pistols",
  93. categorises = "shipments",
  94. startExpanded = true,
  95. color = Color(255, 0, 0, 255),
  96. canSee = function(ply) return table.HasValue({TEAM_GUN, TEAM_EQUIPMENT, TEAM_HEAVY, TEAM_BLACK}, ply:Team()) end,
  97. sortOrder = 2
  98. }
  99.  
  100. DarkRP.createCategory{
  101. name = "Shotguns",
  102. categorises = "shipments",
  103. startExpanded = true,
  104. color = Color(255, 0, 0, 255),
  105. canSee = function(ply) return table.HasValue({TEAM_GUN, TEAM_EQUIPMENT, TEAM_HEAVY, TEAM_BLACK}, ply:Team()) end,
  106. sortOrder = 3
  107. }
  108.  
  109. DarkRP.createCategory{
  110. name = "Sniper Rifles",
  111. categorises = "shipments",
  112. startExpanded = true,
  113. color = Color(255, 0, 0, 255),
  114. canSee = function(ply) return table.HasValue({TEAM_GUN, TEAM_EQUIPMENT, TEAM_HEAVY, TEAM_BLACK}, ply:Team()) end,
  115. sortOrder = 3
  116. }
  117.  
  118. DarkRP.createCategory{
  119. name = "SMGS",
  120. categorises = "shipments",
  121. startExpanded = true,
  122. color = Color(255, 0, 0, 255),
  123. canSee = function(ply) return table.HasValue({TEAM_GUN, TEAM_EQUIPMENT, TEAM_HEAVY, TEAM_BLACK}, ply:Team()) end,
  124. sortOrder = 3
  125. }
  126. DarkRP.createCategory{
  127. name = "Explosive",
  128. categorises = "shipments",
  129. startExpanded = true,
  130. color = Color(255, 0, 0, 255),
  131. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_HEAVY}, ply:Team()) end,
  132. sortOrder = 1
  133. }
  134. DarkRP.createCategory{
  135. name = "Machine guns",
  136. categorises = "shipments",
  137. startExpanded = true,
  138. color = Color(255, 255, 255, 255),
  139. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_GUN, TEAM_HEAVY}, ply:Team()) end,
  140. sortOrder = 1
  141. }
  142. DarkRP.createCategory{
  143. name = "Automatic Rifles",
  144. categorises = "shipments",
  145. startExpanded = true,
  146. color = Color(255, 255, 255, 255),
  147. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_GUN, TEAM_HEAVY}, ply:Team()) end,
  148. sortOrder = 1
  149. }
  150. DarkRP.createCategory{
  151. name = "Shotguns",
  152. categorises = "shipments",
  153. startExpanded = true,
  154. color = Color(255, 255, 255, 255),
  155. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_GUN, TEAM_HEAVY}, ply:Team()) end,
  156. sortOrder = 1
  157. }
  158. DarkRP.createCategory{
  159. name = "Snipers",
  160. categorises = "shipments",
  161. startExpanded = true,
  162. color = Color(255, 255, 255, 255),
  163. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_GUN, TEAM_HEAVY}, ply:Team()) end,
  164. sortOrder = 1
  165. }
  166. DarkRP.createCategory{
  167. name = "SubMachine guns",
  168. categorises = "shipments",
  169. startExpanded = true,
  170. color = Color(255, 255, 255, 255),
  171. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_GUN, TEAM_HEAVY}, ply:Team()) end,
  172. sortOrder = 1
  173. }
  174. DarkRP.createCategory{
  175. name = "Ammo",
  176. categorises = "ammo",
  177. startExpanded = true,
  178. color = Color(255, 255, 255, 255),
  179. canSee = function(ply) return true end,
  180. sortOrder = 3
  181. }
  182. DarkRP.createCategory{
  183. name = "Specialties",
  184. categorises = "shipments",
  185. startExpanded = true,
  186. color = Color(255, 0, 0, 255),
  187. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_HEAVY}, ply:Team()) end,
  188. sortOrder = 1
  189. }
  190. DarkRP.createCategory{
  191. name = "Vapes",
  192. categorises = "shipments",
  193. startExpanded = true,
  194. color = Color(255, 0, 0, 255),
  195. canSee = function(ply) return table.HasValue({TEAM_BLACK, TEAM_HEAVY}, ply:Team()) end,
  196. sortOrder = 1
  197. }
  198. DarkRP.createCategory{
  199. name = "Equipment",
  200. categorises = "shipments",
  201. startExpanded = true,
  202. color = Color(255, 0, 0, 255),
  203. canSee = function(ply) return table.HasValue({TEAM_EQUIPMENT}, ply:Team()) end,
  204. sortOrder = 1
  205. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement