Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.44 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:
  10.  
  11. DarkRP.createCategory{
  12.     name = "Category",
  13.     categorises = "jobs",
  14.     startExpanded = true,
  15.     color = Color(200, 20, 20, 255),
  16.     canSee = function(ply) return true end,
  17.     sortOrder = 100,
  18. }
  19.  
  20. Add new categories under the next line!
  21. ---------------------------------------------------------------------------]]
  22.  
  23.  
  24. DarkRP.createCategory{ name = "Corps of Public Services",
  25.     categorises = "jobs",
  26.     startExpanded = true,
  27.     color = Color(20, 20, 200, 255),
  28.     canSee = function(ply) return true end,
  29.     sortOrder = 100,
  30. }
  31.  
  32.  
  33. DarkRP.createCategory{ name = "Citizens",
  34.     categorises = "jobs",
  35.     startExpanded = true,
  36.     color = Color(61, 53, 122, 255),
  37.     canSee = function(ply) return true end,
  38.     sortOrder = 100,
  39. }
  40.  
  41. DarkRP.createCategory{ name = "Unorganized Crime",
  42.     categorises = "jobs",
  43.     startExpanded = true,
  44.     color = Color(161, 145, 27,255),
  45.     canSee = function(ply) return true end,
  46.     sortOrder = 100,
  47. }
  48.  
  49. DarkRP.createCategory{ name = "Speakeasy Staff",
  50.     categorises = "jobs",
  51.     startExpanded = true,
  52.     color = Color(0, 174, 82,255),
  53.     canSee = function(ply) return true end,
  54.     sortOrder = 100,
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement