--[[--------------------------------------------------------------------------- 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 jobs under the following line: ---------------------------------------------------------------------------]] TEAM_HG = DarkRP.createJob("Heavy Gun Dealer", { color = Color(80, 45, 0, 255), model = "models/player/odessa.mdl", description = [[Your job is to sell bigger guns to the people.]], weapons = {"m9k_m92beretta", "weaponchecker"}, command = "heavygundealer", max = 5, salary = 80, admin = 0, vote = false, hasLicense = true, }) TEAM_GUARD = DarkRP.createJob("Guard", { color = Color(0,200,50,255), model = "models/player/guard_pack/guard_02.mdl", description = [[People pay you an amount of money to guard them on the street, or at home.]], weapons = {"m9k_m92beretta"}, command = "guard", max = 2, salary = 85, admin = 0, vote = false, hasLicense = true, }) TEAM_LG = DarkRP.createJob("Light Gun Dealer", { color = Color(80, 45, 0, 255), model = "models/player/odessa.mdl", description = [[Your job is to sell bigger guns to the people.]], weapons = {"m9k_m92beretta", "weaponchecker"}, command = "lightgundealer", max = 5, salary = 80, admin = 0, vote = false, hasLicense = true, }) TEAM_CPCHIEF = DarkRP.createJob("Chief Of Police", { color = Color(20, 20, 255, 255), model = "models/player/combine_soldier_prisonguard.mdl", description = [[The Chief is the leader of the Civil Protection unit. Coordinate the police force to enforce law in the city. Hit a player with arrest baton to put them in jail. Bash a player with a stunstick and they may learn to obey the law. The Battering Ram can break down the door of a criminal, with a warrant for his/her arrest. Type /wanted to alert the public to the presence of a criminal. Type /jailpos to set the Jail Position]], weapons = {"arrest_stick", "unarrest_stick", "m9k_1897winchester", "weapon_cuff_police", "stunstick", "door_ram", "weaponchecker"}, command = "civilprotectionchief", max = 1, salary = 65, admin = 0, vote = true, hasLicense = true, chief = true, category = "Police", }) TEAM_CPPOLICE = DarkRP.createJob("Police Officer", { color = Color(25, 25, 170, 255), model = {"models/player/police.mdl", "models/player/police_fem.mdl"}, description = [[The protector of every citizen that lives in the city. You have the power to arrest criminals and protect innocents. Hit a player with your arrest baton to put them in jail. Bash a player with a stunstick and they may learn to obey the law. The Battering Ram can break down the door of a criminal, with a warrant for their arrest. The Battering Ram can also unfreeze frozen props (if enabled). Type /wanted to alert the public to the presence of a criminal.]], weapons = {"arrest_stick", "unarrest_stick", "m9k_ragingbull", "stunstick", "door_ram", "weaponchecker", "weapon_cuff_police"}, command = "civilprotection", max = 5, salary = GAMEMODE.Config.normalsalary * 1.45, admin = 0, vote = true, hasLicense = true, category = "Police", }) TEAM_COMB = DarkRP.createJob("Community Builder", { color = Color(47, 79, 79, 255), model = {"models/player/hostage/hostage_04.mdl"}, description = [[I have the right to block off any tunnels and build a community.]], weapons = {"weapon_arc_atmcard", "laserpointer", "weaponchecker"}, command = "communitybuilder", max = 2, salary = GAMEMODE.Config.normalsalary, admin = 0, vote = false, hasLicense = true, category = "Citizens" }) TEAM_POLICEFBI = AddExtraTeam("FBI", { color = Color(50, 90, 255, 255), model = "models/player/riot.mdl", description = [[ [Gold Donator] As a F.B.I Special Agent its your job to find Terrorists and kill or arrest them..... SALARY:120]], weapons = {"hl2_combo_fists", "weapon_mad_m4", "weapon_mad_p228", "weapon_cuff_police", "weapon_stungun", "weapon_cuff_police", "arrest_stick", "unarrest_stick"}, command = "fbi", max = 2, salary = 120, admin = 0, vote = false, hasLicense = false, category = "F.B.I" }) TEAM_NINJgA = AddExtraTeam("Ninja", { color = Color(255, 93, 0, 255), model = "models/player/lordvipes/mk9_cyrax/cyrax.mdl", description = [[As a ninja you can jump from building to building with you grapling hook. But be careful because grapling hook is not leagel. SALARY:90]], weapons = {"hl2_combo_fists", "grapplehook", "weapon_mad_knife", "climb_swep2", "m9k_damascus", "weapon_kidnapper", "lockpick"}, command = "ninjsa", max = 2, salary = 65, admin = 0, vote = false, hasLicense = false, category = "Citizens" }) TEAM_DRUGCARTEL = AddExtraTeam("Mexican Cartel Mobster", { color = Color(100, 100, 100, 255), model = "models/player/Group03/male_03.mdl", description = [[You work for the Mexican Drug Cartel, You take orders from the Mexican Drug Cartel boss only. SALARY:45]], weapons = {"hl2_combo_fists"}, command = "mexicandrugcartelmobster", max = 5, salary = 45, admin = 0, vote = false, hasLicense = false, category = "Cartel" }) TEAM_DRUGCARTELBOSS = AddExtraTeam("Mexican Drug Cartel Boss", { color = Color(10, 10, 10, 255), model = "models/player/monk.mdl", description = [[As the mexican drug boss you have the athority to tell the mexican drug cartel what to do. But be careful because police informent will be looking out for you SALARY:50]], weapons = {"lockpick", "unarrest_stick", "hl2_combo_fists"}, command = "mexicandrugcartelboss", max = 1, salary = 50, admin = 0, vote = false, hasLicense = false, category = "Cartel" }) TEAM_PTHIEF = AddExtraTeam("Pro Thief", { color = Color(111, 199, 175, 255), model = "models/player/arctic.mdl", description = [[Your are a pro thief, Brake into peoples homes and places of business to piss them off! Take what you can and run! You may not shoot people in there own only in robbery. homes or places of business. only in robbery. to shoot you!. SALARY:60]], weapons = {"keypad_cracker", "prolockpick", "hl2_combo_fists", "m9k_deagle"}, command = "prothief", max = 3, salary = 60, admin = 0, vote = false, hasLicense = false, category = "Criminals" }) TEAM_LAWYER = AddExtraTeam("Lawyer", { color = Color(100, 150, 200, 255), model = "models/player/hostage/hostage_04.mdl", description = [[As a lawyer you are responsible for fighting on your clints behalf this includes bailing him out of jail and or pvp confrontation. SALARY:60]], weapons = {"unarrest_stick", "hl2_combo_fists"}, command = "lawyer", max = 3, salary = 60, admin = 0, vote = true, hasLicense = false, category = "Citizens" }) TEAM_MD = DarkRP.createJob("Mayors Daughter", { color = Color(255,100,100,255), model = "models/player/alyx.mdl", description = [[You are the mayors daughter, walk around with your dad just chill around. But be careful, you never know when somebody is waiting to kidnap you!]], weapons = {"weapon_stungun"}, command = "mayorsdaughter", max = 1, salary = 80, admin = 0, vote = false, hasLicense = false, category = "Police" }) TEAM_HITMAN = DarkRP.createJob("Hitman", { color = Color(0, 0, 0, 255), model = "models/player/edward_kenway.mdl", description = [[People hire you to take out other people, this job require you to be completely focussed. A single breath can make you loose a shot.]], weapons = {"m9k_m24"}, command = "hitman", max = 2, salary = 65, admin = 0, vote = false, hasLicense = false, category = "Criminals", }) TEAM_THIEF = DarkRP.createJob("Thief", { color = Color(0, 0, 0, 255), model = "models/redninja/guard_02.mdl", description = [[You are a thief, rob people, lockpick their house and steal their plants]], weapons = {"lockpick"}, -- You may wanna find a pickpocket swep and add it here. command = "thief", max = 2, salary = 65, admin = 0, vote = false, hasLicense = false, category = "Criminals", }) TEAM_DRUG = DarkRP.createJob("Drug Dealer", { color = Color(51, 204, 255, 255), model = "models/player/Kleiner.mdl", description = [[You deal drugs to those in need. Be careful, may get arrested if caught in the act!]], weapons = {}, command = "drugdealer", max = 2, salary = 65, admin = 0, vote = false, hasLicense = false, category = "Criminal", }) TEAM_MAYOR4 = DarkRP.createJob("Secert Service", { color = Color(911, 78, 99, 3255), model = "models/player/adam_jensen.mdl", description = [[The Prime Minister is in the city keep him safe . If you are the Prime Minister BodyGuards you may create and accept warrants also unlike the mayor you run the country. Type /wanted to warrant a player. Type /jailpos to set the Jail Position. Type /lockdown initiate a lockdown of the city. Everyone must be inside during a lockdown. The cops patrol the area. /unlockdown to end a lockdown]], weapons = {"arrest_stick", "unarrest_stick", "m9k_glock", "stunstick", "door_ram", "weaponchecker", "m9k_mp5", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"}, command = "mayorbodyguard", max = 3, salary = 45, admin = 0, vote = true, hasLicense = false, category = "Police" }) TEAM_HOTELM = AddExtraTeam("Hotel Manager", { color = Color(102, 0, 102, 255), model = "models/player/magnusson.mdl", description = [[You are the manager of the gmod hotel take good care of it, Also you can sell out the rooms to people to make some cash!.]], weapons = {"hl2_combo_fists", "weapon_arc_atmcard"}, command = "hotelmanager", max = 1, salary = 45, admin = 0, vote = false, hasLicense = false, category = "Citizens" }) TEAM_POLICEUP = DarkRP.createJob("Undercover Cop", { color = Color(25, 25, 170, 255), model = {"models/fbi_pack/fbi_03.mdl"}, description = [[ The protector of every citizen that lives in the city. You have the power to arrest criminals and protect innocents. Hit a player with your arrest baton to put them in jail. Bash a player with a stunstick and they may learn to obey the law. The Battering Ram can break down the door of a criminal, with a warrant for their arrest. The Battering Ram can also unfreeze frozen props (if enabled). Type /wanted to alert the public to the presence of a criminal.]], weapons = {"arrest_stick", "unarrest_stick", "m9k_glock", "stunstick", "door_ram", "weaponchecker", "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"}, command = "undercoverpolice", max = 6, salary = 45, admin = 0, vote = true, hasLicense = true, category = "Police" }) TEAM_ADMIN = AddExtraTeam("Admin On Duty ", { color = Color(50,0,150,255, 255), VIPOnly = true, model = { "models/player/combine_super_soldier.mdl"}, description = [[the Super Admin may help admin the server if he is needed]], weapons = { "hl2_combo_fists", "weapon_cuff_police", "unarrest_stick", "arrest_stick", "vc_repair", "weapon_medkit", "weaponchecker", "weapon_keypadchecker" }, command = "admin", max = 5, salary = 50, admin = 0, vote = false, hasLicense = false, category = "Staff" }) TEAM_GUARDSA = DarkRP.createJob("Security Guard", { color = Color(591, 242, 80, 093), model = {"models/player/odessa.mdl"}, description = [[Help out the gun shop or some club or somthink . You have the power to unarrest criminals and protect innocents. Hit a player with your unarrest baton to let the players out of jail. Bash a player with a stunstick and they may learn to obey the law. . ). Type /wanted to alert the public to the presence of a criminal.]], weapons = { "stunstick", "weaponchecker", "hl2_combo_fists", "weapon_arc_atmcard", "weapon_cuff_police", "weapon_stungun"}, command = "securityguard", max = 4, salary = 66, admin = 0, vote = true, hasLicense = true, category = "Citizens" }) TEAM_ADAASDA = DarkRP.createJob("Italian Mafia", { color = Color(255, 153, 0, 255), model = "models/player/gman_high.mdl", description = [[The Mafia Don is the boss of the criminals in the city. With his power he coordinates the gangsters and forms an efficient crime organization. He has the ability to break into houses by using a lockpick. The Mafia Don posesses the ability to unarrest you.]], weapons = { "lockpick", "unarrest_stick", "keypad_cracker", "hl2_combo_fists", "weapon_arc_atmcard" }, command = "italianmafia", max = 8, salary = 25, admin = 0, vote = false, hasLicense = false, category = "Mafia" }) TEAM_GANG2 = DarkRP.createJob("Mafia Memeber", { color = Color(127, 433, 0, 222), model = "models/grandtheftauto5/michael.mdl", description = [[ The lowest person of crime. A Mafia Member works for the Mafia Don who runs the crime family. The Mafia Don sets your agenda and you follow it or you might be punished.]], weapons = { "hl2_combo_fists", "keypad_cracker", "lockpick", "weapon_arc_atmcard" }, command = "russianmafia", max = 6, salary = 25, admin = 0, vote = false, hasLicense = false, category = "Mafia" }) TEAM_MOB2 = DarkRP.createJob("Mafia Leader", { color = Color(127, 433, 0, 222), model = "models/player/guerilla.mdl", description = [[The Mafia Don is the boss of the criminals in the city. With his power he coordinates the gangsters and forms an efficient crime organization. He has the ability to break into houses by using a lockpick. The Mafia Don posesses the ability to unarrest you.]], weapons = { "lockpick", "unarrest_stick", "keypad_cracker", "hl2_combo_fists", }, command = "russianmafialeader", max = 1, salary = GAMEMODE.Config.normalsalary * 1.34, admin = 0, vote = false, hasLicense = false, category = "Mafia" }) TEAM_Doctor = DarkRP.createJob("Doctor", { color = Color(47, 79, 79, 255), model = "models/player/Kleiner.mdl", description = [[With your medical knowledge you work to restore players to full health. Without a medic, people cannot be healed. Left click with the Medical Kit to heal other players. Right click with the Medical Kit to heal yourself.]], weapons = { "med_kit", "hl2_combo_fists"}, command = "doctor", max = 1, salary = 50, admin = 0, vote = false, hasLicense = false, category = "Citizens" }) TEAM_POLICESN = DarkRP.createJob("Swat Sniper", { color = Color(25, 25, 170, 255), model = {"models/player/swat.mdl"}, description = [[The protector of every citizen that lives in the city. You have the power to arrest criminals and protect innocents. Hit a player with your arrest baton to put them in jail. Bash a player with a stunstick and they may learn to obey the law. The Battering Ram can break down the door of a criminal, with a warrant for their arrest. The Battering Ram can also unfreeze frozen props (if enabled). Type /wanted to alert the public to the presence of a criminal.]], weapons = {arrest_stick, unarrest_stick, m9k_m98b, stunstick, door_ram, weaponchecker, weapon_arc_atmcard, m9k_svt40, weapon_cuff_police, weapon_stungun}, command = "swatsniper", max = 2, salary = 85, admin = 0, vote = true, hasLicense = true, category = "S.W.A.T" }) --[[--------------------------------------------------------------------------- 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)