Guest User

The Bro Code

a guest
Feb 6th, 2018
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.06 KB | None | 0 0
  1. TEAM_THIEF = DarkRP.createJob("Thief", {
  2. color = Color(0, 0, 0, 255),
  3. model = "models/player/group03/male_09.mdl",
  4. description = [[You are a thief, rob people.]],
  5. weapons = {"lockpick", "itemstore_pickup"},
  6. command = "thief",
  7. max = 2,
  8. salary = 65,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category = "Citizens",
  13. })
  14.  
  15. TEAM_HOBO = AddExtraTeam("Hobo", {
  16. color = Color(80, 45, 0, 255),
  17. model = "models/player/corpse1.mdl",
  18. description = [[The lowest member of society. All people see you laugh.
  19. You have no home.
  20. Beg for your food and money
  21. Sing for everyone who passes to get money
  22. Make your own wooden home somewhere in a corner or
  23. outside someone else's door]],
  24. weapons = {"weapon_bugbait", "weapon_angryhobo", "itemstore_pickup"},
  25. command = "hobo",
  26. max = 5,
  27. salary = 0,
  28. admin = 0,
  29. vote = false,
  30. hasLicense = false,
  31. candemote = false
  32. })
  33.  
  34. TEAM_KNIFE = DarkRP.createJob("Knife Dealer", {
  35. color = Color(255, 55, 55, 255),
  36. model = {"models/codmw2/t_codm.mdl", "itemstore_pickup"},
  37. description = [[You are a Knife Dealer, You sell Limited Edition Knives to people. For a price]],
  38. weapons = {},
  39. command = "knifedealer",
  40. max = 2,
  41. salary = 55,
  42. admin = 0,
  43. vote = false,
  44. hasLicense = true,
  45. candemote = false,
  46. category = "Citizens"
  47. })
  48.  
  49. TEAM_BGUARD = DarkRP.createJob("Bank Guard", {
  50. color = Color(0,200,50,255),
  51. model = "models/player/barney.mdl",
  52. description = [[You are the bank guard, you protect the bank from robbers!.]],
  53. weapons = {"m9k_deagle", "itemstore_pickup"},
  54. command = "bguard",
  55. max = 4,
  56. salary = 85,
  57. admin = 0,
  58. vote = false,
  59. hasLicense = true,
  60. category = "Citizens",
  61. })
  62.  
  63. TEAM_PET = DarkRP.createJob("Pet", {
  64. color = Color(0,200,50,255),
  65. model = "models/doge_player/doge_player.mdl",
  66. description = [[You are a Pet, you go to lonely people and make them happy]],
  67. weapons = {"weapon_vape_juicy", "itemstore_pickup"},
  68. command = "pet",
  69. max = 2,
  70. salary = 85,
  71. admin = 0,
  72. vote = false,
  73. hasLicense = true,
  74. category = "Citizens",
  75. })
  76.  
  77. TEAM_VAPE = DarkRP.createJob("Vape Legend", {
  78. color = Color(0,200,50,255),
  79. model = "models/player/skeleton.mdl",
  80. description = [[You are the Vape Legend, You just vape. You can also sell vapes for a price]],
  81. weapons = {"weapon_vape_butterfly", "weapon_vape_custom", "itemstore_pickup"},
  82. command = "vape",
  83. max = 2,
  84. salary = 85,
  85. admin = 0,
  86. vote = false,
  87. hasLicense = true,
  88. category = "Citizens",
  89. })
  90.  
  91. TEAM_UNDERCOVER = DarkRP.createJob("Undercover Cop", {
  92. color = Color(255, 0, 0, 255),
  93. model = {"models/player/group03/male_09.mdl"},
  94. description = [[You are a undercover cop. You join criminal organisations and find out what they are up to. Use /job to change your title]],
  95. weapons = {"m9k_hkusp", "itemstore_pickup"},
  96. command = "/undercover",
  97. max = 3,
  98. salary = 45,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = true,
  102. candemote = false,
  103. category = "Civil Protection"
  104. })
  105.  
  106. TEAM_HACK = DarkRP.createJob("Hacker", {
  107. color = Color(0,200,50,255),
  108. model = "models/player/aiden_pearce.mdl",
  109. description = [[You are a hacker, you hack. You can work with ANYONE]],
  110. weapons = {"weapon_hack_phone", "keypad_cracker", "itemstore_pickup"},
  111. command = "hacker",
  112. max = 4,
  113. salary = 55,
  114. admin = 0,
  115. vote = false,
  116. hasLicense = false,
  117. category = "Citizens",
  118. })
  119.  
  120.  
  121. TEAM_PTHIEF = DarkRP.createJob("Quick Thief", {
  122. color = Color(0, 0, 0, 255),
  123. model = "models/player/group03/male_09.mdl",
  124. description = [[You are a professional thief, rob people with speed.]],
  125. weapons = {"pro_lockpick", "itemstore_pickup"},
  126. command = "qthief",
  127. max = 5,
  128. salary = 65,
  129. admin = 0,
  130. vote = false,
  131. hasLicense = false,
  132. category = "Citizens",
  133. customCheck = function(ply) return CLIENT or
  134. table.HasValue({"vip", "trial-moderator", "moderator", "admin", "senior-administrator", "superadmin", "staff-manager"}, ply:GetNWString("usergroup"))
  135. end,
  136. CustomCheckFailMsg = "This is for VIP only",
  137. })
  138. TEAM_PHACK = DarkRP.createJob("Quick Hacker", {
  139. color = Color(0,200,50,255),
  140. model = "models/player/aiden_pearce.mdl",
  141. description = [[You are a quick hacker, you hack quicker than others. You can work with ANYONE]],
  142. weapons = {"weapon_hack_phone", "prokeypadcracker", "itemstore_pickup"},
  143. command = "qhacker",
  144. max = 4,
  145. salary = 55,
  146. admin = 0,
  147. vote = false,
  148. hasLicense = false,
  149. category = "Citizens",
  150. customCheck = function(ply) return CLIENT or
  151. table.HasValue({"vip", "trial-moderator", "moderator", "admin", "senior-administrator", "superadmin", "staff-manager"}, ply:GetNWString("usergroup"))
  152. end,
  153. CustomCheckFailMsg = "This is for VIP only",
  154. })
Advertisement
Add Comment
Please, Sign In to add comment