Advertisement
Guest User

Untitled

a guest
Oct 27th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. TEAM_CITIZEN = DarkRP.createJob("Bewohner", {
  2. color = Color(20, 153, 0, 255),
  3. model = {"models/player/group01/male_02.mdl","models/player/group01/male_03.mdl","models/player/group01/male_04.mdl"},
  4. description = [[]],
  5. weapons = {},
  6. command = "Bewohner",
  7. max = 0,
  8. salary = 45,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. })
  13.  
  14. TEAM_MEDIC = DarkRP.createJob("Arzt", {
  15. color = Color(0, 255, 255, 255),
  16. model = {"models/player/kleiner.mdl"},
  17. description = [[]],
  18. weapons = {"weapon_medkit","weapon_defibrilator"},
  19. command = "Arzt",
  20. max = 5,
  21. salary = 95,
  22. admin = 0,
  23. vote = false,
  24. hasLicense = false,
  25. category = "Normal",
  26. })
  27.  
  28. GAMEMODE.DefaultTeam = TEAM_CITIZEN
  29.  
  30. GAMEMODE.CivilProtection = {
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement