Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.49 KB | None | 0 0
  1. -- [[ STRANGERS ]] --
  2.  
  3. local veteranPlayers = {
  4.     {"STEAM_0:0:71943"}
  5. }
  6.  
  7. local recruitPlayers = {
  8.     {"STEAM_0:0:7193"}
  9. }
  10.  
  11. mergedPlayers = recruitPlayers
  12. for k,v in pairs(veteranPlayers) do
  13.     table.insert(mergedPlayers, v)
  14. end
  15.  
  16. TEAM_EX_STRANGERSVET = DarkRP.createJob("Strangers Veteran", {
  17.     color = Color(102, 204, 253, 255),
  18.     model = {"models/player/pd2_wolf_p.mdl", "models/player/pd2_hoxton_p.mdl", "models/player/pd2_dallas_p.mdl", "models/player/pd2_chains_p.mdl"},
  19.     custom = "STEAM_0:1:37961562",
  20.     description = [[A group of kids grew up together in the ghetto where they were mistreated and betrayed by everyone around them. They were left to fend for themselves by their parents at a young age and as time passed they became a family of criminals, maybe not linked by blood, but linked by heart.
  21.     They are thieves and must follow ALL thief rules.]],
  22.     evil = true,
  23.     weapons = {"fas2_rpk", "fas2_m14", "upgradedlockpick", "unarrest_stick2", "fas2_rem870", "fas2_m82", "med_kit2", "climb_swep2"},
  24.     PlayerSpawn = function(ply) ply:SetArmor(100) end,
  25.     salary = 1200,
  26.     admin = 0,
  27.     vote = false,
  28.     hasLicense = false,
  29.     max = 8,
  30.     level = 20,
  31.     command = "strangersvet",
  32.     customCheck = function(ply)
  33.         for k,v in ipairs(veteranPlayers) do
  34.             if v[1] == ply:SteamID() then
  35.                 return true
  36.             end
  37.         end
  38.         return false
  39.     end,
  40.     CustomCheckFailMsg = "This is not your custom job."
  41. })
  42.  
  43. TEAM_EX_STRANGERSREC = DarkRP.createJob("Strangers Recruit", {
  44.     color = Color(102, 204, 253, 255),
  45.     model = {"models/player/pd2_wolf_p.mdl", "models/player/pd2_hoxton_p.mdl", "models/player/pd2_dallas_p.mdl", "models/player/pd2_chains_p.mdl"},
  46.     custom = "STEAM_0:1:37961562",
  47.     description = [[A group of kids grew up together in the ghetto where they were mistreated and betrayed by everyone around them. They were left to fend for themselves by their parents at a young age and as time passed they became a family of criminals, maybe not linked by blood, but linked by heart.
  48.     They are thieves and must follow ALL thief rules.]],
  49.     evil = true,
  50.     weapons = {"fas2_rpk", "upgradedlockpick", "unarrest_stick2"},
  51.     PlayerSpawn = function(ply) ply:SetArmor(50) end,
  52.     salary = 1200,
  53.     admin = 0,
  54.     vote = false,
  55.     hasLicense = false,
  56.     max = 6,
  57.     level = 15,
  58.     command = "strangersrec",
  59.     customCheck = function(ply)
  60.         for k,v in ipairs(mergedPlayers) do
  61.             if v[1] == ply:SteamID() then
  62.                 return true
  63.             end
  64.         end
  65.         return false
  66.     end,
  67.     CustomCheckFailMsg = "This is not your custom job."
  68. })
  69.  
  70. -- [[ STRANGERS END ]] --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement