Advertisement
HatsyPlayZ

Untitled

Jan 1st, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. --]]
  2. TEAM_GENERAL = DarkRP.createJob("General", {
  3. color = ,
  4. model = {"models/lt_c/sci_fi/humans/male_bill.mdl"},
  5. description = [[Take control of the commanders of each division, keeping them in shape and war ready!]],
  6. weapons = {"tfa_752_defenderoftruth", "weapon_cuff_elastic", "voice_amplifier"},
  7. command = "general",
  8. max = 1,
  9. salary = 500,
  10. admin = 0,
  11. vote = false,
  12. hasLicense = false,
  13. candemote = false,
  14. category = "Fleet",
  15. PlayerSpawn = function(ply)
  16. ply:SetHealth(500)
  17. end
  18. })
  19.  
  20. --]]
  21. TEAM_FLEETRECRUIT = DarkRP.createJob("Fleet Recruit", {
  22. color = ,
  23. model = {"models/player/scifi_male_03.mdl",
  24. "models/player/scifi_female_03.mdl"
  25. },
  26. description = [[Congratulations On Making Fleet, You will be put through several practical tests to test your skill in management of the ship, work up the ranks to become a well respected fleet member]],
  27. weapons = {"tfa_752_defenderoftruth", "weapon_cuff_elastic", "voice_amplifier"},
  28. command = "fleetrecruit",
  29. max = 1,
  30. salary = 500,
  31. admin = 0,
  32. vote = false,
  33. hasLicense = false,
  34. candemote = false,
  35. category = "Fleet",
  36. PlayerSpawn = function(ply)
  37. ply:SetHealth(500)
  38. end
  39. })
  40.  
  41. --]]
  42. TEAM_FLEETCORPORAL = DarkRP.createJob("Fleet Corporal", {
  43. color = ,
  44. model = {"models/player/scifi_male_01.mdl",
  45. "models/player/scifi_rochelle.mdl"
  46. },
  47. description = [[You have proven yourself in ship management, you will now be put through many more practical tests to test your skill in management of the ship, work up the ranks to become a well respected fleet member]],
  48. weapons = {"tfa_752_defenderoftruth", "weapon_cuff_elastic", "voice_amplifier"},
  49. command = "fleetcorporal",
  50. max = 1,
  51. salary = 500,
  52. admin = 0,
  53. vote = false,
  54. hasLicense = false,
  55. candemote = false,
  56. category = "Fleet",
  57. PlayerSpawn = function(ply)
  58. ply:SetHealth(500)
  59. end
  60. })
  61.  
  62. --]]
  63. TEAM_FLEETLTCAPTAIN = DarkRP.createJob("Fleet Lieutenant Captain", {
  64. color = ,
  65. model = {"models/player/scifi_louis.mdl",
  66. "models/player/scifi_female_07.mdl"
  67. },
  68. description = [[You have proven yourself in ship management, you will now be put through many more practical tests to test your skill in management of the ship, work up the ranks to become a well respected fleet member]],
  69. weapons = {"tfa_752_defenderoftruth", "weapon_cuff_elastic", "voice_amplifier"},
  70. command = "fleetltcaptain",
  71. max = 1,
  72. salary = 500,
  73. admin = 0,
  74. vote = false,
  75. hasLicense = false,
  76. candemote = false,
  77. category = "Fleet",
  78. PlayerSpawn = function(ply)
  79. ply:SetHealth(500)
  80. end
  81. })
  82.  
  83. --]]
  84. TEAM_FLEETMajorLieutenant = DarkRP.createJob("Fleet Major Lieutenant", {
  85. color = ,
  86. model = {"models/player/scifi_mp2.mdl",
  87. "models/player/scifi_female_04.mdl"
  88. },
  89. description = [[You have proven yourself in ship management, you will now be put through many more practical tests to test your skill in management of the ship, work up the ranks to become a well respected fleet member]],
  90. weapons = {"tfa_752_defenderoftruth", "weapon_cuff_elastic", "voice_amplifier"},
  91. command = "fleetmajorlt",
  92. max = 1,
  93. salary = 500,
  94. admin = 0,
  95. vote = false,
  96. hasLicense = false,
  97. candemote = false,
  98. category = "Fleet",
  99. PlayerSpawn = function(ply)
  100. ply:SetHealth(500)
  101. end
  102. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement