Advertisement
Guest User

Untitled

a guest
Jul 7th, 2014
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. TEAM_STALIN = AddExtraTeam("Stalin", {
  2. color = Color(255,225,0,255),
  3. model = "file/path/here.mdl",
  4. description = [[Leader of the USSR allowed to declare war against PD & Britain]],
  5. weapons = {},
  6. command = "stalin",
  7. max = 1,
  8. salary = 95,
  9. admin = 0,
  10. vote = true,
  11. hasLicense = false
  12. })
  13.  
  14. TEAM_USSR = AddExtraTeam("USSR", {
  15. color = Color(255,225,0,255),
  16. model = "file/path/here.mdl",
  17. description = [[Troop of the USSR, if at war allowed to kill PD & Britain]],
  18. weapons = {},
  19. command = "ussr",
  20. max = 4,
  21. salary = 45,
  22. admin = 0,
  23. vote = false,
  24. hasLicense = false
  25. })
  26.  
  27. TEAM_QUEEN = AddExtraTeam("Queen", {
  28. color = Color(255,225,0,255),
  29. model = "file/path/here.mdl",
  30. description = [[Leader of England allowed to declare war against USSR and PD]],
  31. weapons = {},
  32. command = "queen",
  33. max = 1,
  34. salary = 95,
  35. admin = 0,
  36. vote = true,
  37. hasLicense = false
  38. })
  39.  
  40. TEAM_BRITISHTROOP = AddExtraTeam("British Troop", {
  41. color = Color(255,225,0,255),
  42. model = "file/path/here.mdl",
  43. description = [[Troop of Britain, if at war allowed to kill PD & USSR]],
  44. weapons = {},
  45. command = "queen",
  46. max = 4,
  47. salary = 45,
  48. admin = 0,
  49. vote = false,
  50. hasLicense = false
  51. })
  52.  
  53. TEAM_JEDI = AddExtraTeam("Jedi", {
  54. color = Color(0, 153, 255, 255),
  55. model = "file/path/here.mdl",
  56. description = [[Jedi Master, allowed to fight against Sith ]],
  57. weapons = {},
  58. command = "jedi",
  59. max = 4,
  60. salary = 80,
  61. admin = 0,
  62. vote = false,
  63. hasLicense = false
  64. customCheck = function(ply) return table.HasValue({"vip"}, ply:GetNWString("usergroup")) end,
  65. CustomCheckFailMsg = "You need to be VIP to become a F.B.I Director."
  66. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement