Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.71 KB | None | 0 0
  1.  
  2.  
  3. TEAM_FIRSTORDER = DarkRP.createJob("Storm Trooper CO",
  4. {
  5. color = Color(102, 102, 153, 255),
  6. model = "models/player/venator/anh/anh_stormtrooper.mdl",
  7. description = [[Don't be Lighten.]],
  8. weapons = {
  9. "tfa_swch_e11","tfa_swch_dh17",
  10. "tfa_swch_dh17"
  11. },
  12. command = "Storm TrooperCommander",
  13. max = 1,
  14. salary = 10,
  15. admin = 0,
  16. vote = false,
  17. hasLicense = false,
  18. candemote = false,
  19. CustomCheckFailMsg = "You are not whitelisted to this job.",
  20. category = "StormTroopers",
  21. sortOrder = 50,
  22. PlayerSpawn = function(ply) ply:SetHealth(750) ply:SetArmor(1) end,
  23. PlayerDeath = function(ply) end,
  24. }
  25. )
  26.  
  27. TEAM_FIRSTORDER = DarkRP.createJob("Storm Trooper NCO",
  28. {
  29. color = Color(102, 102, 153, 255),
  30. model = "models/player/venator/anh3/anh_stormtrooper3.mdl",
  31. description = [[Don't be Lighten.]],
  32. weapons = {
  33. "tfa_swch_e11","tfa_swch_dh17",
  34. "tfa_swch_dh17"
  35. },
  36. command = "Storm Trooper Captain",
  37. max = 0,
  38. salary = 10,
  39. admin = 0,
  40. vote = false,
  41. hasLicense = false,
  42. candemote = false,
  43. CustomCheckFailMsg = "You are not whitelisted to this job.",
  44. category = "StormTroopers",
  45. sortOrder = 50,
  46. PlayerSpawn = function(ply) ply:SetHealth(450) ply:SetArmor(1) end,
  47. PlayerDeath = function(ply) end,
  48. }
  49. )
  50.  
  51.  
  52. TEAM_FIRSTORDER = DarkRP.createJob("Storm Trooper Enlisted",
  53. {
  54. color = Color(102, 102, 153, 255),
  55. model = "models/player/venator/anh2/anh_stormtrooper2.mdl",
  56. description = [[Don't be Lighten.]],
  57. weapons = {
  58. "tfa_swch_e11","tfa_swch_dh17",
  59. "tfa_swch_dh17"
  60. },
  61. command = "Storm TrooperTrooper",
  62. max = 0,
  63. salary = 10,
  64. admin = 0,
  65. vote = false,
  66. hasLicense = false,
  67. candemote = false,
  68. CustomCheckFailMsg = "You are not whitelisted to this job.",
  69. category = "StormTroopers",
  70. sortOrder = 50,
  71. PlayerSpawn = function(ply) ply:SetHealth(250) ply:SetArmor(1) end,
  72. PlayerDeath = function(ply) end,
  73. }
  74. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement