Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. Add jobs under the following line:
  2. ---------------------------------------------------------------------------]]
  3.  
  4. TEAM_SECURITY = DarkRP.createJob("Body Guard",{
  5. color = Color(190,223,0,255),
  6. model ="models/player/swat.mdl",
  7. description =[[You're responsible for the safety
  8. of a citizen who pays you money for
  9. protecting him.]],
  10. weapons ={"m9k_mp5sd"},
  11. command ="security",
  12. max=2,
  13. salary =200,
  14. admin =0,
  15. vote =true,
  16. hasLicense =true,
  17. })
  18.  
  19. TEAM_SECURITY = DarkRP.createJob("Swat Medic", {
  20. color = Color(47, 79, 79, 255),
  21. model = "models/player/kleiner.mdl",
  22. description = [[With your medical knowledge you work to restore players to full health.
  23. Without a medic, people cannot be healed.
  24. Left click with the Medical Kit to heal other players.
  25. Right click with the Medical Kit to heal yourself.]],
  26. weapons = {"med_kit", "m9k_hk45c"},
  27. command = "medic",
  28. max = 1,
  29. salary = 350,
  30. admin = 0,
  31. vote = true,
  32. hasLicense = true,
  33. })
  34.  
  35. TEAM_SS = DarkRP.createJob("Secret Service", {
  36. color = Color(100, 20, 20, 255),
  37. model = "models/player/Combine_Soldier.mdl",
  38. description = [[You are responsible for protecting the mayor.
  39. 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.]],
  40. weapons = {"m9k_m92beretta", "stunstick", "weaponchecker", "m9k_mp5"},
  41. command = "ss",
  42. max = 2,
  43. salary = 230,
  44. admin = 0,
  45. vote = true,
  46. hasLicense = false,
  47. customCheck = function(ply) return ply:GetUserGroup() == "donator" or ply:IsSuperAdmin() end,
  48. CustomCheckFailMsg = "This job is Donator only!"
  49. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement