Advertisement
MVG_Vagooba

DEAR LORD HELP

Feb 19th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. DarkRP.createCategory{
  2. name = "21st Attack Battalion",
  3. categorises = "jobs",
  4. startExpanded = true,
  5. color = Color(242, 255, 0, 255),
  6. canSee = function(ply) return true end,
  7. sortOrder = 101,
  8. }
  9.  
  10. JOBS
  11.  
  12. TEAM_21STCOMMANDER = DarkRP.createJob("21st Commander", {
  13. color = Color(204, 194, 57, 255),
  14. model = {"models/player/star_wars_the_force_awakens/first_order_trooper/spartanmark6/first_order_novatrooper.mdl"},
  15. description = [[Congratulations, you are the Commander of the Nova Corps! Can Spawn: Rocket Boots]],
  16. weapons = {"tfa_swch_alphablaster", "keys", "tfa_sw_dc17dual", "weapon_752bf3_binoculars" },
  17. command = "21stco",
  18. max = 1,
  19. salary = 500,
  20. admin = 0,
  21. vote = false,
  22. hasLicense = false,
  23. category = "21st Attack Battalion",
  24. sortOrder = 1,
  25. PlayerLoadout = function(ply) ply:SetHealth(750) ply:GiveAmmo(5000, "ar2") end,
  26. PlayerSpawn = function(ply) ply:SetHealth("750") end,
  27. level = 90
  28.  
  29. -- Insert customCheck here if you have one and want one.
  30. })
  31.  
  32. TEAM_21STEXO = DarkRP.createJob("21st Executive Officer", {
  33. color = Color(204, 194, 57, 255),
  34. model = {"models/player/star wars the force awakens/first order trooper/hunter/first_order_hazmatcap.mdl"},
  35. description = [[Congratulations, you are the EXO of the Nova Corps! Can Spawn: Rocket Boots]],
  36. weapons = {"tfa_swch_alphablaster", "keys", "tfa_sw_dc17dual", "weapon_752bf3_binoculars"},
  37. command = "21stexo",
  38. max = 1,
  39. salary = 450,
  40. admin = 0,
  41. vote = false,
  42. hasLicense = false,
  43. category = "21st Attack Battalion",
  44. sortOrder = 2,
  45. PlayerLoadout = function(ply) ply:SetHealth(600) ply:GiveAmmo(5000, "ar2") end,
  46. PlayerSpawn = function(ply) ply:SetHealth("600") end,
  47. level = 50
  48. -- Insert customCheck here if you have one and want one.
  49. })
  50.  
  51. TEAM_21STLT = DarkRP.createJob("21st Lieutenant", {
  52. color = Color(204, 194, 57, 255),
  53. model = {
  54. "models/player/star wars the force awakens/first order trooper/hunter/first_order_hazmat.mdl",
  55. },
  56. description = [[Congratulations, you are a member of the Nova Corps! Can Spawn: Rocket Boots]],
  57. weapons = {"tfa_swch_alphablaster", "keys", "tfa_sw_dc17dual", "weapon_752bf3_binoculars"},
  58. command = "21stlt",
  59. max = 9,
  60. salary = 450,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = false,
  64. category = "21st Attack Battalion",
  65. sortOrder = 2,
  66. PlayerLoadout = function(ply) ply:SetHealth(500) ply:GiveAmmo(5000, "ar2") end,
  67. PlayerSpawn = function(ply) ply:SetHealth("500") end,
  68. level = 50
  69. -- Insert customCheck here if you have one and want one.
  70. })
  71.  
  72. TEAM_21STSGT = DarkRP.createJob("21st Sergeant", {
  73. color = Color(204, 194, 57, 255),
  74. model = {"models/player/star wars the force awakens/first order trooper/spartanmark6/first_order_trooper_yellow.mdl"},
  75. description = [[Congratulations, you are a member of the Nova Corps! Can Spawn: Rocket Boots]],
  76. weapons = {"tfa_swch_alphablaster", "keys", "tfa_sw_dc17dual", "weapon_752bf3_binoculars"},
  77. command = "21stsgt",
  78. max = 0,
  79. salary = 350,
  80. admin = 0,
  81. vote = false,
  82. hasLicense = false,
  83. category = "21st Attack Battalion",
  84. sortOrder = 3,
  85. PlayerLoadout = function(ply) ply:SetHealth(350) ply:GiveAmmo(5000, "ar2") end,
  86. PlayerSpawn = function(ply) ply:SetHealth("350") end,
  87. level = 10
  88. -- Insert customCheck here if you have one and want one.
  89. })
  90.  
  91. TEAM_21STTRP = DarkRP.createJob("21st Trooper", {
  92. color = Color(204, 194, 57, 255),
  93. model = {"models/player/star wars the force awakens/first order trooper/spartanmark6/first_order_trooper_yellow.mdl"},
  94. description = [[Congratulations, you are a member of the Nova Corps! Can Spawn: Rocket Boots]],
  95. weapons = {"tfa_swch_alphablaster", "keys", "tfa_sw_dc17dual", "weapon_752bf3_binoculars"},
  96. command = "21sttrp",
  97. max = 0,
  98. salary = 250,
  99. admin = 0,
  100. vote = false,
  101. hasLicense = false,
  102. category = "21st Attack Battalion",
  103. sortOrder = 4,
  104. PlayerLoadout = function(ply) ply:SetHealth(250) ply:GiveAmmo(5000, "ar2") end,
  105. PlayerSpawn = function(ply) ply:SetHealth("250") end,
  106. level = 0
  107. -- Insert customCheck here if you have one and want one.
  108. })
  109.  
  110. The Tank
  111.  
  112. DarkRP.createEntity("Tanks", {
  113. ent = "tx130",
  114. model = "models/props_c17/suitcase_passenger_physics.mdl",
  115. price = 0,
  116. max = 1,
  117. cmd = "tank",
  118. level = 0,
  119. allowed = {TEAM_21STCOMMANDER, TEAM_21STEXO, TEAM_21STLT, TEAM_21STSGT, TEAM_21STTRP},
  120. category = "Entities",
  121. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement