Advertisement
Guest User

Untitled

a guest
Aug 1st, 2015
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. TEAM_STAFF = DarkRP.createJob("Staff On Duty", {
  2. color = Color(255, 0, 152, 255),
  3. model = {"models/player/combine_super_soldier.mdl"},
  4. description = [[You do your job as staff. Don't RP as this job!]],
  5. weapons = {},
  6. command = "staff",
  7. max = 10,
  8. salary = 4000,
  9. admin = 0,
  10. vote = false,
  11. hasLicense = true,
  12. candemote = false,
  13. customCheck = function(ply) return table.HasValue({"admin", "moderator", "Trial-Mod", "S.I.T", "global-admin", "Head-Admin", "owner", "superadmin"}, ply:GetNWString("usergroup"))
  14. end,
  15. CustomCheckFailMsg = "Staff job only.",
  16. })
  17.  
  18. TEAM_ELITE = DarkRP.createJob("Elite Raider", {
  19. color = Color(255, 1, 1, 255),
  20. model = {"models/player/pd2_dallas_p.mdl"},
  21. description = [[Elite Raider, self explanitory.]],
  22. weapons = {"m9k_dragunov", "m9k_dbarrel", "m9k_m61_frag"},
  23. command = "elite",
  24. max = 4,
  25. salary = 400,
  26. admin = 0,
  27. vote = false,
  28. hasLicense = false,
  29. candemote = false,
  30. medic = false,
  31. chief = false,
  32. mayor = false,
  33. hobo = false,
  34. cook = false,
  35. category = "Citizens",
  36. customCheck = function( ply ) return CLIENT or ply:SteamID("Steam_0:0:104101357") end,
  37. CustomCheckFailMsg = "You don't have the required SteamID to become this job."
  38. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement