Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. TEAM_TRAINEESCIENTIST = DarkRP.createJob("Trainee Scientist", {
  2. color = Color(0, 255, 10, 255),
  3. model = {
  4. "models/player/kerry/class_scientist_1.mdl",
  5. "models/player/kerry/class_scientist_2.mdl",
  6. "models/player/kerry/class_scientist_3.mdl",
  7. "models/player/kerry/class_scientist_4.mdl",
  8. "models/player/kerry/class_scientist_5.mdl",
  9. "models/player/kerry/class_scientist_6.mdl",
  10. "models/player/kerry/class_scientist_7.mdl"
  11. },
  12. description = [[Trainee Scientist, go get experience by watching experiments and rank up]],
  13. weapons = {"guthscp_keycard_lvl_1"},
  14. command = "traineescientist",
  15. max = 0,
  16. salary = 40,
  17. admin = 0,
  18. vote = false,
  19. hasLicense = false,
  20. candemote = false,
  21. category = "Science",
  22. PlayerSpawn = function(ply)
  23. ply:SetMaxHealth(100)
  24. ply:SetHealth(100)
  25. end
  26. })
  27.  
  28.  
  29.  
  30. TEAM_ASSISTANTSCIENTIST = DarkRP.createJob("Assistant Scientist", {
  31. color = Color(0, 255, 10, 255),
  32. model = {
  33. "models/player/kerry/class_scientist_1.mdl",
  34. "models/player/kerry/class_scientist_2.mdl",
  35. "models/player/kerry/class_scientist_3.mdl",
  36. "models/player/kerry/class_scientist_4.mdl",
  37. "models/player/kerry/class_scientist_5.mdl",
  38. "models/player/kerry/class_scientist_6.mdl",
  39. "models/player/kerry/class_scientist_7.mdl"
  40. },
  41. description = [[Assistant scientist, go help in some experiments]],
  42. weapons = {"guthscp_keycard_lvl_2"},
  43. command = "assistantscientist",
  44. max = 0,
  45. salary = 60,
  46. admin = 0,
  47. vote = false,
  48. hasLicense = false,
  49. candemote = false,
  50. category = "Science",
  51. PlayerSpawn = function(ply)
  52. ply:SetMaxHealth(100)
  53. ply:SetHealth(100)
  54. end
  55. })
  56.  
  57.  
  58.  
  59.  
  60. TEAM_SCIENTIST = DarkRP.createJob("Scientist", {
  61. color = Color(0, 255, 10, 255),
  62. model = {
  63. "models/player/kerry/class_scientist_1.mdl",
  64. "models/player/kerry/class_scientist_2.mdl",
  65. "models/player/kerry/class_scientist_3.mdl",
  66. "models/player/kerry/class_scientist_4.mdl",
  67. "models/player/kerry/class_scientist_5.mdl",
  68. "models/player/kerry/class_scientist_6.mdl",
  69. "models/player/kerry/class_scientist_7.mdl"
  70. },
  71. description = [[scientist, go Learn from the scps.]],
  72. weapons = {"guthscp_keycard_lvl_3", "weapon_cuff_elastic"},
  73. command = "scientist",
  74. max = 0,
  75. salary = 100,
  76. admin = 0,
  77. vote = false,
  78. hasLicense = false,
  79. candemote = false,
  80. category = "Science",
  81. PlayerSpawn = function(ply)
  82. ply:SetMaxHealth(100)
  83. ply:SetHealth(100)
  84. end
  85. })
  86.  
  87.  
  88.  
  89. TEAM_SENIORSCIENTIST = DarkRP.createJob("Senior Scientist", {
  90. color = Color(0, 255, 10, 255),
  91. model = {
  92. "models/player/kerry/class_scientist_1.mdl",
  93. "models/player/kerry/class_scientist_2.mdl",
  94. "models/player/kerry/class_scientist_3.mdl",
  95. "models/player/kerry/class_scientist_4.mdl",
  96. "models/player/kerry/class_scientist_5.mdl",
  97. "models/player/kerry/class_scientist_6.mdl",
  98. "models/player/kerry/class_scientist_7.mdl"
  99. },
  100. description = [[senior scientist, go tell someone to learn from the scps.]],
  101. weapons = {"weapon_cuff_elastic", "guthscp_keycard_lvl_4"},
  102. command = "seniorscientist",
  103. max = 0,
  104. salary = 150,
  105. admin = 0,
  106. vote = false,
  107. hasLicense = false,
  108. candemote = false,
  109. category = "Science",
  110. PlayerSpawn = function(ply)
  111. ply:SetMaxHealth(100)
  112. ply:SetHealth(100)
  113. end
  114. })
  115.  
  116.  
  117.  
  118.  
  119. TEAM_HEADSCIENTIST = DarkRP.createJob("Head Scientist", {
  120. color = Color(0, 255, 10, 255),
  121. model = {
  122. "models/player/kerry/class_scientist_1.mdl",
  123. "models/player/kerry/class_scientist_2.mdl",
  124. "models/player/kerry/class_scientist_3.mdl",
  125. "models/player/kerry/class_scientist_4.mdl",
  126. "models/player/kerry/class_scientist_5.mdl",
  127. "models/player/kerry/class_scientist_6.mdl",
  128. "models/player/kerry/class_scientist_7.mdl"
  129. },
  130. description = [[Head Scientist, go learn something new.]],
  131. weapons = {"weapon_cuff_elastic", "guthscp_keycard_lvl_5"},
  132. command = "headscientist",
  133. max = 1,
  134. salary = 200,
  135. admin = 0,
  136. vote = false,
  137. hasLicense = false,
  138. candemote = false,
  139. category = "Science",
  140. PlayerSpawn = function(ply)
  141. ply:SetMaxHealth(100)
  142. ply:SetHealth(100)
  143. end
  144. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement