Advertisement
MartinLaps

ARC NULL

Feb 17th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. TEAM_NULLCCMD = DarkRP.createJob("ARC Null 11 - Ordo Skirata", {
  2. color = Color(75, 0, 130),
  3. model = "models/player/shader/starwars/captain_ordo_n11.mdl",
  4. description = [[ARC Null 11 - Ordo Skirata]],
  5. weapons = {"tfa_sw_dc17dual", "tfa_sw_repsnip", "tfa_sw_repshot", "tfa_swch_dc15a""},
  6. command = "skirata",
  7. category = "ARC Null",
  8. max = 0,
  9. salary = GAMEMODE.Config.normalsalary * 0,
  10. admin = 0,
  11. hasLicense = false,
  12. candemote = false,
  13. type = "skirata",
  14. PlayerSpawn = function(ply)
  15. ply:SetHealth(100)
  16. ply:SetMaxHealth(100)
  17. ply:SetArmor(100)
  18. end,
  19. })
  20.  
  21. TEAM_NULL6 = DarkRP.createJob("ARC Null 6 - K'omrk", {
  22. color = Color(75, 0, 130),
  23. model = "models/player/shader/starwars/lieutenant_kom'rk_n06.mdl",
  24. description = [[ARC Null 6 - K'omrk]],
  25. weapons = {"tfa_sw_dc17dual", "tfa_sw_repsnip", "tfa_sw_repshot", "tfa_swch_dc15a"},
  26. command = "komrk",
  27. category = "ARC Null",
  28. max = 0,
  29. salary = GAMEMODE.Config.normalsalary * 0,
  30. admin = 0,
  31. hasLicense = false,
  32. candemote = false,
  33. type = "komrk",
  34. PlayerSpawn = function(ply)
  35. ply:SetHealth(100)
  36. ply:SetMaxHealth(100)
  37. ply:SetArmor(100)
  38. end,
  39. })
  40.  
  41. TEAM_NULL12 = DarkRP.createJob("ARC Null 12 - A'den", {
  42. color = Color(75, 0, 130),
  43. model = "models/player/shader/starwars/seargent_a'den_n12.mdl", ",
  44. description = [[ARC Null 12 A'den]],
  45. weapons = {"tfa_sw_dc17dual", "tfa_sw_repsnip", "tfa_sw_repshot", "tfa_swch_dc15a"},
  46. command = "aden",
  47. category = "ARC Null",
  48. max = 0,
  49. salary = GAMEMODE.Config.normalsalary * 0,
  50. admin = 0,
  51. hasLicense = false,
  52. candemote = false,
  53. type = "aden",
  54. PlayerSpawn = function(ply)
  55. ply:SetHealth(100)
  56. ply:SetMaxHealth(100)
  57. ply:SetArmor(100)
  58. end,
  59. })
  60.  
  61. TEAM_NULL10 = DarkRP.createJob("ARC Null 10 - Jaing", {
  62. color = Color(75, 0, 130),
  63. model = "models/player/shader/starwars/lieutenant_jaing_n10.mdl",
  64. description = [[ARC Null 10 - Jaing]],
  65. weapons = {"tfa_sw_dc17dual", "tfa_sw_repsnip", "tfa_sw_repshot", "tfa_swch_dc15a"},
  66. command = "jaing",
  67. category = "ARC Null",
  68. max = 0,
  69. salary = GAMEMODE.Config.normalsalary * 0,
  70. admin = 0,
  71. hasLicense = false,
  72. candemote = false,
  73. type = "jaing",
  74. PlayerSpawn = function(ply)
  75. ply:SetHealth(100)
  76. ply:SetMaxHealth(100)
  77. ply:SetArmor(100)
  78. end,
  79. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement