trumpito

5th Fleet

Aug 20th, 2017
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 KB | None | 0 0
  1. --#################################################################################--
  2. -- 5th Fleet Guard
  3. --#################################################################################--
  4. TEAM_VSGT = DarkRP.createJob("5th Fleet Sergeant", {
  5. color = Color(0, 128, 255),
  6. model = "models/player/worthy/starwars/5th_lieutenant.mdl",
  7. description = [[Congratulations you are in the 5th Fleet!]],
  8. weapons = {"tfa_nxg_dc17", "tfa_nxg_5th_dc15d", "weapon_policeshield", "clone_card_c3", "stunstick", "weapon_hexshield"},
  9. command = "5thsgt",
  10. max = 5,
  11. salary = 0,
  12. admin = 0,
  13. vote = false,
  14. hasLicense = false,
  15. candemote = false,
  16. category = "5th Fleet Guard",
  17. sortOrder = 2,
  18. PlayerSpawn = function(ply) ply:SetMaxHealth(400) end,
  19. PlayerLoadout = function(ply) ply:SetHealth(400) ply:GiveAmmo(700, "ar2") end,
  20. })
  21.  
  22. TEAM_VLT = DarkRP.createJob("5th Fleet Lieutenant", {
  23. color = Color(0, 128, 255),
  24. model = "models/player/worthy/starwars/5th_captain.mdl",
  25. description = [[Congratulations you are in the 5th Fleet!]],
  26. weapons = {"tfa_nxg_dc17", "tfa_nxg_5th_dc15d", "weapon_policeshield", "clone_card_c3", "stunstick", "weapon_hexshield"},
  27. command = "5thlt",
  28. max = 4,
  29. salary = 0,
  30. admin = 0,
  31. vote = false,
  32. hasLicense = false,
  33. candemote = false,
  34. category = "5th Fleet Guard",
  35. sortOrder = 2,
  36. PlayerSpawn = function(ply) ply:SetMaxHealth(450) end,
  37. PlayerLoadout = function(ply) ply:SetHealth(450) ply:GiveAmmo(700, "ar2") end,
  38. })
  39.  
  40. TEAM_VCAPTAIN = DarkRP.createJob("5th Fleet Captain", {
  41. color = Color(0, 128, 255),
  42. model = "models/player/worthy/starwars/5th_major.mdl",
  43. description = [[Congratulations you are in the 5th Fleet!]],
  44. weapons = {"tfa_nxg_dc17", "tfa_nxg_5th_dc15d", "weapon_policeshield", "clone_card_c3", "stunstick", "weapon_hexshield"},
  45. command = "5thcaptain",
  46. max = 3,
  47. salary = 0,
  48. admin = 0,
  49. vote = false,
  50. hasLicense = false,
  51. candemote = false,
  52. category = "5th Fleet Guard",
  53. sortOrder = 1,
  54. PlayerSpawn = function(ply) ply:SetMaxHealth(500) end,
  55. PlayerLoadout = function(ply) ply:SetHealth(500) ply:GiveAmmo(700, "ar2") end,
  56. })
  57.  
  58. TEAM_VMAJOR= DarkRP.createJob("5th Fleet Chief of Security", {
  59. color = Color(0, 128, 255),
  60. model = "models/player/worthy/starwars/5th_commander.mdl",
  61. description = [[Congratulations you are in the 5th Fleet!]],
  62. weapons = {"tfa_nxg_dc17_dual", "tfa_nxg_5th_dc15d", "weapon_policeshield", "clone_card_c3", "stunstick", "weapon_hexshield"},
  63. command = "5thcos",
  64. max = 1,
  65. salary = 0,
  66. admin = 0,
  67. vote = false,
  68. hasLicense = false,
  69. candemote = false,
  70. category = "5th Fleet Guard",
  71. sortOrder = 1,
  72. PlayerSpawn = function(ply) ply:SetMaxHealth(550) end,
  73. PlayerLoadout = function(ply) ply:SetHealth(550) ply:GiveAmmo(700, "ar2") end,
  74. })
Add Comment
Please, Sign In to add comment