Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.53 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "Kriminellen", //Tut das in den categories.lua
  3. categorises = "jobs",
  4. startExpanded = true,
  5. color = Color(173, 56, 56, 255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 3
  8. }
  9.  
  10. TEAM_Rebell = DarkRP.createJob("Rebell", {
  11. color = Color(224, 132, 24, 255),
  12. model = {"models/player/phoenix.mdl"},
  13. description = [[Sie hassen den Staat und alle Staatbeamten. Sie wollen den Staat überstürzen und anschließend erobern]],
  14. weapons = {"keys", "pocket", "itemstore_pickup", "weapon_arc_atmcard", "weapon_fists"},
  15. command = "Rebell",
  16. max = 5,
  17. salary = 200,
  18. admin = 0,
  19. vote = false,
  20. hasLicense = false,
  21. candemote = false,
  22. category = "Kriminellen"
  23. })
  24. TEAM_Rebellenboss = DarkRP.createJob("Rebellenboss", {
  25. color = Color(250, 150, 36, 255),
  26. model = {"models/player/guerilla.mdl"},
  27. description = [[Der Anführer der Rebellen. Er kennt kein Schmerz und keine Grenzen. Er ist gerade mal 40]],
  28. weapons = {"keys", "pocket", "itemstore_pickup", "weapon_arc_atmcard", "lockpick" , "weapon_fists", "unarrest_stick", "lockpick"},
  29. command = "Rebellenboss",
  30. max = 1,
  31. salary = 300,
  32. admin = 0,
  33. vote = false,
  34. hasLicense = false,
  35. candemote = false,
  36. category = "Kriminellen",
  37. NeedToChangeFrom = TEAM_Rebell
  38. })
  39. TEAM_MAFIA = DarkRP.createJob("Mafiosi", {
  40. color = Color(61, 60, 60, 255),
  41. model = {
  42. "models/player/suits/male_07_closed_tie.mdl",
  43. "models/player/suits/male_05_closed_tie.mdl",
  44. "models/player/suits/male_04_closed_tie.mdl"
  45. },
  46. description = [[Sie sind Teil einer Verbrechenorganisation und bleiben zu ihrer Clan auch treu]],
  47. weapons = {"weapon_arc_atmcard", "keys", "pocket", "itemstore_pickup", "weapon_fists"},
  48. command = "mafia",
  49. max = 5,
  50. salary = 450,
  51. admin = 0,
  52. vote = false,
  53. hasLicense = false,
  54. candemote = false,
  55. category = "Kriminellen"
  56. })
  57. TEAM_MAFIABOSS = DarkRP.createJob("Mafiaboss", {
  58. color = Color(41, 41, 41, 255),
  59. model = {"models/player/suits/male_08_closed_coat_tie.mdl"},
  60. description = [[Der Boss der Verbrechenorganisation, er leitet sie gut und kennt keine Grenzen.]],
  61. weapons = {"weapon_arc_atmcard", "keys", "pocket", "itemstore_pickup", "weapon_fists", "lockpick"},
  62. command = "mafiaboss",
  63. max = 1,
  64. salary = 450,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. candemote = true,
  69. category = "Kriminellen",
  70. NeedToChangeFrom = TEAM_MAFIA
  71. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement