Advertisement
Guest User

Shared.lua donator problem

a guest
Nov 21st, 2012
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. TEAM_MTHEIF = AddExtraTeam("Master Thief", {
  2. color = Color(150, 153, 0, 150),
  3. model = "models/player/arctic.mdl",
  4. description = [[You are a faster, and stronger thief. Use your
  5. lockpick and keypad cracker to break
  6. into people's homes and steal. You may also hold people
  7. up using a firearm.]],
  8. weapons = {"pro_lockpick", "keypad_cracker"},
  9. command = "mtheif",
  10. max = 3,
  11. salary = 75,
  12. admin = 0,
  13. vote = false,
  14. hasLicense = false
  15. customCheck = function(ply)
  16. return ply:IsUserGroup("donator")
  17. end
  18. })
  19.  
  20. TEAM_SCHEIF = AddExtraTeam("SWAT Team Leader", {
  21. color = Color(0, 0, 0, 102),
  22. model = "models/player/riot.mdl",
  23. description = [[You are in charge of the SWAT force. Assist the Civil
  24. Protection in dangerous situations such as raids and riots with better
  25. weapons and tactics.]],
  26. weapons = {"weapon_mp52", "weapon_deagle2", "arrest_stick", "stunstick"},
  27. command = "swatcheif",
  28. max = 1,
  29. salary = 75,
  30. admin = 0,
  31. vote = true,
  32. hasLicense = true,
  33. NeedToChangeFrom = TEAM_SWAT
  34. customCheck = function(ply)
  35. return ply:IsUserGroup("donator")
  36. end
  37. })
  38.  
  39. TEAM_SWAT = AddExtraTeam("SWAT", {
  40. color = Color(0, 0, 0, 102),
  41. model = "models/player/urban.mdl",
  42. description = [[Assist the Civil Protection in dangerous
  43. situations such as raids and riots with better weapons
  44. and tactics.]],
  45. weapons = {"weapon_m42", "weapon_deagle2", "arrest_stick", "stunstick", "door_ram"},
  46. command = "swat",
  47. max = 4,
  48. salary = 60,
  49. admin = 0,
  50. vote = true,
  51. hasLicense = true
  52. customCheck = function(ply)
  53. return ply:IsUserGroup("donator")
  54. end
  55. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement