Advertisement
condoro

Untitled

Jan 19th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.27 KB | None | 0 0
  1. TEAM_41COM = DarkRP.createJob("41st Commander ", {
  2.     color = Color(8, 145, 4, 255),
  3.     model = {"models/greehd.mdl"},
  4.     description = [[You are the Commander of the 41st Elite Corps.]],
  5.     weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_rpw_binoculars", "realistic_hook", "tfa_sw_dc17dual", "weapon_physgun", "gmod_tool", "weapon_holster"},
  6.     command = "41com",
  7.     max = 1,
  8.     salary = 300,
  9.     admin = 0,
  10.     vote = false,
  11.     hasLicense = true,
  12.     candemote = false,
  13.     category = "41st Elite Corps",
  14.     ammo = {
  15.         ["AR2"] = 400
  16.     },
  17.     PlayerSpawn = function(ply)
  18.         ply:SetMaxHealth(300)
  19.         ply:SetHealth(300)
  20.         ply:SetArmor(250)
  21.     end
  22. })
  23.  
  24.  
  25.  
  26. TEAM_41CPT = DarkRP.createJob("41st Captain", {
  27.     color = Color(8, 145, 4, 255),
  28.     model = {"models/41o.mdl"},
  29.     description = [[You are a Captain of the 41st Elite Corps.]],
  30.     weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "weapon_rpw_binoculars", "tfa_sw_dc17dual", "weapon_physgun", "gmod_tool", "weapon_holster"},
  31.     command = "41cpt",
  32.     max = 5,
  33.     salary = 275,
  34.     admin = 0,
  35.     vote = false,
  36.     hasLicense = true,
  37.     candemote = false,
  38.     category = "41st Elite Corps",
  39.     ammo = {
  40.         ["AR2"] = 400
  41.     },
  42.     PlayerSpawn = function(ply)
  43.         ply:SetMaxHealth(275)
  44.         ply:SetHealth(275)
  45.         ply:SetArmor(230)
  46.     end
  47. })
  48.  
  49. TEAM_41SGT = DarkRP.createJob("41st Sergeant", {
  50.     color = Color(8, 145, 4, 255),
  51.     model = {"models/41t.mdl"},
  52.     description = [[You are a Sergeant of the 41st Elite Corps.]],
  53.     weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "tfa_swch_dc17", "weapon_holster"},
  54.     command = "41sgt",
  55.     max = 10,
  56.     salary = 250,
  57.     admin = 0,
  58.     vote = false,
  59.     hasLicense = true,
  60.     candemote = false,
  61.     category = "41st Elite Corps",
  62.     ammo = {
  63.         ["AR2"] = 400
  64.     },
  65.     PlayerSpawn = function(ply)
  66.         ply:SetMaxHealth(250)
  67.         ply:SetHealth(250)
  68.         ply:SetArmor(220)
  69.     end
  70. })
  71.  
  72. TEAM_41TPR = DarkRP.createJob("41st Trooper", {
  73.     color = Color(8, 145, 4, 255),
  74.     model = {"models/41t2.mdl"},
  75.     description = [[You are a Trooper of the 41st Elite Corps.]],
  76.     weapons = {"tfa_swch_dc15a", "tfa_swch_dc15s", "tfa_swch_dc17", "weapon_holster"},
  77.     command = "41tpr",
  78.     max = 15,
  79.     salary = 225,
  80.     admin = 0,
  81.     vote = false,
  82.     hasLicense = true,
  83.     candemote = false,
  84.     category = "41st Elite Corps",
  85.     ammo = {
  86.         ["AR2"] = 400
  87.     },
  88.     PlayerSpawn = function(ply)
  89.         ply:SetMaxHealth(225)
  90.         ply:SetHealth(225)
  91.         ply:SetArmor(210)
  92.     end
  93. })
  94.  
  95.  
  96. TEAM_41H = DarkRP.createJob("41st Heavy", {
  97.     color = Color(8, 145, 4, 255),
  98.     model = {"models/player/41st/41super.mdl"},
  99.     description = [[You are a Heavy of the 41st Elite Corps.]],
  100.     weapons = {"weapon_holster", "tfa_swch_z6", "tfa_swch_dc15s", "tfa_swch_clonelauncher", "tfa_swch_dc15a", "tfa_swch_dc17"},
  101.     command = "41h",
  102.     max = 3,
  103.     salary = 275,
  104.     admin = 0,
  105.     vote = false,
  106.     hasLicense = true,
  107.     candemote = false,
  108.     category = "41st Elite Corps",
  109.     ammo = {
  110.         ["AR2"] = 400
  111.     },
  112.     PlayerSpawn = function(ply)
  113.         ply:SetMaxHealth(275)
  114.         ply:SetHealth(275)
  115.         ply:SetArmor(230)
  116.     end
  117. })
  118.  
  119.  
  120. TEAM_41MED = DarkRP.createJob("41st Medic", {
  121.     color = Color(8, 145, 4, 255),
  122.     model = {"models/41medic.mdl"},
  123.     description = [[You are a Medic of the 41st Elite Corps.]],
  124.     weapons = {"weapon_holster", "tfa_swch_dc15s", "tfa_swch_dc15a", "tfa_swch_dc17", "weapon_jew_bactakit", "weapon_medkit", "weapon_jew_stimkit", "weapon_bactanade"},
  125.     command = "41med",
  126.     max = 10,
  127.     salary = 250,
  128.     admin = 0,
  129.     vote = false,
  130.     hasLicense = true,
  131.     candemote = false,
  132.     category = "41st Elite Corps",
  133.     ammo = {
  134.         ["AR2"] = 400
  135.     },
  136.     PlayerSpawn = function(ply)
  137.         ply:SetMaxHealth(250)
  138.         ply:SetHealth(250)
  139.         ply:SetArmor(220)
  140.     end
  141. })
  142.  
  143.  
  144. TEAM_41ARF = DarkRP.createJob("41st ARF Trooper", {
  145.     color = Color(8, 145, 4, 255),
  146.     model = {"models/player/lastbastion/41arf/41arf.mdl"},
  147.     description = [[You are a ARF Trooper of the 41st Elite Corps.]],
  148.     weapons = {"weapon_holster", "tfa_swch_dc15s", "tfa_swch_dc15a", "tfa_swch_dc17", "tfa_sw_repsnip"},
  149.     command = "41arf",
  150.     max = 10,
  151.     salary = 250,
  152.     admin = 0,
  153.     vote = false,
  154.     hasLicense = true,
  155.     candemote = false,
  156.     category = "41st Elite Corps",
  157.     ammo = {
  158.         ["AR2"] = 400
  159.     },
  160.     PlayerSpawn = function(ply)
  161.         ply:SetMaxHealth(250)
  162.         ply:SetHealth(250)
  163.         ply:SetArmor(220)
  164.     end
  165. })
  166.  
  167.  
  168. TEAM_41ARC = DarkRP.createJob("41st ARC Trooper", {
  169.     color = Color(8, 145, 4, 255),
  170.     model = {"models/41arc.mdl"},
  171.     description = [[You are a ARC Trooper of the 41st Elite Corps.]],
  172.     weapons = {"weapon_holster", "tfa_swch_dc15s", "realistic_hook", "tfa_swch_dc15a", "tfa_sw_dc17dual"},
  173.     command = "41arc",
  174.     max = 5,
  175.     salary = 275,
  176.     admin = 0,
  177.     vote = false,
  178.     hasLicense = true,
  179.     candemote = false,
  180.     category = "41st Elite Corps",
  181.     ammo = {
  182.         ["AR2"] = 400
  183.     },
  184.     PlayerSpawn = function(ply)
  185.         ply:SetMaxHealth(275)
  186.         ply:SetHealth(275)
  187.         ply:SetArmor(225)
  188.     end
  189. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement