Advertisement
KimonK

Untitled

Aug 19th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.74 KB | None | 0 0
  1. TEAM_212CO = DarkRP.createJob("212th Commander", {
  2. color = Color(255, 140, 0),
  3. model = {
  4. "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl"
  5. },
  6. description = [[You are now the 212th Commander, make your regiment and the Empire proud.]],
  7. weapons = {"tfa_752_dlt19", "tfa_kotor_bp_5", "weapon_cuff_elastic", "comlink_swep"},
  8. command = "212co",
  9. max = 1,
  10. salary = 500,
  11. admin = 0,
  12. vote = false,
  13. hasLicense = false,
  14. candemote = false,
  15. category = "212th Attack Battalion",
  16. sortOrder = 1, -- The position of this thing in its category. Lower number means higher up.
  17. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  18. ply:SetHealth(600)
  19. ply:SetMaxHealth(600)
  20. end,
  21. ammo = {
  22. ["pistol"] = 300000,
  23. ["ar2"] = 300000,
  24. ["357"] = 300000,
  25. ["smg"] = 300000,
  26. },
  27. })
  28. TEAM_212LT = DarkRP.createJob("212th Lieutenant", {
  29. color = Color(255, 140, 0),
  30. model = {
  31. "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl"
  32. },
  33. description = [[You are now a 212th Lieutenant, make your regiment and the Empire proud.]],
  34. weapons = {"tfa_752_dlt19", "tfa_kotor_bp_5", "comlink_swep"},
  35. command = "212lt",
  36. max = 0,
  37. salary = 400,
  38. admin = 0,
  39. vote = false,
  40. hasLicense = false,
  41. candemote = false,
  42. category = "212th Attack Battalion",
  43. sortOrder = 3, -- The position of this thing in its category. Lower number means higher up.
  44. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  45. ply:SetHealth(525)
  46. ply:SetMaxHealth(525)
  47. end,
  48. ammo = {
  49. ["pistol"] = 300000,
  50. ["ar2"] = 300000,
  51. ["357"] = 300000,
  52. ["smg"] = 300000,
  53. },
  54. })
  55. TEAM_212SGT = DarkRP.createJob("212th Sergeant", {
  56. color = Color(255, 140, 0),
  57. model = {
  58. "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl"
  59. },
  60. description = [[You are now a 212th Sergeant, make your regiment and the Empire proud.]],
  61. weapons = {"tfa_752_dlt19", "tfa_kotor_bp_5", "comlink_swep"},
  62. command = "212sgt",
  63. max = 0,
  64. salary = 350,
  65. admin = 0,
  66. vote = false,
  67. hasLicense = false,
  68. candemote = false,
  69. category = "212th Attack Battalion",
  70. sortOrder = 4, -- The position of this thing in its category. Lower number means higher up.
  71. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  72. ply:SetHealth(450)
  73. ply:SetMaxHealth(450)
  74. end,
  75. ammo = {
  76. ["pistol"] = 300000,
  77. ["ar2"] = 300000,
  78. ["357"] = 300000,
  79. ["smg"] = 300000,
  80. },
  81. })
  82. TEAM_212TRP = DarkRP.createJob("212th Trooper", {
  83. color = Color(255, 140, 0),
  84. model = {
  85. "models/player/hydro/212th_stormtrooper/212th_stormtrooper.mdl"
  86. },
  87. description = [[You are now a 212th Trooper, make your regiment and the Empire proud.]],
  88. weapons = {"tfa_752_dlt19", "tfa_kotor_bp_5", "comlink_swep"},
  89. command = "212trp",
  90. max = 0,
  91. salary = 300,
  92. admin = 0,
  93. vote = false,
  94. hasLicense = false,
  95. candemote = false,
  96. category = "212th Attack Battalion",
  97. sortOrder = 5, -- The position of this thing in its category. Lower number means higher up.
  98. PlayerLoadout = function(ply) -- this line is added. Remember a comma at the end of above line if it is not there.
  99. ply:SetHealth(375)
  100. ply:SetMaxHealth(375)
  101. end,
  102. ammo = {
  103. ["pistol"] = 300000,
  104. ["ar2"] = 300000,
  105. ["357"] = 300000,
  106. ["smg"] = 300000,
  107. },
  108. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement