Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. -- 91st
  2. TEAM_91STT = DarkRP.createJob("91st Trooper", {
  3. color = Color(126, 58, 58, 255),
  4. model = {
  5. "models/player/d91t/d91t.mdl",
  6. "models/player/91sttier2/91sttier2.mdl",
  7. "models/player/91sttier1/91sttier1.mdl"
  8. },
  9. description = [[91st Recon Corps]],
  10. weapons = {
  11. "tfa_swch_dc15a",
  12. "tfa_sw_repsnip",
  13. "tfa_swch_de10",
  14. "climb_swep2"
  15. },
  16. command = "91sttrooper",
  17. max = 0,
  18. salary = 10,
  19. admin = 0,
  20. vote = false,
  21. hasLicense = false,
  22. category = "91st Recon Corps",
  23. PlayerSpawn = function(ply)
  24. ply:SetHealth(150)
  25. ply:SetMaxHealth(150)
  26. ply:SetArmor(50)
  27. end
  28. })
  29. TEAM_91STMED = DarkRP.createJob("91st Medic", {
  30. color = Color(126, 58, 58, 255),
  31. model = "models/player/91stmedic/91stmedic.mdl",
  32. description = [[Medic of the 91st Recon Corps]],
  33. weapons = {
  34. "tfa_swch_dc15a",
  35. "tfa_swch_de10",
  36. "weapon_bactanade",
  37. "med_kit",
  38. "climb_swep2",
  39. "darkrp_defibrillator"
  40. },
  41. command = "91stmedic",
  42. max = 10,
  43. salary = 10,
  44. admin = 0,
  45. vote = false,
  46. hasLicense = false,
  47. category = "91st Recon Corps",
  48. PlayerSpawn = function(ply)
  49. ply:SetHealth(150)
  50. ply:SetMaxHealth(150)
  51. ply:SetArmor(50)
  52. end
  53. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement