Guest User

Untitled

a guest
Jan 9th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. TEAM_SEALMEM = DarkRP.createJob("Navy SEALS Member", {
  2. color = Color(0,0,245,255),
  3. model = {"models/npc/portal/male_06_aperture.mdl"},
  4. description = [[You are now part of the US NAVY SEALS Congratulations!]],
  5. weapons = {"keys", "cw_kk_hk416", "cw_ump45","cw_m14","cw_frag_grenade","cw_flash_grenade", "m9k_suicide_bomb","weapon_cuff_tactical","cw_smoke_grenade"},
  6. command = "sealmem",
  7. max = 0,
  8. salary = 0,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. candemote = false,
  13. category = "Special Boat Service [Silver VIP]",
  14. sortOrder = 1,
  15. PlayerSpawn = function(ply)
  16. ply:SetMaxHealth(500)
  17. ply:SetHealth(500)
  18. ply:SetArmor(100)
  19. end
  20. })
  21.  
  22. TEAM_SEALSNCO = DarkRP.createJob("Navy SEALS NCO", {
  23. color = Color(0,0,245,255),
  24. model = {"models/player/portal/male_02_aperture.mdl"},
  25. description = [[You are now part of the US NAVY SEALS Congratulations!]],
  26. weapons = {"keys", "cw_kk_hk416", "cw_ump45","cw_m14","cw_frag_grenade","cw_flash_grenade", "m9k_suicide_bomb","weapon_cuff_tactical","cw_smoke_grenade"},
  27. command = "sealnco",
  28. max = 3,
  29. salary = 0,
  30. admin = 0,
  31. vote = false,
  32. hasLicense = false,
  33. candemote = false,
  34. category = "Special Boat Service [Silver VIP]",
  35. sortOrder = 2,
  36. PlayerSpawn = function(ply)
  37. ply:SetMaxHealth(650)
  38. ply:SetHealth(600)
  39. ply:SetArmor(100)
  40. end
  41. })
  42.  
  43. TEAM_SEALSOFC = DarkRP.createJob("Navy SEALS Officer", {
  44. color = Color(0,0,245,255),
  45. model = {"models/npc/portal/male_08_aperture.mdl"},
  46. description = [[You are now part of the US NAVY SEALS Congratulations!]],
  47. weapons = {"keys", "cw_kk_hk416", "cw_ump45","cw_m14","cw_frag_grenade","cw_flash_grenade", "m9k_suicide_bomb","weapon_cuff_tactical","cw_smoke_grenade"},
  48. command = "sealofc",
  49. max = 2,
  50. salary = 0,
  51. admin = 0,
  52. vote = false,
  53. hasLicense = false,
  54. candemote = false,
  55. category = "Special Boat Service [Silver VIP]",
  56. sortOrder = 3,
  57. PlayerSpawn = function(ply)
  58. ply:SetMaxHealth(750)
  59. ply:SetHealth(700)
  60. ply:SetArmor(100)
  61. end
  62. })
Advertisement
Add Comment
Please, Sign In to add comment