Advertisement
Guest User

Untitled

a guest
Sep 1st, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. TEAM_ADMINONDUTY = DarkRP.createJob("Staff On Duty", {
  2. color = Color(255, 0, 0, 255),
  3. model = {"models/player/combine_super_soldier.mdl"},
  4. description = [[You know what to do ]],
  5. weapons = {},
  6. command = "adminonduty",
  7. max = 0,
  8. salary = 0,
  9. admin = 1,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. -- CustomCheck
  14. medic = false,
  15. chief = false,
  16. mayor = false,
  17. hobo = false,
  18. cook = false,
  19. category = "STAFF",
  20. })
  21.  
  22.  
  23.  
  24.  
  25. TEAM_DRUGGY = DarkRP.createJob("Drug Dealer", {
  26. color = Color(51, 204, 255, 255),
  27. model = "models/player/Kleiner.mdl",
  28. description = [[You deal drugs to those in need.
  29. Be careful, may get arrested if caught in the act!]],
  30. weapons = {},
  31. command = "drug",
  32. max = 2,
  33. salary = 65,
  34. admin = 0,
  35. vote = false,
  36. hasLicense = false,
  37. category = "Citizens",
  38. })
  39.  
  40.  
  41.  
  42. TEAM_GUARD = DarkRP.createJob("Guard", {
  43. color = Color(0,200,50,255),
  44. model = "models/player/barney.mdl",
  45. description = [[People will pay for protection, use your weapon or buy one from the local gundealer.]],
  46. weapons = {"weapon_deagle2"},
  47. command = "guard",
  48. max = 1,
  49. salary = 85,
  50. admin = 0,
  51. vote = false,
  52. hasLicense = true,
  53. category = "Citizens",
  54. })
  55.  
  56.  
  57. TEAM_MD = DarkRP.createJob("Mayors Daughter", {
  58. color = Color(255,100,100,255),
  59. model = "models/player/alyx.mdl",
  60. description = [[You are the mayors daughter, walk around with your dad
  61. just chill around. But be careful, you never know when somebody
  62. is waiting to kidnap you!]],
  63. weapons = {},
  64. command = "mayorsdaughter",
  65. max = 1,
  66. salary = 80,
  67. admin = 0,
  68. vote = false,
  69. hasLicense = false
  70. })
  71.  
  72.  
  73.  
  74. TEAM_SWAT = DarkRP.createJob("Swat", {
  75. color = Color(25, 25, 170, 255),
  76. model = {"models/player/swat.mdl"},
  77. description = [[The protector of every citizen that lives in the city.
  78. You have the power to arrest criminals and protect innocents.
  79. Hit a player with your arrest baton to put them in jail.
  80. Bash a player with a stunstick and they may learn to obey the law.
  81. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  82. The Battering Ram can also unfreeze frozen props (if enabled).
  83. Type /wanted <name> to alert the public to the presence of a criminal.]],
  84. weapons = {"arrest_stick", "unarrest_stick", "m9k_m92beretta", "stunstick", "door_ram", "weaponchecker", "handcuffs"},
  85. command = "Swat",
  86. max = 4,
  87. salary = 85,
  88. admin = 0,
  89. vote = true,
  90. hasLicense = true,
  91. help = {
  92. "Please don't abuse your job",
  93. "When you arrest someone they are auto transported to jail.",
  94. "They are auto let out of jail after some time",
  95. "Type /warrant [Nick|SteamID|Status ID] to set a search warrant for a player.",
  96. "Type /wanted [Nick|SteamID|Status ID] to alert everyone to a wanted suspect",
  97. "Type /unwanted [Nick|SteamID|Status ID] to clear the suspect",
  98. "Type /jailpos to set the jail position"
  99. },
  100. category = "Civil Protection",
  101. })
  102.  
  103.  
  104.  
  105. TEAM_SS = DarkRP.createJob("Secret Service", {
  106. color = Color(100, 20, 20, 255),
  107. model = "models/player/macdguy.mdl",
  108. description = [[You are responsible for protecting the mayor.
  109. Take care of the old fellow, he is vanuarable to terrorists all the time! Before he enters a room, you need to make sure its secure.]],
  110. weapons = {"weapon_deagle2", "stunstick", "weaponchecker"},
  111. command = "ss",
  112. max = 2,
  113. salary = 65,
  114. admin = 0,
  115. vote = true,
  116. hasLicense = false,
  117. ammo = {
  118. ["pistol"] = 60,
  119. },
  120. category = "Civil Protection",
  121. })
  122.  
  123.  
  124.  
  125. TEAM_HITMAN = DarkRP.createJob("Hitman", {
  126. color = Color(0, 0, 0, 255),
  127. model = "models/player/sunabouzu.mdl",
  128. description = [[People hire you to take out other people,
  129. this job require you to be completely focussed.
  130. A single breath can make you loose a shot.]],
  131. weapons = {"m9k_m24"},
  132. command = "hitman",
  133. max = 1,
  134. salary = 65,
  135. admin = 0,
  136. vote = false,
  137. hasLicense = false,
  138. category = "Citizens",
  139. })
  140.  
  141.  
  142.  
  143. TEAM_THIEF = DarkRP.createJob("Thief", {
  144. color = Color(0, 0, 0, 255),
  145. model = "models/player/robber.mdl",
  146. description = [[You are a thief, rob people, lockpick their house and steal their plants and legal printers.]],
  147. weapons = {"lockpick"}, -- You may wanna find a pickpocket swep and add it here.
  148. command = "thief",
  149. max = 2,
  150. salary = 65,
  151. admin = 0,
  152. vote = false,
  153. hasLicense = false,
  154. category = "Citizens",
  155. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement