Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "Fleet", -- The name of the category.
  3. categorises = "jobs", -- What it categorises. MUST be one of "jobs", "entities", "shipments", "weapons", "vehicles", "ammo".
  4. startExpanded = true, -- Whether the category is expanded when you open the F4 menu.
  5. colour = Color(0, 60, 0, 255), -- The color of the category header.
  6. canSee = function(ply) return true end, -- OPTIONAL: whether the player can see this category AND EVERYTHING IN IT.
  7. 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.
  8. }
  9. DarkRP.createCategory{
  10. name = "501st Legion", -- The name of the category.
  11. categorises = "jobs", -- What it categorises. MUST be one of "jobs", "entities", "shipments", "weapons", "vehicles", "ammo".
  12. startExpanded = true, -- Whether the category is expanded when you open the F4 menu.
  13. colour = Color(0, 60, 0, 255), -- The color of the category header.
  14. canSee = function(ply) return true end, -- OPTIONAL: whether the player can see this category AND EVERYTHING IN IT.
  15. 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.
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement