Advertisement
Guest User

Untitled

a guest
Jul 9th, 2018
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.68 KB | None | 0 0
  1. TEAM_DCLASS = DarkRP.createJob("D class", {
  2. color = Color(255, 201, 0, 255),
  3. model = {"models/player/kerry/class_d_2.mdl"},
  4. description = [[You are a Class D, you either did a nasty crime or you were homeless and they picked you from the streets, everyone you know think you are dead or in jail, but they do not know you are here, you will be tested on SCPs for certain reasons, your life is in their hands...]],
  5. weapons = {"weapon_empty_hands"},
  6. command = "Dclass",
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Class D"
  14. })
  15.  
  16. TEAM_GENSEC = DarkRP.createJob("Security Officer", {
  17. color = Color(138, 0, 0, 255),
  18. model = {"models/scprp/riot_02.mdl"},
  19. description = [[You have just joined gensec, you will work your way up the ranks and contain/Maintain D class and SCPs. You must always follow your superiors and follow all foundation rules!]],
  20. weapons = {"models/scprp/riot_02.mdl", "models/scprp/riot_02.mdl", "models/scprp/riot_02.mdl"},
  21. command = "SecurityOfficer",
  22. max = -1,
  23. salary = 0,
  24. admin = 0,
  25. vote = false,
  26. hasLicense = false,
  27. candemote = false,
  28. category = "Security Personnel",
  29. PlayerSpawn = function(ply)
  30. ply:SetMaxHealth(100)
  31. ply:SetHealth(100)
  32. end
  33. })
  34.  
  35. TEAM_RESEARCH = DarkRP.createJob("Researcher", {
  36. color = Color(0, 255, 255, 255),
  37. model = {"models/player/scpsci_male_02.mdl"},
  38. description = [[You are a researcher, do tests on SCPs, make sure you get permission first. You research SCPs and make logs and your superiors will take a look at them and will debate if you are fit for a higher rank]],
  39. weapons = {"models/player/scpsci_male_02.mdl"},
  40. command = "Researcher",
  41. max = 0,
  42. salary = 0,
  43. admin = 0,
  44. vote = false,
  45. hasLicense = false,
  46. candemote = false,
  47. category = "Research Department "
  48. })
  49.  
  50. TEAM_TRT = DarkRP.createJob("TRT Recruit", {
  51. color = Color(94, 84, 84, 255),
  52. model = {"models/mw2/skin_04/mw2_soldier_03.mdl"},
  53. description = [[Congratulations, you have reached TRT, you deal with SCP breaches and you get the SCPs what they request for, always follow your higher-ups, you have an important role in the facility... Don't abuse it.]],
  54. weapons = {"fas2_g3", "weapon_cuff_scp", "weapon_sf2_p226", "weapon_cuff_elastic"},
  55. command = "TRTRecruit",
  56. max = 0,
  57. salary = 0,
  58. admin = 0,
  59. vote = false,
  60. hasLicense = false,
  61. candemote = false,
  62. category = "Tactical Response Team",
  63. PlayerSpawn = function(ply)
  64. ply:SetMaxHealth(150)
  65. ply:SetHealth(150)
  66. ply:SetArmor(150)
  67. end
  68. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement