Advertisement
Guest User

Untitled

a guest
Apr 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. TEAM_RCTRO = DarkRP.createJob("Republic Comando Trooper", {
  2. color = Color(220,20,60),
  3. model = "models/player/sgg/starwars/clone_commando.mdl",
  4. description = [[You are a Republic Comando Trooper.]],
  5. weapons = {""},
  6. command = "rctro",
  7. max = 0,
  8. salary = 250,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = false,
  12. category = "Republic Comandos",
  13. PlayerSpawn = function(ply)
  14. ply:SetHealth(550)
  15. ply:SetArmor(100)
  16. end
  17. })
  18.  
  19. TEAM_RCBOSS = DarkRP.createJob("Republic Comando Boss", {
  20. color = Color(220,20,60),
  21. model = "models/player/sgg/starwars/clone_commando_38.mdl",
  22. description = [[You are the Republic Comando Boss.]],
  23. weapons = {""},
  24. command = "rcboss",
  25. max = 0,
  26. salary = 250,
  27. admin = 0,
  28. vote = false,
  29. hasLicense = false,
  30. category = "Republic Comandos",
  31. PlayerSpawn = function(ply)
  32. ply:SetHealth(750)
  33. ply:SetArmor(100)
  34. end
  35. })
  36.  
  37. TEAM_RCFIXER = DarkRP.createJob("Republic Comando Fixer", {
  38. color = Color(220,20,60),
  39. model = "models/player/sgg/starwars/clone_commando_40.mdl",
  40. description = [[You are the Republic Comando Fixer.]],
  41. weapons = {""},
  42. command = "rcfixer",
  43. max = 0,
  44. salary = 250,
  45. admin = 0,
  46. vote = false,
  47. hasLicense = false,
  48. category = "Republic Comandos",
  49. PlayerSpawn = function(ply)
  50. ply:SetHealth(650)
  51. ply:SetArmor(100)
  52. end
  53. })
  54.  
  55. TEAM_RCSCORCH = DarkRP.createJob("Republic Comando Scorch", {
  56. color = Color(220,20,60),
  57. model = "models/player/sgg/starwars/clone_commando_62.mdl",
  58. description = [[You are the Republic Comando Scorch.]],
  59. weapons = {""},
  60. command = "rcscorch",
  61. max = 0,
  62. salary = 250,
  63. admin = 0,
  64. vote = false,
  65. hasLicense = false,
  66. category = "Republic Comandos",
  67. PlayerSpawn = function(ply)
  68. ply:SetHealth(650)
  69. ply:SetArmor(100)
  70. end
  71. })
  72.  
  73. TEAM_RCSEV = DarkRP.createJob("Republic Comando Sev", {
  74. color = Color(220,20,60),
  75. model = "models/player/sgg/starwars/clone_commando_07.mdl",
  76. description = [[You are the Republic Comando Sev.]],
  77. weapons = {""},
  78. command = "rcsev",
  79. max = 0,
  80. salary = 250,
  81. admin = 0,
  82. vote = false,
  83. hasLicense = false,
  84. category = "Republic Comandos",
  85. PlayerSpawn = function(ply)
  86. ply:SetHealth(650)
  87. ply:SetArmor(100)
  88. end
  89. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement