Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.37 KB | None | 0 0
  1. TEAM_CITIZEN = DarkRP.createJob("Citoyen", {
  2. color = Color(37, 117, 55, 255),
  3. model = {"models/player/Group01/Female_01.mdl", "models/player/Group01/Female_02.mdl", "models/player/Group01/Female_03.mdl", "models/player/Group01/Female_04.mdl", "models/player/Group01/Female_06.mdl", "models/player/group01/male_01.mdl", "models/player/Group01/Male_02.mdl", "models/player/Group01/male_03.mdl", "models/player/Group01/Male_04.mdl", "models/player/Group01/Male_05.mdl", "models/player/Group01/Male_06.mdl", "models/player/Group01/Male_07.mdl", "models/player/Group01/Male_08.mdl", "models/player/Group01/Male_09.mdl"},
  4. description = [[Vous êtes un Citoyen au chômage.]],
  5. weapons = {},
  6. command = "citoyen",
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = ""
  14. })
  15.  
  16. TEAM_POLICE = DarkRP.createJob("Policier", {
  17. color = Color(6, 5, 145, 255),
  18. model = {"models/kerry/player/french_police/male_02.mdl", "models/kerry/player/french_police/male_02.mdl", "models/kerry/player/french_police/male_05.mdl", "models/kerry/player/french_police/male_04.mdl"},
  19. description = [[Vous êtes Policier, vous devez écoutez les ordres de votre Commandant de Patrouille ou de votre Capitaine.
  20. Faite régné la loi.]],
  21. weapons = {"arrest_stick", "unarrest_stick", "fas2_glock20", "stunstick", "door_ram", "weaponchecker"},
  22. command = "police",
  23. max = 6,
  24. salary = 30,
  25. admin = 0,
  26. vote = false,
  27. hasLicense = true,
  28. candemote = false,
  29. category = "Services de Protections",
  30. PlayerDeath = function(ply, weapon, killer)
  31. ply:teamBan()
  32. ply:changeTeam(GAMEMODE.DefaultTeam, true)
  33. DarkRP.notifyAll(0, 4, "Un policier est mort.")
  34. end
  35. })
  36.  
  37. TEAM_CHIEF = DarkRP.createJob("Capitaine", {
  38. color = Color(8, 0, 56, 255),
  39. model = {"models/santosrp/male_06_santosrp.mdl"},
  40. description = [[Vous êtes Capitaine vous gérez vos troupes.]],
  41. weapons = {"arrest_stick", "unarrest_stick", "stunstick", "door_ram", "weaponchecker", "fas2_deagle"},
  42. command = "cap",
  43. max = 1,
  44. salary = 45,
  45. admin = 0,
  46. vote = false,
  47. hasLicense = true,
  48. candemote = false,
  49. category = "Services de Protections",
  50. PlayerDeath = function(ply, weapon, killer)
  51. ply:teamBan()
  52. ply:changeTeam(GAMEMODE.DefaultTeam, true)
  53. DarkRP.notifyAll(0, 4, "Le capitaine est mort.")
  54. end
  55. })
  56.  
  57. TEAM_MAYOR = DarkRP.createJob("Maire", {
  58. color = Color(150, 20, 20, 255),
  59. model = "models/player/breen.mdl",
  60. description = [[Juste, tu est Maire !]],
  61. weapons = {},
  62. command = "mayor",
  63. max = 1,
  64. salary = GAMEMODE.Config.normalsalary * 1.89,
  65. admin = 0,
  66. vote = true,
  67. hasLicense = false,
  68. mayor = true,
  69. category = "Citoyens",
  70. PlayerDeath = function(ply, weapon, killer)
  71. ply:teamBan()
  72. ply:changeTeam(GAMEMODE.DefaultTeam, true)
  73. DarkRP.notifyAll(0, 4, "Le Maire est mort!")
  74. end
  75. })
  76.  
  77. TEAM_GANG = DarkRP.createJob("Gangster", {
  78. color = Color(75, 75, 75, 255),
  79. model = {"models/player/Group03/Female_01.mdl", "models/player/Group03/Female_02.mdl", "models/player/Group03/Female_03.mdl", "models/player/Group03/Female_04.mdl", "models/player/Group03/Female_06.mdl", "models/player/group03/male_01.mdl", "models/player/Group03/Male_02.mdl", "models/player/Group03/male_03.mdl", "models/player/Group03/Male_04.mdl", "models/player/Group03/Male_05.mdl", "models/player/Group03/Male_06.mdl", "models/player/Group03/Male_07.mdl", "models/player/Group03/Male_08.mdl", "models/player/Group03/Male_09.mdl"},
  80. description = [[Vous êtes Gangster.]],
  81. weapons = {},
  82. command = "gangster",
  83. max = 3,
  84. salary = GAMEMODE.Config.normalsalary,
  85. admin = 0,
  86. vote = false,
  87. hasLicense = false,
  88. category = "Citoyens"
  89. })
  90.  
  91. TEAM_MOB = DarkRP.createJob("Chef des Gangsters", {
  92. color = Color(25, 25, 25, 255),
  93. model = "models/player/gman_high.mdl",
  94. description = [[Vous êtes le Chef des Gangsters.]],
  95. weapons = {"lockpick"},
  96. command = "mobboss",
  97. max = 1,
  98. salary = GAMEMODE.Config.normalsalary * 1.34,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = false,
  102. category = "Citoyens"
  103. })
  104.  
  105. TEAM_GUN = DarkRP.createJob("Vendeur D'armes", {
  106. color = Color(255, 140, 0, 255),
  107. model = "models/player/monk.mdl",
  108. description = [[Vous êtes Vendeur D'armes, faite votre argent facile avec vos armes légal.]],
  109. weapons = {},
  110. command = "gundealer",
  111. max = 2,
  112. salary = 10,
  113. admin = 0,
  114. vote = false,
  115. hasLicense = false,
  116. category = "Citoyens"
  117. })
  118.  
  119. TEAM_MEDIC = DarkRP.createJob("Medecin", {
  120. color = Color(47, 79, 79, 255),
  121. model = "models/player/kleiner.mdl",
  122. description = [[Vous êtes Medecin.]],
  123. weapons = {"med_kit"},
  124. command = "medic",
  125. max = 3,
  126. salary = 20,
  127. admin = 0,
  128. vote = false,
  129. hasLicense = false,
  130. medic = true,
  131. category = "Citoyens"
  132. })
  133.  
  134. TEAM_HOBO = DarkRP.createJob("SDF", {
  135. color = Color(80, 45, 0, 255),
  136. model = "models/player/corpse1.mdl",
  137. description = [[Vous êtes SDF. Bonne chance !]],
  138. weapons = {"weapon_bugbait"},
  139. command = "hobo",
  140. max = 2,
  141. salary = 0,
  142. admin = 0,
  143. vote = false,
  144. hasLicense = false,
  145. candemote = false,
  146. hobo = true,
  147. category = "Citoyens"
  148. })
  149.  
  150. TEAM_COOK = DarkRP.createJob("Cuisinier", {
  151. color = Color(238, 99, 99, 255),
  152. model = "models/player/mossman.mdl",
  153. description = [[Vous êtes Cuisinier.]],
  154. weapons = {},
  155. command = "cook",
  156. max = 2,
  157. salary = 15,
  158. admin = 0,
  159. vote = false,
  160. hasLicense = false,
  161. cook = true
  162. })
  163.  
  164. --[[---------------------------------------------------------------------------
  165. Define which team joining players spawn into and what team you change to if demoted
  166. ---------------------------------------------------------------------------]]
  167. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  168.  
  169. --[[---------------------------------------------------------------------------
  170. Define which teams belong to civil protection
  171. Civil protection can set warrants, make people wanted and do some other police related things
  172. ---------------------------------------------------------------------------]]
  173. GAMEMODE.CivilProtection = {
  174. [TEAM_POLICE] = true,
  175. [TEAM_CHIEF] = true,
  176. [TEAM_MAYOR] = true
  177. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement