Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. //
  2. TEAM_TERRORIST = AddExtraTeam("Terrorist", {
  3. color = Color(255, 204, 255, 255),
  4. model = "models/player/arctic.mdl",
  5. description = [[You are a terrorist. Go into any PRIVATE building, say /advert allahu akbar then you can kill anyone in that building. 500 sec cooldown. You can't allahu akbar in p]],
  6. weapons = {""},
  7. command = "/proterrorist",
  8. max = 3,
  9. salary = 30,
  10. admin = 0,
  11. vote = false,
  12. category = "Admin Related",
  13. hasLicense = false,
  14. customCheck = function(ply) return ply:GetNWString("usergroup") == "admin" or ply:GetNWString("usergroup") == "superadmin" or ply:GetNWString("usergroup") == "owner" end,
  15. CustomCheckFailMsg = "This Job Is Donator Only!"
  16. })
  17.  
  18. //
  19.  
  20. //
  21. TEAM_ADMINONDUTY = AddExtraTeam("Admin On Duty", {
  22. color = Color(255, 204, 255, 255),
  23. model = "models/thresh/thresh.mdl",
  24. description = [[You are a terrorist in every way but better. All terrorist rules apply but not the weapon ones. You can only use the weapons you spawn with.]],
  25. weapons = {"weapon_bugbait"},
  26. command = "/proterrorist",
  27. max = 4,
  28. salary = 30,
  29. admin = 0,
  30. vote = false,
  31. category = "Admin Related",
  32. hasLicense = false,
  33. customCheck = function(ply) return ply:GetNWString("usergroup") == "admin" or ply:GetNWString("usergroup") == "superadmin" or ply:GetNWString("usergroup") == "owner" end,
  34. CustomCheckFailMsg = "This Job Is Donator Only!"
  35. })
  36.  
  37. //
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement