Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.66 KB | None | 0 0
  1. TEAM_SWAT = DarkRP.createJob("Swat", {
  2. color = Color(25, 25, 170, 255),
  3. model = {"models/player/swat.mdl"},
  4. description = [[The protector of every citizen that lives in the city.
  5. You have the power to arrest criminals and protect innocents.
  6. Hit a player with your arrest baton to put them in jail.
  7. Bash a player with a stunstick and they may learn to obey the law.
  8. The Battering Ram can break down the door of a criminal, with a warrant for their arrest.
  9. The Battering Ram can also unfreeze frozen props (if enabled).
  10. Type /wanted <name> to alert the public to the presence of a criminal.]],
  11. weapons = {"arrest_stick", "unarrest_stick", "m9k_m92beretta", "stunstick", "door_ram", "weaponchecker", "handcuffs"},
  12. command = "Swat",
  13. max = 2,
  14. salary = 650,
  15. admin = 0,
  16. vote = true,
  17. hasLicense = true,
  18. help = {
  19. "Please don't abuse your job",
  20. "When you arrest someone they are auto transported to jail.",
  21. "They are auto let out of jail after some time",
  22. "Type /warrant [Nick|SteamID|Status ID] to set a search warrant for a player.",
  23. "Type /wanted [Nick|SteamID|Status ID] to alert everyone to a wanted suspect",
  24. "Type /unwanted [Nick|SteamID|Status ID] to clear the suspect",
  25. "Type /jailpos to set the jail position"
  26. }
  27. })
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35. ___________________________________________________________________________________________________________________________
  36.  
  37.  
  38.  
  39. TEAM_ADMIN = DarkRP.createJob("Admin On Duty", {
  40. color = Color(170, 0, 0, 255),
  41. model = "models/player/zeus_combine_v2/zeus_combine_v2.mdl",
  42. description = [[Admin on duty is when you as an admin, is ready to make sure the server stays at its best.
  43. It's up to you to patrol and respond to admin calls.]],
  44. weapons = {},
  45. command = "aod",
  46. max = 0,
  47. salary = 4000,
  48. admin = 0,
  49. vote = false,
  50. hasLicense = false,
  51. customCheck = function(ply) return ply:GetUserGroup() == "Admin" end,
  52.  
  53. })
  54.  
  55.  
  56.  
  57. _________________________________________________________________________________
  58.  
  59.  
  60. TEAM_MD = DarkRP.createJob("Mayors Daughter", {
  61. color = Color(255,100,100,255),
  62. model = "models/player/alyx.mdl",
  63. description = [[You are the mayors daughter, walk around with your dad
  64. just chill around. But be careful, you never know when somebody
  65. is waiting to kidnap you!]],
  66. weapons = {},
  67. command = "mayorsdaughter",
  68. max = 1,
  69. salary = 500,
  70. admin = 0,
  71. vote = false,
  72. hasLicense = false
  73. })
  74.  
  75. ______________________________________________
  76.  
  77.  
  78. TEAM_GUARD = DarkRP.createJob("Guard", {
  79. color = Color(0,200,50,255),
  80. model = "models/player/barney.mdl",
  81. description = [[People will pay for protection, use your weapon or buy one from the local gundealer.]],
  82. weapons = {"weapon_deagle2"},
  83. command = "guard",
  84. max = 1,
  85. salary = 250,
  86. admin = 0,
  87. vote = false,
  88. hasLicense = true
  89. })
  90.  
  91. ______________________________________________________________
  92.  
  93. TEAM_DRUGGY = DarkRP.createJob("Drug Dealer", {
  94. color = Color(51, 204, 255, 255),
  95. model = "models/player/Kleiner.mdl",
  96. description = [[You deal drugs to those in need.
  97. Be careful, may get arrested if caught in the act!]],
  98. weapons = {},
  99. command = "drug",
  100. max = 2,
  101. salary = 0,
  102. admin = 0,
  103. vote = false,
  104. hasLicense = false
  105. })
  106.  
  107. ________________________________________________________
  108.  
  109. TEAM_SS = DarkRP.createJob("Secret Service", {
  110. color = Color(100, 20, 20, 255),
  111. model = "models/player/macdguy.mdl",
  112. description = [[You are responsible for protecting the mayor.
  113. 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.]],
  114. weapons = {"weapon_deagle2", "stunstick", "weaponchecker"},
  115. command = "ss",
  116. max = 2,
  117. salary = 65,
  118. admin = 0,
  119. vote = true,
  120. hasLicense = false,
  121. ammo = {
  122. ["pistol"] = 60,
  123. }
  124. })
  125.  
  126.  
  127.  
  128.  
  129. ________________________________________________________________
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. Jobs jeg selv har lavet.
  149.  
  150.  
  151. TEAM_SS = DarkRP.createJob("Terrorist", {
  152. color = Color(100, 20, 20, 255),
  153. model = "models/player/macdguy.mdl",
  154. description = [[it's your mission to take out the Mayor, you are allowed to Kidnap and Terror.]],
  155. weapons = {"weapon_deagle2", "weapon_ak47", "weapon_knife"},
  156. command = "ss",
  157. max = 3,
  158. salary = 100,
  159. admin = 0,
  160. vote = true,
  161. hasLicense = false,
  162. ammo = {
  163. ["pistol"] = 60,
  164. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement