Advertisement
Guest User

This is retarded.

a guest
Dec 10th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.11 KB | None | 0 0
  1. JOBS FOR EACH REGIMENT
  2. [NAME OF REGIMENT] Private
  3. [NAME OF REGIMENT] Sergeant
  4. [NAME OF REGIMENT] Lieutenant
  5. [NAME OF REGIMENT] Commander
  6.  
  7.  
  8. CHECK THIS U MONG https://docs.google.com/spreadsheets/d/1Y3BEsC8RFs2fZk4MmYYgct_qBB0XxZ1Mes7bXXL9qRk/edit#gid=0
  9.  
  10. GO INGAME AND FIND THE MODEL ID,THE WEAPONS U THINK ARE APPROPRIATE FOR THESE JOBS AND THE HP (Between 250 to 750 depending on how specialized equipment the regiment got)
  11. HERE ARE SOME EXAMPLES OF WHAT I'VE DONE
  12.  
  13. TEAM_STSTOR = DarkRP.createJob("733rd Storm Trooper", {
  14. color = Color(204, 109, 0),
  15. model = {"models/player/sono/troopers/utapau.mdl"},
  16. description = [[You are a Storm Trooper private.]],
  17. weapons = {"weapon_752bf3_e11", "weapon_752_dc15sa"},
  18. command = "st",
  19. max = 0,
  20. salary = 0,
  21. admin = 0,
  22. vote = false,
  23. hasLicense = false,
  24. candemote = true,
  25. ammo = {
  26. ["pistol"] = 300000,
  27. ["ar2"] = 300000,
  28. ["357"] = 300000,
  29. ["smg"] = 300000,
  30. },
  31. category = "Storm Trooper Division",
  32. PlayerSpawn = function(ply) ply:SetHealth(100) ply:SetMaxHealth(100) return CLIENT end,
  33. })
  34.  
  35. TEAM_STPRIV = DarkRP.createJob("733rd ST Private", {
  36. color = Color(204, 109, 0),
  37. model = {"models/player/sono/troopers/utapau.mdl"},
  38. description = [[You are a Storm Trooper private.]],
  39. weapons = {"weapon_752bf3_e11", "weapon_752_dc15sa"},
  40. command = "stpr",
  41. max = 0,
  42. salary = 0,
  43. admin = 0,
  44. vote = false,
  45. hasLicense = false,
  46. candemote = true,
  47. ammo = {
  48. ["pistol"] = 300000,
  49. ["ar2"] = 300000,
  50. ["357"] = 300000,
  51. ["smg"] = 300000,
  52. },
  53. category = "Storm Trooper Division",
  54. PlayerSpawn = function(ply) ply:SetHealth(200) ply:SetMaxHealth(200) return CLIENT end,
  55. })
  56.  
  57. TEAM_STSERG = DarkRP.createJob("733rd ST Sergeant", {
  58. color = Color(204, 109, 0),
  59. model = {"models/player/sono/troopers/utapau.mdl"},
  60. description = [[You are a Storm Trooper Sergeant, and part of the 733rd regiment.]],
  61. weapons = {"weapon_752bf3_e11", "weapon_752_dc15sa", "weapon_cuff_elastic"},
  62. command = "stse",
  63. max = 0,
  64. salary = 0,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. candemote = true,
  69. candemote = true,
  70. ammo = {
  71. ["pistol"] = 300000,
  72. ["ar2"] = 300000,
  73. ["357"] = 300000,
  74. ["smg"] = 300000,
  75. },
  76. category = "Storm Trooper Division",
  77. PlayerSpawn = function(ply) ply:SetHealth(300) ply:SetMaxHealth(300) return CLIENT end,
  78. })
  79.  
  80. TEAM_STLIEUT = DarkRP.createJob("ST Lieutenant", {
  81. color = Color(204, 109, 0),
  82. model = {"models/player/sono/troopers/utapau.mdl"},
  83. description = [[You are the lieutenant of the Storm Trooper Division, part of the 733rd regiment.]],
  84. weapons = {"weapon_752bf3_e11", "weapon_752_dc15sa", "weapon_cuff_elastic"},
  85. command = "stli",
  86. max = 0,
  87. salary = 0,
  88. admin = 0,
  89. vote = false,
  90. hasLicense = false,
  91. candemote = true,
  92. candemote = true,
  93. ammo = {
  94. ["pistol"] = 300000,
  95. ["ar2"] = 300000,
  96. ["357"] = 300000,
  97. ["smg"] = 300000,
  98. },
  99. category = "Storm Trooper Division",
  100. PlayerSpawn = function(ply) ply:SetHealth(400) ply:SetMaxHealth(400) return CLIENT end,
  101. })
  102.  
  103. TEAM_STCOMM = DarkRP.createJob("ST Commander", {
  104. color = Color(204, 109, 0),
  105. model = {"models/player/sono/troopers/utapau.mdl"},
  106. description = [[You are the commander of the Storm Trooper Division, part of the 733rd regiment.]],
  107. weapons = {"weapon_752bf3_e11", "weapon_752_dc15sa", "weapon_cuff_elastic"},
  108. command = "stcomm",
  109. max = 1,
  110. salary = 0,
  111. admin = 0,
  112. vote = false,
  113. hasLicense = false,
  114. candemote = true,
  115. candemote = true,
  116. ammo = {
  117. ["pistol"] = 300000,
  118. ["ar2"] = 300000,
  119. ["357"] = 300000,
  120. ["smg"] = 300000,
  121. },
  122. category = "Storm Trooper Division",
  123. PlayerSpawn = function(ply) ply:SetHealth(550) ply:SetMaxHealth(550) return CLIENT end,
  124. })
  125.  
  126.  
  127. YOU ALSO MUST USE THE TEMPLATE WHICH WAS USED FOR THESE JOBS (Just fucking delete the parts u dont need)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement