Advertisement
KimonK

Untitled

Aug 29th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. -- Imperial Army
  2. TEAM_CADET = DarkRP.createJob("Imperial Cadet", {
  3. color = Color(95, 158, 160),
  4. model = {
  5. "models/player/tiki/white.mdl"
  6. },
  7. description = [[Imperial cadets were individuals recruited by the Galactic Empire to be trained as stormtroopers.]],
  8. weapons = {},
  9. command = "cadet",
  10. max = 0,
  11. salary = 0,
  12. admin = 0,
  13. vote = false,
  14. hasLicense = false,
  15. candemote = false,
  16. category = "Imperial Cadet Corps",
  17. ammo = {
  18. ["pistol"] = 300000,
  19. ["ar2"] = 300000,
  20. ["357"] = 300000,
  21. ["smg"] = 300000,
  22. },
  23. })
  24.  
  25. TEAM_STORM = DarkRP.createJob("Storm Trooper", {
  26. color = Color(112, 128, 144),
  27. model = {
  28. "models/player/fatal/troopers/trooper.mdl"
  29. },
  30. description = [[You are a storm trooper.]],
  31. weapons = {},
  32. command = "storm",
  33. max = 0,
  34. salary = 100,
  35. admin = 0,
  36. vote = false,
  37. hasLicense = false,
  38. candemote = false,
  39. category = "Imperial Army",
  40. sortOrder = 1, -- The position of this thing in its category. Lower number means higher up.
  41. ammo = {
  42. ["pistol"] = 300000,
  43. ["ar2"] = 300000,
  44. ["357"] = 300000,
  45. ["smg"] = 300000,
  46. },
  47. })
  48.  
  49. GAMEMODE.DefaultTeam = TEAM_CADET
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement