Advertisement
Guest User

Fixed Bs jobs

a guest
Mar 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.33 KB | None | 0 0
  1.  
  2.  TEAM_BEART = DarkRP.createJob("2nd AC Tropper", {
  3.     color = Color(232, 148, 21, 255),
  4.     model = {"models/player/2nd/starwars/paratrooper.mdl"},
  5.     description = [[Bear Tropper]],
  6.     weapons = {"weapon_752bf3_dlt20a", "tfa_swch_alphablaster", "dc17grapple", "clone_card_c2", "tfa_swch_dc15s", "keys", "Tfa_swch_dc15a_alt"},
  7.     command = "2nd ACt",
  8.     max = 0,
  9.     salary = 1000,
  10.     admin = 0,
  11.     vote = false,
  12.     hasLicense = false,
  13.     candemote = false,
  14.     category = "2nd AC",
  15.     PlayerSpawn = function(ply)
  16.         ply:SetMaxHealth(250)
  17.         ply:SetHealth(250)
  18.         ply:SetArmor(100)
  19.     end
  20. })
  21.  
  22. TEAM_BEARSGT = DarkRP.createJob("2nd AC Sergeant", {
  23.     color = Color(232, 148, 21, 255),
  24.     model = {"models/player/2nd/starwars/elite.mdl"},
  25.     description = [[Bear SGT]],
  26.     weapons = {"weapon_752bf3_dlt20a", "tfa_swch_alphablaster", "dc17grapple", "clone_card_c2", "tfa_swch_dc15s", "keys", "Tfa_swch_dc15a_alt"},
  27.     command = "2nd ACsgt",
  28.     max = 0,
  29.     salary = 1000,
  30.     admin = 0,
  31.     vote = false,
  32.     hasLicense = false,
  33.     candemote = false,
  34.     category = "2nd AC",
  35.     PlayerSpawn = function(ply)
  36.         ply:SetMaxHealth(350)
  37.         ply:SetHealth(350)
  38.         ply:SetArmor(100)
  39.     end
  40. })
  41.  
  42. TEAM_BEARLT = DarkRP.createJob("2nd AC Lieuteant", {
  43.     color = Color(232, 148, 21, 255),
  44.     model = {"models/player/2nd/starwars/lieutenant.mdl"},
  45.     description = [[Bear Lieuteant]],
  46.     weapons = {"weapon_752bf3_dlt20a", "tfa_swch_alphablaster", "dc17grapple", "clone_card_c2", "tfa_swch_dc15s", "keys", "Tfa_swch_dc15a_alt"},
  47.     command = "2nd AClt",
  48.     max = 0,
  49.     salary = 1000,
  50.     admin = 0,
  51.     vote = false,
  52.     hasLicense = false,
  53.     candemote = false,
  54.     category = "2nd AC",
  55.     PlayerSpawn = function(ply)
  56.         ply:SetMaxHealth(450)
  57.         ply:SetHealth(450)
  58.         ply:SetArmor(100)
  59.     end
  60. })
  61.  
  62.  
  63.  
  64. TEAM_BEARCAP = DarkRP.createJob("2nd AC Captain", {
  65.     color = Color(232, 148, 21, 255),
  66.     model = {"models/player/2nd/starwars/captain.mdl"},
  67.     description = [[Bear Captain]],
  68.     weapons = {"weapon_752bf3_dlt20a", "tfa_swch_alphablaster", "dc17grapple", "clone_card_c2", "tfa_swch_dc15s", "keys", "Tfa_swch_dc15a_alt"},
  69.     command = "2nd ACcap",
  70.     max = 0,
  71.     salary = 1000,
  72.     admin = 0,
  73.     vote = false,
  74.     hasLicense = false,
  75.     candemote = false,
  76.     category = "2nd AC",
  77.     PlayerSpawn = function(ply)
  78.         ply:SetMaxHealth(700)
  79.         ply:SetHealth(700)
  80.         ply:SetArmor(100)
  81.     end
  82. })
  83.  
  84.  
  85. TEAM_BEARCO = DarkRP.createJob("2nd AC Commander", {
  86.     color = Color(232, 148, 21, 255),
  87.     model = {"models/player/2nd/starwars/commander.mdl"},
  88.     description = [[Bear Commander]],
  89.     weapons = {"weapon_752bf3_dlt20a", "tfa_swch_alphablaster", "dc17grapple", "clone_card_c2", "tfa_swch_dc15s", "keys", "Tfa_swch_dc15a_alt"},
  90.     command = "2nd ACco",
  91.     max = 0,
  92.     salary = 1000,
  93.     admin = 0,
  94.     vote = false,
  95.     hasLicense = false,
  96.     candemote = false,
  97.     category = "2nd AC",
  98.     PlayerSpawn = function(ply)
  99.         ply:SetMaxHealth(1100)
  100.         ply:SetHealth(1100)
  101.         ply:SetArmor(100)
  102.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement