Advertisement
Guest User

DarkRP Staff

a guest
May 22nd, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.93 KB | None | 0 0
  1. Staff On Duty
  2. {{
  3.  
  4. TEAM_STAFFONDUTY = DarkRP.createJob("Staff On Duty", {
  5.     color = Color(0, 0, 0, 255),
  6.     model = {"models/player/combine_super_soldier.mdl"},
  7.     description = [[You Control The Server And Keep It Clean From Rule Breakers]],
  8.     weapons = {},
  9.     command = "Staff",
  10.     max = ,
  11.     salary = 500,
  12.     admin = 1,
  13.     vote = false,
  14.     hasLicense = false,
  15.      
  16. })
  17.  
  18. Owner On Duty
  19. {{
  20. TEAM_OWNERONDUTY = DarkRP.createJob("Owner On Duty", {
  21.     color = Color(0, 0, 0, 255),
  22.     model = {"models/player/combine_super_soldier.mdl"},
  23.     description = [[You Control The Server And Keep It Clean From Rule Breakers.Owners Only]],
  24.     weapons = {},
  25.     command = "Owner",
  26.     max = 2,
  27.     salary = 1000,
  28.     admin = 2,
  29.     vote = false,
  30.     hasLicense = false,
  31.      
  32.     customCheck = function(ply) return ply:GetNWString("usergroup") == "Owners" () end,
  33.     CustomCheckFailMsg = "This job is Owners Only!"
  34. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement