• Custom DarkRP jobs
    6 replies, posted
[B][I][U]I was bored, so I made some DarkRP jobs. NOTE: THESE ARE ONLY FOR DARKRP 2.5 Also you need Drugzmod, Madcow Weapons, and M9K weapons for them.[/U][/I][/B] If any problems arise using the jobs, message me :wink: HOW TO USE THEM: Copy the code below, then put it in jobs.lua. Any questions? Goto the [URL="http://facepunch.com/showthread.php?t=1331928&p=43119468"]FAQ[/URL] for this post. [CODE]TEAM_CIVI = AddExtraTeam("Civilian", { color = Color(0, 0, 0, 255), model = { "models/player/Group01/Female_01.mdl", "models/player/Group01/Female_02.mdl", "models/player/Group01/Female_03.mdl", "models/player/Group01/Female_04.mdl", "models/player/Group01/Female_06.mdl", "models/player/group01/male_01.mdl", "models/player/Group01/Male_02.mdl", "models/player/Group01/male_03.mdl", "models/player/Group01/Male_04.mdl", "models/player/Group01/Male_05.mdl", "models/player/Group01/Male_06.mdl", "models/player/Group01/Male_07.mdl", "models/player/Group01/Male_08.mdl", "models/player/Group01/Male_09.mdl" }, description = [[The Civilian is the most basic level of society you can hold besides being a hobo. You have no specific role in city life.]], weapons = {"weapon_mad_fists"}, command = "civilian", max = 0, salary = 45, admin = 0, vote = false, hasLicense = false, }) TEAM_SWAT = AddExtraTeam("SWAT", { color = Color(0, 150, 255, 255), model = "models/player/swat.mdl", description = [[This is a special job, protect the city at all costs!]], weapons = {"weapon_mad_fists", "arrest_stick", "unarrest_stick", "m9k_glock", "m9k_remington870", "stunstick", "door_ram", "weaponchecker", "m9k_mp5"}, command = "swat", max = 4, salary = 60, admin = 0, vote = true, hasLicense = true, }) TEAM_DRUG = AddExtraTeam("Drug Dealer", { color = Color(0, 255, 255, 255), model = {"models/player/Phoenix.mdl"}, description = [[You sell drugs to people. Do not be caught by the cops. You M92 Beretta is for protection only, do not RDM.]], weapons = {"weapon_mad_fists", "m9k_m92beretta"}, command = "drug", max = 1, salary = 40, admin = 0, vote = false, hasLicense = false, }) TEAM_ADMIN = AddExtraTeam("Admin", { color = Color(25, 255, 255, 255), model = "models/player/combine_super_soldier.mdl", description = [[Administrator of the server.]], weapons = {"weapon_mad_fists", "weapon_xchewysadmingun"}, command = "admin", max = 8, salary = 1000000, admin = 1, vote = false, hasLicense = true, }) TEAM_HIT = AddExtraTeam("Hitman", { color = Color(433, 555, 255, 255), model = {"models/player/guerilla.mdl"}, description = [[Kill people for money.]], weapons = {"weapon_mad_fists", "m9k_glock"}, command = "hitman", max = 2, salary = 60, admin = 0, vote = true, hasLicense = false, }) TEAM_DEA = AddExtraTeam("Drug Enforcement Agency", { color = Color(33, 23, 255, 255), model = {"models/player/gasmask.mdl"}, description = [[Win in the War on Drugs for the Anti-Drug side. Failiure results in demotion. No pressure.]], weapons = {"weapon_mad_fists", "arrest_stick", "unarrest_stick", "m9k_glock", "m9k_remington870", "stunstick", "door_ram", "weaponchecker", "m9k_mp5"}, command = "drugenforcement", max = 4, salary = 250, admin = 0, vote = true, hasLicense = true, }) TEAM_SWATC = AddExtraTeam("S.W.A.T. Chief", { color = Color(0,150,255,255), model = "models/player/swat.mdl", description = [[This is a special job, protect the city at all costs! Chief of the S.W.A.T. team.]], weapons = {"weapon_mad_fists", "arrest_stick", "unarrest_stick", "m9k_glock", "m9k_remington870", "stunstick", "door_ram", "weaponchecker", "m9k_mp5"}, command = "swat", max = 1, salary = 60, admin = 0, vote = true, hasLicense = true, }) TEAM_SEC = AddExtraTeam("Secretary", { color = Color(0, 50, 50, 255), model = {"models/player/mossman.mdl"}, description = [[The Mayor's helper. Arrange meetings, and stuff.]], weapons = {"weapon_mad_fists"}, command = "secretary", max = 1, salary = 120, admin = 0, vote = true, hasLicense = true, }) TEAM_BLACK = AddExtraTeam("Black Market Dealer", { color = Color(0, 0, 0, 255), model = {"models/player/monk.mdl"}, description = [[Sell banned/illegal weapons to people.]], weapons = {"weapon_mad_fists"}, command = "blackmarket", max = 2, salary = 540, admin = 0, vote = false, hasLicense = false, }) TEAM_LIGHT = AddExtraTeam("Light Weapons Dealer", { color = Color(0, 22, 0, 255), model = {"models/player/monk.mdl"}, description = [[Sell light wieght weapons to people.]], weapons = {"weapon_mad_fists"}, command = "lightweapons", max = 2, salary = 250, admin = 0, vote = false, hasLicense = false, }) TEAM_HEAVY = AddExtraTeam("Heavy Weapons Dealer", { color = Color(22, 0, 22, 255), model = {"models/player/monk.mdl"}, description = [[Sell heavy wieght weapons to people.]], weapons = {"weapon_mad_fists"}, command = "heavyweapons", max = 2, salary = 360, admin = 0, vote = false, hasLicense = false, }) TEAM_SWATS = AddExtraTeam("SWAT Sniper", { color = Color(21, 4, 11, 255), model = "models/player/swat.mdl", description = [[You are a SWAT Sniper, you help out the SWAT team when they're under fire.]], weapons = {"weapon_mad_fists", "arrest_stick", "unarrest_stick", "m9k_glock", "m9k_remington870", "stunstick", "door_ram", "weaponchecker", "m9k_mp5", "m9k_m24"}, command = "swatsniper", max = 2, salary = 520, admin = 0, vote = true, hasLicense = true, }) TEAM_SWATM = AddExtraTeam("SWAT Medic", { color = Color(22, 22, 22, 255), model = "models/player/urban.mdl", description = [[Heal your SWAT members when they're hurt.]], weapons = {"weapon_mad_fists", "arrest_stick", "unarrest_stick", "m9k_glock", "m9k_remington870", "stunstick", "door_ram", "weaponchecker", "m9k_mp5", "med_kit"}, command = "swatmedic", max = 2, salary = 630, admin = 0, vote = true, hasLicense = true, }) TEAM_JGANG = AddExtraTeam("Jackstreet Gang", { color = Color(22, 22, 23, 255), model = { "models/player/Group03/Female_01.mdl", "models/player/Group03/Female_02.mdl", "models/player/Group03/Female_03.mdl", "models/player/Group03/Female_04.mdl", "models/player/Group03/Female_06.mdl", "models/player/group03/male_01.mdl", "models/player/Group03/Male_02.mdl", "models/player/Group03/male_03.mdl", "models/player/Group03/Male_04.mdl", "models/player/Group03/Male_05.mdl", "models/player/Group03/Male_06.mdl", "models/player/Group03/Male_07.mdl", "models/player/Group03/Male_08.mdl", "models/player/Group03/Male_09.mdl"}, description = [[The Jackstreet Gang, the #1 wanted gang in the city. Stay away from the cops for as long as you can.]], weapons = {"weapon_mad_fists"}, command = "jgang", max = 6, salary = 120, admin = 0, vote = false, hasLicense = false, }) TEAM_JMOB = AddExtraTeam("Jackstreet Mobboss", { color = Color(22, 22, 23, 255), model = "models/player/gman_high.mdl", description = [[The leader of the Jackstreet Gang, the #1 wanted gang in the city. Stay away from the cops for as long as you can.]], weapons = {"mad_fists"}, command = "jmob", max = 1, salary = 120, admin = 0, vote = false, hasLicense = false, }) TEAM_FGANG = AddExtraTeam("Fergie Gang", { color = Color(22, 23, 23, 255), model = { "models/player/Group03/Female_01.mdl", "models/player/Group03/Female_02.mdl", "models/player/Group03/Female_03.mdl", "models/player/Group03/Female_04.mdl", "models/player/Group03/Female_06.mdl", "models/player/group03/male_01.mdl", "models/player/Group03/Male_02.mdl", "models/player/Group03/male_03.mdl", "models/player/Grou
These jobs would work with older versions as well :P
This should really go in [URL="http://facepunch.com/forumdisplay.php?f=66"]Gamemode & Addon Releases[/URL], although this is not enough content for a release thread. You should have a description, list, screenshots, your code should be in [code] tags, and overall, this is not enough content for a release. If you're going to make a release of just jobs, you should have at least 20-30 [B]unique[/B] jobs.
[QUOTE=Clockwork Man;43119561]These jobs would work with older versions as well :P[/QUOTE] Yes, but the Hitman coding at the end [CODE]/*--------------------------------------------------------------------------- Jobs that are hitmen (enables the hitman menu) ---------------------------------------------------------------------------*/ DarkRP.addHitmanTeam(TEAM_HIT)[/CODE] is only in 2.5 [editline]8th December 2013[/editline] [QUOTE=code_gs;43119596]This should really go in [URL="http://facepunch.com/forumdisplay.php?f=66"]Gamemode & Addon Releases[/URL], although this is not enough content for a release thread. You should have a description, list, screenshots, your code should be in [code] tags, and overall, this is not enough content for a release. If you're going to make a release of just jobs, you should have at least 20-30 [B]unique[/B] jobs.[/QUOTE] My DarkRP might crash if I make 20-30 jobs, but I'll try :)
[QUOTE=SkyArmyNinja;43119792]My DarkRP might crash if I make 20-30 jobs, but I'll try :)[/QUOTE] Just as jobs people can pick -and-choose.
[QUOTE=code_gs;43119885]Just as jobs people can pick -and-choose.[/QUOTE] Oh yeah XD Thx for the help bro :) By the way, I left this for you: <===[{SWORD OF GMOD}[==========>
:dance: [B][U][I]THIS JOB PACK IS OFFICIALLY RELEASED!!![/I][/U][/B] :dance:
Sorry, you need to Log In to post a reply to this thread.