Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. TEAM_REDGANG = DarkRP.createJob("Brotherhood Thug", {
  2. color = Color(189, 22, 22, 255),
  3. model = {
  4. "models/gang_ballas/gang_ballas_1.mdl",
  5. },
  6. description = [[You are a Brotherhood thug, rendezvous with your fellow gang members and your leader to dominate the streets.
  7. You are at war with the Grove Street Gang and can KOS them. ]],
  8. weapons = {"lockpick"},
  9. command = "brotherhoodthug",
  10. max = 8,
  11. wardrobe = true,
  12.  
  13. wardrobe_default = {951320281, "models/gang_ballas/gang_ballas_1.mdl", "models/gang_ballas/gang_ballas_1.mdl"},
  14.  
  15. salary = 0,
  16. admin = 0,
  17. vote = false,
  18. hasLicense = false,
  19. candemote = false,
  20. category = "Gangsters",
  21. PlayerSpawn = function(ply)
  22. ply:SetMaxHealth(100)
  23. ply:SetHealth(100)
  24. end
  25. })
  26.  
  27. TEAM_REDGANGBOSS = DarkRP.createJob("The Brotherhood OG", {
  28. color = Color(189, 22, 22, 255),
  29. model = {
  30. "models/gang_ballas_boss/gang_ballas_boss.mdl",
  31. },
  32. description = [[You are The Brotherhood OG, rendezvous with your fellow gang members and lead your gang to dominate the city.
  33. You are at war with the Grove Street Gang and can KOS them. ]],
  34. weapons = {"lockpick", "m9k_smgp90"},
  35. command = "brotherhoodog",
  36. max = 1,
  37. wardrobe = true,
  38.  
  39. wardrobe_default = {951320281, "models/gang_ballas_boss/gang_ballas_boss.mdl"},
  40.  
  41. salary = 0,
  42. admin = 0,
  43. vote = false,
  44. hasLicense = false,
  45. candemote = false,
  46. category = "Gangsters",
  47. PlayerSpawn = function(ply)
  48. ply:SetMaxHealth(100)
  49. ply:SetHealth(100)
  50. end
  51. })
  52.  
  53. TEAM_GREENGANG = DarkRP.createJob("Grove Street Thug", {
  54. color = Color(19, 168, 26, 255),
  55. model = {
  56. "models/gang_groove/gang_2.mdl"
  57. },
  58. description = [[You are a Grove Street thug, rendezvous with your fellow gang members and your leader to dominate the streets.
  59. You are at war with the Brotherhood Gang and can KOS them. ]],
  60. weapons = {"lockpick"},
  61. command = "grovethug",
  62. max = 8,
  63. wardrobe = true,
  64.  
  65. wardrobe_default = {951320773, "models/gang_groove/gang_2.mdl"},
  66.  
  67. salary = 0,
  68. admin = 0,
  69. vote = false,
  70. hasLicense = false,
  71. candemote = false,
  72. category = "Gangsters",
  73. PlayerSpawn = function(ply)
  74. ply:SetMaxHealth(100)
  75. ply:SetHealth(100)
  76. end
  77. })
  78.  
  79. TEAM_GREENGANGBOSS = DarkRP.createJob("Grove Street OG", {
  80. color = Color(19, 168, 26, 255),
  81. model = {"models/gang_groove_boss/gang_groove_boss.mdl"},
  82. description = [[You are a Grove Street thug, rendezvous with your fellow gang members and your leader to dominate the streets.
  83. You are at war with the Brotherhood Gang and can KOS them. ]],
  84. weapons = {"lockpick", "m9k_uzi"},
  85. command = "groveog",
  86. max = -3,
  87. wardrobe = true,
  88.  
  89. wardrobe_default = {951320773, "models/gang_groove_boss/gang_groove_boss.mdl"},
  90.  
  91. salary = 0,
  92. admin = 0,
  93. vote = false,
  94. hasLicense = false,
  95. candemote = false,
  96. category = "Gangsters",
  97. PlayerSpawn = function(ply)
  98. ply:SetMaxHealth(100)
  99. ply:SetHealth(100)
  100. end
  101. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement