• [NEED FIX] SWRP - Jobs not showing, No Lua Errors.
    4 replies, posted
No lua errors but jobs don't show up --[[--------------------------------------------------------------------------- DarkRP custom jobs --------------------------------------------------------------------------- This file contains your custom jobs. This file should also contain jobs from DarkRP that you edited. Note: If you want to edit a default DarkRP job, first disable it in darkrp_config/disabled_defaults.lua       Once you've done that, copy and paste the job to this file and edit it. The default jobs can be found here: https://github.com/FPtje/DarkRP/blob/master/gamemode/config/jobrelated.lua For examples and explanation please visit this wiki page: http://wiki.darkrp.com/index.php/DarkRP:CustomJobFields Add your custom jobs under the following line: ---------------------------------------------------------------------------]] TEAM_CT = DarkRP.createJob("Clone Trooper", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_trp/clone_trp.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Other = DarkRP.createJob("Admin On Duty", {     color = Color(250, 250, 250, 255),     model = "models/lazarusgaming/lg104thcommander/lg104thcommander.mdl",     description = [[Your Gay!.]],     weapons = {"bf2017_dc15s", "weapon_physgun", "gmod_tool"}, -- You may wanna find a pickpocket swep and add it here.     command = "Duty",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Other",     PlayerLoadout = function(ply) ply:SetHealth(10000)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_CT = DarkRP.createJob("Clone Officer", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_lt/clone_lt.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_CT = DarkRP.createJob("Clone Medic", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_med/clone_med.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_CT = DarkRP.createJob("Clone Heavy", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_trp/clone_trp.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_CT = DarkRP.createJob("Clone Recon", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_trp2/clone_trp2.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_CT = DarkRP.createJob("Clone Commander", {     color = Color(250, 250, 250, 255),     model = "models/reizer_cgi_p2/clone_cpt/clone_cpt.mdl",     description = [[CT Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "Clone_Commander",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "CT",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARF = DarkRP.createJob("ARF Commander", {     color = Color(203, 203, 167, 255),     model = "models/lazarusgaming/lgarftrauma/lgarftrauma.mdl",     description = [[ARF Commander Trauma.]],     weapons = {"weapon_camo", "bf2017_dc15a", "bf2017_dc17", "bf2017_dc15s"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARF_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARF",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARF = DarkRP.createJob("ARF Trooper", {     color = Color(203, 203, 167, 255),     model = {"models/lazarusgaming/lgarftrooper/lgarftrooper.mdl",     "models/player/gingers_assassin/gingers_assassin_arf_captain.mdl",     "models/lazarusgaming/lgarfcommander/lgarfcommander.mdl"     },     description = [[ARF Cog.]],     weapons = {"tfa_swch_ee3", "tfa_dc15a_expanded", "tfa_sw_repsnip"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARF_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARF",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARF = DarkRP.createJob("ARF Officer", {     color = Color(203, 203, 167, 255),     model = {"models/lazarusgaming/lgarfofficer/lgarfofficer.mdl",     "models/player/gingers_assassin/gingers_assassin_arf_captain.mdl"     },     description = [[ARF Cog.]],     weapons = {"tfa_swch_ee3", "tfa_dc15a_expanded", "tfa_sw_repsnip"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARF_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARF",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARF = DarkRP.createJob("ARF XO", {     color = Color(203, 203, 167, 255),     model = "models/player/liquid/arf/bull/bulltrooper.mdl",     description = [[ARF Cog.]],     weapons = {"tfa_swch_ee3", "tfa_dc15a_expanded", "tfa_sw_repsnip", "weapon_camo", "tfa_sw_dc17dual", "tfa_swch_de10"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARF_XO",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARF",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Delta = DarkRP.createJob("Delta Boss", {     color = Color(128, 128, 128, 250),     model = "models/synergyroleplay/rcdeltasquad/rcdeltaboss/rcdeltaboss.mdl",     description = [[Delta Leader.]],     weapons = {"tfa_swch_dc17m_br", "bf2017_dc15s", "tfa_sw_repshot", "tfa_sw_repsnip", "tfa_swch_dc17m_at", "weapon_swrc_det"}, -- You may wanna find a pickpocket swep and add it here.     command = "Delta_Boss",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Delta",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Delta = DarkRP.createJob("Delta Scorch", {     color = Color(128, 128, 128, 250),     model = "models/synergyroleplay/rcdeltasquad/rcdeltascorch/rcdeltascorch.mdl",     description = [[Delta Cog.]],     weapons = {"tfa_swch_dc17m_br", "bf2017_dc15s", "tfa_sw_repshot", "weapon_swrc_det", "tfa_swch_dc17m_at"}, -- You may wanna find a pickpocket swep and add it here.     command = "Delta_Scorch",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Delta",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Delta = DarkRP.createJob("Delta Fixer", {     color = Color(128, 128, 128, 250),     model = "models/synergyroleplay/rcdeltasquad/rcdeltafixer/rcdeltafixer.mdl",     description = [[Delta Cog.]],     weapons = {"tfa_swch_dc17m_br", "bf2017_dc15s", "tfa_sw_repshot", "repair_tool", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "Delta_Fixer",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Delta",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Delta = DarkRP.createJob("Delta Sev", {     color = Color(128, 128, 128, 250),     model = "models/synergyroleplay/rcdeltasquad/rcdeltasev/rcdeltasev.mdl",     description = [[Delta Cog.]],     weapons = {"bf2017_dc15s", "tfa_swch_dc17m_br", "bf2017_dc15s", "tfa_sw_repshot"}, -- You may wanna find a pickpocket swep and add it here.     command = "Delta_Sev",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Delta",     PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_501st = DarkRP.createJob("501st Trooper", {     color = Color(0, 0, 249, 255),     model = "models/reizer_cgi_p2/501_d3/501_d3.mdl",     description = [[501st Cog.]],     weapons = {"bf2017_dc15s", "weapon_tfa_dc15a501"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_501st = DarkRP.createJob("501st Officer", {     color = Color(0, 0, 249, 255),     model = "models/reizer_cgi_p2/501_col/501_col.mdl",     description = [[501st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_501st = DarkRP.createJob("501st Medic", {     color = Color(0, 0, 249, 255),     model = "models/reizer_cgi_p2/501_med/501_med.mdl",     description = [[501st Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_501st = DarkRP.createJob("501st Heavy", {     color = Color(0, 0, 249, 255),     model = "models/reizer_cgi_p2/501_d2/501_d2.mdl",     description = [[501st Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_501st = DarkRP.createJob("501st Recon", {     color = Color(0, 0, 249, 255),     model = "models/reizer_cgi_p2/501_assault/501_assault.mdl",     description = [[501st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_501st = DarkRP.createJob("501st Captain", {     color = Color(0, 0, 250, 255),     model = "models/reizer_cgi_p2/501_rex/501_rex.mdl",     description = [[501st Captian Rex.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Captian",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(900)ply:SetArmor(100) end, }) TEAM_501st = DarkRP.createJob("501st Commander", {     color = Color(0, 0, 250, 255),     model = "models/reizer_cgi_p2/501_cpt/501_cpt.mdl",     description = [[501st Commander Appo.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "501st_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "501st", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_41st = DarkRP.createJob("41st Commander", {     color = Color(0, 153, 0, 250),     model = "models/doublehexgaming/dhg41stbanzai/dhg41stbanzai.mdl",     description = [[41st Commander Gree.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "tfa_sw_repshot", "tfa_752_dlt19"}, -- You may wanna find a pickpocket swep and add it here.     command = "41st_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "41st", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_41st = DarkRP.createJob("41st Recon", {     color = Color(0, 153, 0, 250),     model = "models/reizer_cgi_p2/41_d1/41_d1.mdl",     description = [[41st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "41st_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "41st", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_41st = DarkRP.createJob("41st Trooper", {     color = Color(0, 153, 0, 250),     model = "models/reizer_cgi_p2/41_trp/41_trp.mdl",     description = [[41st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repshot", "tfa_752_dlt19"}, -- You may wanna find a pickpocket swep and add it here.     command = "41st_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "41st",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_41st = DarkRP.createJob("41st Medic", {     color = Color(0, 153, 0, 250),     model = "models/reizer_cgi_p2/41_med/41_med.mdl",     description = [[41st Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "41st_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "41st",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_41st = DarkRP.createJob("41st Officer", {     color = Color(0, 153, 0, 250),     model = "models/doublehexgaming/dhg41stofficer/dhg41stofficer.mdl",     description = [[41st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "tfa_sw_repshot"}, -- You may wanna find a pickpocket swep and add it here.     command = "41st_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "41st",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_GM = DarkRP.createJob("GM Officer", {     color = Color(102, 0, 102, 250),     model = "models/reizer_cgi_p2/21_lt/21_lt.mdl",     description = [[GM Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "GM_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "GM",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_GM = DarkRP.createJob("GM Medic", {     color = Color(102, 0, 102, 250),     model = "models/reizer_cgi_p2/21_med/21_med.mdl",     description = [[GM Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "GM_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "GM", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_GM = DarkRP.createJob("GM Heavy", {     color = Color(102, 0, 102, 250),     model = "models/reizer_cgi_p2/21_d3/21_d3.mdl",     description = [[GM Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "GM_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "GM", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_GM = DarkRP.createJob("GM Recon", {     color = Color(102, 0, 102, 250),     model = "models/reizer_cgi_p2/21_assault/21_assault.mdl",     description = [[GM Cog.]],     weapons = {"weapon_camo", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "GM_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "GM", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_GM = DarkRP.createJob("GM Commander", {     color = Color(102, 0, 102, 250),     model = "models/reizer_cgi_p2/21_bacara/21_bacara.mdl",     description = [[GM Commander Appo.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "GM_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "GM", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_ARC = DarkRP.createJob("ARC Trooper", {     color = Color(204, 204, 255, 255),     model = "models/player/cgirancorhavoc/cgirancorhavoc.mdl",     description = [[ARC Cog.]],     weapons = {"bf2017_dc15s", "weapon_jetpack"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARC_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARC",     PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARC = DarkRP.createJob("ARC Officer", {     color = Color(204, 204, 255, 255),     model = "models/player/cgirancorhammer/cgirancorhammer.mdl",     description = [[ARC Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "weapon_jetpack"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARC_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARC",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARC = DarkRP.createJob("NULL ARC Trooper", {     color = Color(204, 204, 255, 255),     model = "models/player/cginullordo/cginullordo.mdl",     description = [[ARC Cog, Starts at SGT rank.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "weapon_jetpack", "tfa_sw_repsnip", "tfa_swch_clonelauncher_3", "tfa_kotor_repeaten_2"}, -- You may wanna find a pickpocket swep and add it here.     command = "NULL_ARC_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARC",     PlayerLoadout = function(ply) ply:SetHealth(1000)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_Lore = DarkRP.createJob("Jango Fett", {     color = Color(65, 105, 225, 255),     model = "models/nate159/swbf/hero/hero_gunslinger_jangofett.mdl",     description = [[Skilled Gun For Hire.]],     weapons = {"bf2017_dc15s", "tfa_kotor_repeaten_2", "weapon_jetpack", "flamethrower_basic", "tfa_sw_westardual"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jango_Fett",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore",     PlayerLoadout = function(ply) ply:SetHealth(1000)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARC = DarkRP.createJob("ARC Commander", {     color = Color(204, 204, 255, 255),     model = "models/player/cgirancorblitz/cgirancorblitz.mdl",     description = [[ARC Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "weapon_jetpack"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARC_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARC",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_ARC = DarkRP.createJob("ARC Captian", {     color = Color(204, 204, 255, 255),     model = "models/player/cgirancorcolt/cgirancorcolt.mdl",     description = [[ARC Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual", "weapon_jetpack"}, -- You may wanna find a pickpocket swep and add it here.     command = "ARC_Captian",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "ARC", PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(900)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Trooper", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_trp/212_trp.mdl",     description = [[212th Cog.]],     weapons = {"bf2017_dc15s", "weapon_tfa_dc15a212"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Officer", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_lt/212_lt.mdl",     description = [[212th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Medic", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_med/212_med.mdl",     description = [[212th Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Heavy", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_d1/212_d1.mdl",     description = [[212th Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Recon", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_assault/212_assault.mdl",     description = [[212th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_212th = DarkRP.createJob("212th Commander", {     color = Color(250, 128, 0, 255),     model = "models/reizer_cgi_p2/212_cody/212_cody.mdl",     description = [[212th Commander Cody.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "212th_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "212th", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Trooper", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_d3/327_d3.mdl",     description = [[327th Cog.]],     weapons = {"bf2017_dc15s", "weapon_tfa_dc15a327"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Pilot", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_pilot/327_pilot.mdl",     description = [[327th Cog.]],     weapons = {"bf2017_dc15s", "repair_tool"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Pilot",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Juggernaut", {     color = Color(250, 250, 0, 255),     model = "models/tfa/comm/gg/pm_sw_super_trooper.mdl",     description = [[327th Cog.]],     weapons = {"bf2017_dc15s", "weapon_tfa_dc15a327", "tfa_sw_repshot", "tfa_swch_clonelauncher_2", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Juggernaut",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(1000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Officer", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_trp/327_trp.mdl",     description = [[327st Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_327th = DarkRP.createJob("327th Medic", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_med/327_med.mdl",     description = [[327th Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Recon", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_d1/327_d1.mdl",     description = [[327th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_327th = DarkRP.createJob("327th Commander", {     color = Color(250, 250, 0, 255),     model = "models/reizer_cgi_p2/327_bly/327_bly.mdl",     description = [[327th Commander Bly.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "327th_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "327th", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_187th = DarkRP.createJob("187th Commander", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_sniper/187th_sniper.mdl",     description = [[187th Commander.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_187th = DarkRP.createJob("187th Officer", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_lt/187th_lt.mdl",     description = [[187th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_187th = DarkRP.createJob("187th Medic", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_medic/187th_medic.mdl",     description = [[187th Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_187th = DarkRP.createJob("187th Heavy", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_sgt/187th_sgt.mdl",     description = [[187th Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_187th = DarkRP.createJob("187th Recon", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_xo/187th_xo.mdl",     description = [[187th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_187th = DarkRP.createJob("187th Trooper", {     color = Color(76, 0, 153, 250),     model = "models/joshbotts/187th_trp/187th_trp.mdl",     description = [[187th Cog.]],     weapons = {"bf2017_dc15s", "weapon_tfa_dc15a187"}, -- You may wanna find a pickpocket swep and add it here.     command = "187th_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "187th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Shock = DarkRP.createJob("Shock Trooper", {     color = Color(250, 0, 0, 250),     model = "models/reizer_cgi_p2/guard_trp/guard_trp.mdl",     description = [[shock Cog.]],     weapons = {"bf2017_dc15s", "stunstick", "weapon_leash_elastic", "arrest_stick", "weapon_tfa_dc15acg"}, -- You may wanna find a pickpocket swep and add it here.     command = "Shock_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Shock", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Shock = DarkRP.createJob("Shock Riot", {     color = Color(250, 0, 0, 250),     model = "models/reizer_cgi_p2/guard_d3/guard_d3.mdl",     description = [[shock Cog.]],     weapons = {"bf2017_dc15s", "stunstick", "weapon_leash_elastic", "arrest_stick", "weapon_tfa_dc15acg", "riot_shield"}, -- You may wanna find a pickpocket swep and add it here.     command = "Shock_Riot",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Shock", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Shock = DarkRP.createJob("Shock Officer", {     color = Color(250, 0, 0, 250),     model = "models/reizer_cgi_p2/guard_col/guard_col.mdl",     description = [[shock Cog.]],     weapons = {"bf2017_dc15s", "stunstick", "weapon_leash_elastic", "arrest_stick"}, -- You may wanna find a pickpocket swep and add it here.     command = "Shock_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Shock", PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Shock = DarkRP.createJob("Shock Commander F", {     color = Color(250, 0, 0, 250),     model = "models/reizer_cgi_p2/guard_fox/guard_fox.mdl",     description = [[shock Commander Fox.]],     weapons = {"bf2017_dc15s", "stunstick", "weapon_leash_elastic",  "tfa_sw_dc17dual", "arrest_stick"}, -- You may wanna find a pickpocket swep and add it here.     command = "Shock_Commander_F",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Shock", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Shock = DarkRP.createJob("Shock Commander T", {     color = Color(250, 0, 0, 250),     model = "models/reizer_cgi_p2/guard_thorn/guard_thorn.mdl",     description = [[shock Commander Thorn.]],     weapons = {"bf2017_dc15s",  "tfa_sw_dc17dual", "stunstick", "weapon_leash_elastic", "arrest_stick"}, -- You may wanna find a pickpocket swep and add it here.     command = "Shock_Commander_T",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Shock", PlayerLoadout = function(ply) ply:SetHealth(900)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_104th = DarkRP.createJob("104th Commander", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_wolf/104_wolf.mdl",     description = [[104th Commander Wolffe.]],     weapons = {"bf2017_dc15s",  "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Commander",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th", PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(900)ply:SetArmor(100) end, }) TEAM_104th = DarkRP.createJob("104th Officer", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_lt/104_lt.mdl",     description = [[104th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_dc17dual"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th",     PlayerLoadout = function(ply) ply:SetHealth(600)ply:SetMaxHealth(300)ply:SetArmor(100)     end, }) TEAM_104th = DarkRP.createJob("104th Medic", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_med/104_med.mdl",     description = [[104th Cog.]],     weapons = {"bf2017_dc15s", "weapon_bactainjector", "weapon_defibrillator", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_104th = DarkRP.createJob("104th Heavy", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_d5/104_d5.mdl",     description = [[104th Cog.]],     weapons = {"bf2017_dc15s", "chaingun_servius"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_104th = DarkRP.createJob("104th Recon", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_assault/104_assault.mdl",     description = [[104th Cog.]],     weapons = {"bf2017_dc15s", "tfa_sw_repsnip", "tfa_swch_dc17"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Recon",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_104th = DarkRP.createJob("104th Trooper", {     color = Color(128, 128, 128, 250),     model = "models/reizer_cgi_p2/104_trp/104_trp.mdl",     description = [[104th Cog.]],     weapons = {"bf2017_dc15s"}, -- You may wanna find a pickpocket swep and add it here.     command = "104th_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "104th", PlayerLoadout = function(ply) ply:SetHealth(300)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Jedi = DarkRP.createJob("Jedi Padwan", {     color = Color(135, 250, 250, 250),     model = { "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl", "models/gonzo/jedihoodmask/jedihoodmask.mdl", "models/gonzo/battlelordsskins/green/greenbattlelord1.mdl", "models/gonzo/battlelordsskins/white/whitebattlelord1.mdl" },     description = [[Jedi Order Cog.]],     weapons = {"weapon_lightsaber_phalanx_heavy"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Padwan",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Jedi", PlayerLoadout = function(ply) ply:SetHealth(1500)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Jedi = DarkRP.createJob("Jedi Sentinel", {     color = Color(135, 250, 250, 250),     model = "models/player/light_revan.mdl",     description = [[Jedi Cog with dual bladed lightsaber.]],     weapons = {"weapon_lightsaber_phalanx_balanced"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Sentinel",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Jedi", PlayerLoadout = function(ply) ply:SetHealth(3000)ply:SetMaxHealth(301)ply:SetArmor(100) end, }) TEAM_Jedi = DarkRP.createJob("Jedi Guardian", {     color = Color(135, 250, 250, 250),     model = "models/gonzo/forcewarden/remus/remus.mdl",     description = [[Jedi Cog You wield 2 lightsabers.]],     weapons = {"weapon_lightsaber_phalanx_balanced"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Guardian",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Jedi", PlayerLoadout = function(ply) ply:SetHealth(3000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Jedi = DarkRP.createJob("Jedi Knight", {     color = Color(135, 250, 250, 250),     model = { "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl", "models/gonzo/jedihoodmask/jedihoodmask.mdl", "models/gonzo/battlelordsskins/green/greenbattlelord1.mdl", "models/gonzo/battlelordsskins/white/whitebattlelord1.mdl" },     description = [[Jedi Order Cog.]],     weapons = {"weapon_lightsaber_judge_heavy"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Knight",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Jedi", PlayerLoadout = function(ply) ply:SetHealth(3000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Jedi = DarkRP.createJob("Jedi Master", {     color = Color(135, 250, 250, 250),     model = { "models/grealms/characters/jedibattlelord/jedibattlelord_07.mdl", "models/grealms/characters/jedibattlelord/jedibattlelord_01.mdl", "models/gonzo/jedihoodmask/jedihoodmask.mdl", "models/gonzo/battlelordsskins/green/greenbattlelord1.mdl", "models/gonzo/battlelordsskins/white/whitebattlelord1.mdl" },     description = [[Jedi Order Cog.]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Master",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Jedi", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Lore = DarkRP.createJob("Jedi Master Obi Wan Kenobi", {     color = Color(135, 250, 250, 250),     model = {"models/player/generalkenobi/cgikenobi.mdl"},     description = [[obi wan kenobi 212th leader.]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Master_Obi_Wan_Kenobi",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Lore = DarkRP.createJob("Jedi Master Kit Fisto", {     color = Color(0, 128, 0, 255),     model = {"models/tfa/comm/gg/pm_sw_fisto.mdl"},     description = [[Kit Fisto CT leader.]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Master_Kit_Fisto",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Lore = DarkRP.createJob("Grand Master Yoda", {     color = Color(0, 128, 0, 255),     model = {"models/tfa/comm/gg/pm_sw_yodanojig.mdl"},     description = [[Jedi Leader]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"},     command = "Grand_Master_Yoda",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     candemote = false,     category = "Lore",     PlayerSpawn = function(ply)         ply:SetMaxHealth(9000)         ply:SetHealth(300)         ply:SetArmor(100)     end }) TEAM_Lore = DarkRP.createJob("Jedi Master Plo Koon", {     color = Color(135, 250, 250, 250),     model = {"models/player/plokoon/plokoon.mdl"},     description = [[Plo Koon 104th leader.]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Master_Plo_Koon",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Lore = DarkRP.createJob("Jedi Master Mace Windu", {     color = Color(135, 250, 250, 250),     model = {"models/player/mace/mace.mdl"},     description = [[Mace Windu 187th leader.]],     weapons = {"weapon_lightsaber_phalanx_balanced", "weapon_shaman"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Master_Mace_Windu",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_lore = DarkRP.createJob("Jedi Knight Anakin Skywalker", {     color = Color(135, 250, 250, 250),             model = {         "models/tfa/comm/gg/pm_sw_anakin_v2.mdl",         "models/tfa/comm/pm_sw_anakin_skywalker.mdl",     },     description = [[Anakin Skywalker leader to the 501st.]],     weapons = {"weapon_lightsaber_judge_heavy"}, -- You may wanna find a pickpocket swep and add it here.     command = "Jedi_Knight_Anakin_Skywalker",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(3000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Lore = DarkRP.createJob("Jedi Padwan Ahsoka Tano", {     color = Color(135, 250, 250, 250),     model = "models/tfa/comm/gg/pm_sw_ahsoka_v1.mdl",     description = [[Ahsoka Tano Help lead the 501st.]],     weapons = {"weapon_lightsaber_judge_heavy"}, -- You may wanna find a pickpocket swep and add it here.     command = "weapon_lightsaber_phalanx_heavy",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Lore", PlayerLoadout = function(ply) ply:SetHealth(1500)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_Fleet = DarkRP.createJob("Fleet", {     color = Color(0, 0, 0, 250),         model = {         "models/player/hydro/clone_officer/clone_officer_playermodel.mdl",         "models/gonzo/navyvariants/black/black.mdl",         "models/gonzo/republicnavyadmiral/republicnavyadmiral.mdl",     },     description = [[Fleet Cog.]],     weapons = {"tfa_752_westar34", "weapon_hexshield", "weapon_bactanade"}, -- You may wanna find a pickpocket swep and add it here.     command = "Fleet",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = false,     category = "Fleet", PlayerLoadout = function(ply) ply:SetHealth(6000)ply:SetMaxHealth(300)ply:SetArmor(100) end, }) TEAM_CA = DarkRP.createJob("Clone Assassin Commander", {     color = Color(255, 61, 0, 255),     model = {"models/player/gingers_assassin/gingers_assassin_commander.mdl"},     description = [[Commander of the clone assassins]],     weapons = {"tfa_sw_dc17dual", "tfa_swch_dc17m_br", "chaingun_servius", "tfa_sw_repsnip", "realistic_hook", "weapon_camo", "weapon_cuff_tactical", "bf2017_dc15s"},     command = "CA_Commander",     max = 1,     salary = 25,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Clone Assassins",     PlayerSpawn = function(ply)         ply:SetMaxHealth(1000)         ply:SetHealth(1000)         ply:SetArmor(100)     end }) TEAM_CA = DarkRP.createJob("Clone Assassin Officer", {     color = Color(255, 61, 0, 255),     model = {"models/player/gingers_assassin/gingers_assassin_arf_captain.mdl"},     description = [[A officer for the clone assassins]],     weapons = {"tfa_sw_dc17dual", "tfa_sw_repsnip", "realistic_hook", "weapon_camo", "weapon_cuff_tactical", "bf2017_dc15s"},     command = "Clone_Assassin_Officer",     max = 0,     salary = 25,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Clone Assassins",     PlayerSpawn = function(ply)         ply:SetMaxHealth(650)         ply:SetHealth(650)         ply:SetArmor(100)     end }) TEAM_CA = DarkRP.createJob("Clone Assassin", {     color = Color(255, 61, 0, 255),     model = {"models/player/gingers_assassin/gingers_assassin_arf_intelligence.mdl"},     description = [[A clone assassin]],     weapons = {"weapon_camo", "realistic_hook", "tfa_sw_repsnip", "weapon_tfa_dc15saca", "weapon_cuff_tactical", "bf2017_dc15s"},     command = "Clone_Assassin",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Clone Assassins",     PlayerSpawn = function(ply)         ply:SetMaxHealth(450)         ply:SetHealth(450)         ply:SetArmor(100)     end }) TEAM_CA = DarkRP.createJob("Clone Assassin Heavy", {     color = Color(255, 61, 0, 255),     model = {"models/player/gingers_assassin/gingers_imperial_scout_trooper.mdl"},     description = [[Clone Assassin Heavy]],     weapons = {"realistic_hook", "chaingun_servius", "weapon_tfa_dc15saca", "weapon_tfa_dc15aca", "bf2017_dc15s"},     command = "CA_Heavy",     max = 0,     salary = 25,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Clone Assassins",     PlayerSpawn = function(ply)         ply:SetMaxHealth(450)         ply:SetHealth(450)         ply:SetArmor(100)     end }) TEAM_CA = DarkRP.createJob("Clone Assassins Medic", {     color = Color(255, 122, 0, 255),     model = {"models/player/gingers_assassin/gingers_assassin_arf_intelligence.mdl"},     description = [[Medic For The Clone Assassins]],     weapons = {"weapon_bactainjector", "weapon_bactanade", "bf2017_dc15s", "weapon_cuff_tactical"},     command = "CA_Medic",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Clone Assassins",     PlayerSpawn = function(ply)         ply:SetMaxHealth(300)         ply:SetHealth(300)         ply:SetArmor(100)     end }) TEAM_Omega = DarkRP.createJob("Niner", {     color = Color(0, 0, 0, 255),     model = {"models/synergyroleplay/rcomegasquad/rcomeganiner/rcomeganiner.mdl"},     description = [[Omega Squad RC Niner]],     weapons = {"bf2017_dc15s", "tfa_swch_dc17m_br", "tfa_swch_dc17m_at"},     command = "Niner",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Omega Squad",     PlayerSpawn = function(ply)         ply:SetMaxHealth(1000)         ply:SetHealth(1000)         ply:SetArmor(100)     end }) TEAM_Omega = DarkRP.createJob("Darman", {     color = Color(0, 0, 0, 255),     model = {"models/synergyroleplay/rcomegasquad/rcomegadarman/rcomegadarman.mdl"},     description = [[Omega Squad RC Darman]],     weapons = {"bf2017_dc15s", "tfa_swch_dc17m_at", "tfa_sw_repshot", "weapon_swrc_det"},     command = "Darman",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Omega Squad",     PlayerSpawn = function(ply)         ply:SetMaxHealth(1000)         ply:SetHealth(1000)         ply:SetArmor(100)     end }) TEAM_Omega = DarkRP.createJob("Fi", {     color = Color(0, 0, 0, 255),     model = {"models/synergyroleplay/rcomegasquad/rcomegafi/rcomegafi.mdl"},     description = [[Omega Squad RC Fi]],     weapons = {"bf2017_dc15s", "weapon_752_dc17m_br", "weapon_camo", "gmod_camera", "weapon_bactanade", "weapon_bactainjector", "Weapon_defibrillator"},     command = "Fi",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Omega Squad",     PlayerSpawn = function(ply)         ply:SetMaxHealth(1000)         ply:SetHealth(1000)         ply:SetArmor(100)     end }) TEAM_Omega = DarkRP.createJob("Atin", {     color = Color(0, 0, 0, 255),     model = {"models/synergyroleplay/rcomegasquad/rcomegaatin/rcomegaatin.mdl"},     description = [[Omega Squad RC Atin]],     weapons = {"bf2017_dc15s", "repair_tool", "tfa_swch_dc17m_br"},     command = "Atin",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "Omega Squad",     PlayerSpawn = function(ply)         ply:SetMaxHealth(1000)         ply:SetHealth(1000)         ply:SetArmor(100)     end }) TEAM_EOD = DarkRP.createJob("EOD Commander", {     color = Color(255, 122, 0, 255),     model = {"models/reizer_cgi_p2/eod_cpt/eod_cpt.mdl"},     description = [[Commander of the EOD]],     weapons = {"weapon_physgun", "gmod_tool", "weapon_hexshield", "tfa_sw_repshot", "bf2017_dc15s"},     command = "EOD_COMMANDER",     max = 1,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "EOD",     PlayerSpawn = function(ply)         ply:SetMaxHealth(900)         ply:SetHealth(900)         ply:SetArmor(100)     end }) TEAM_EOD = DarkRP.createJob("EOD Officer", {     color = Color(255, 122, 0, 255),     model = {"models/reizer_cgi_p2/eod_lt/eod_lt.mdl"},     description = [[Officer for EOD]],     weapons = {"weapon_physgun", "gmod_tool", "tfa_sw_repshot", "weapon_hexshield", "bf2017_dc15s"},     command = "EOD_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "EOD",     PlayerSpawn = function(ply)         ply:SetMaxHealth(600)         ply:SetHealth(600)         ply:SetArmor(100)     end }) TEAM_EOD = DarkRP.createJob("EOD Trooper", {     color = Color(255, 122, 0, 255),     model = {"models/reizer_cgi_p2/eod_sgt/eod_sgt.mdl"},     description = [[EOD Trooper]],     weapons = {"tfa_sw_repshot", "weapon_physgun", "gmod_tool", "weapon_hexshield", "bf2017_dc15s"},     command = "EOD_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "EOD",     PlayerSpawn = function(ply)         ply:SetMaxHealth(300)         ply:SetHealth(300)         ply:SetArmor(100)     end }) TEAM_93rd = DarkRP.createJob("93rd Commander", {     color = Color(135, 250, 250, 250),     model = {"models/player/pilotv2/commander/pilotv2commander.mdl"},     description = [[Commander of the 93rd Battalion]],     weapons = {"tfa_sw_dual_de10", "repair_tool"},     command = "93rd_Commander",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "93rd",     PlayerSpawn = function(ply)         ply:SetMaxHealth(900)         ply:SetHealth(900)         ply:SetArmor(100)     end }) TEAM_93rd = DarkRP.createJob("93rd Officer", {     color = Color(135, 250, 250, 250),     model = {"models/player/pilotv2/officer/pilotv2officer.mdl"},     description = [[Officer of the 93rd Battalion]],     weapons = {"tfa_swch_de10", "repair_tool"},     command = "93rd_Officer",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "93rd",     PlayerSpawn = function(ply)         ply:SetMaxHealth(600)         ply:SetHealth(600)         ply:SetArmor(100)     end }) TEAM_93rd = DarkRP.createJob("93rd Trooper", {     color = Color(135, 250, 250, 250),     model = {"models/player/pilotv2/senior/pilotv2seniortrooper.mdl"},     description = [[Trooper of the 93rd Battalion]],     weapons = {"tfa_dc17chrome", "repair_tool"},     command = "93rd_Trooper",     max = 0,     salary = 65,     admin = 0,     vote = false,     hasLicense = true,     candemote = false,     category = "93rd",     PlayerSpawn = function(ply)         ply:SetMaxHealth(300)         ply:SetHealth(300)         ply:SetArmor(100)     end }) --[[--------------------------------------------------------------------------- Define which team joining players spawn into and what team you change to if demoted ---------------------------------------------------------------------------]] GAMEMODE.DefaultTeam = TEAM_CITIZEN --[[--------------------------------------------------------------------------- Define which teams belong to civil protection Civil protection can set warrants, make people wanted and do some other police related things ---------------------------------------------------------------------------]] GAMEMODE.CivilProtection = {     [TEAM_POLICE] = true,     [TEAM_CHIEF] = true,     [TEAM_MAYOR] = true, } --[[--------------------------------------------------------------------------- Jobs that are hitmen (enables the hitman menu) ---------------------------------------------------------------------------]] DarkRP.addHitmanTeam(TEAM_MOB)
Because you're naming them all the same thing. Please do not run a server.
Oh my god thats way too many Jobs what is this
It was working earlier. and Im not running it I'm just one of the devs.
star wars rp still is no excuse to have THIS many jobs jesus christ
Sorry, you need to Log In to post a reply to this thread.