• Updating DarkRP from 2.5 to 2.6
    3 replies, posted
I own a DarkRP server that is still running on 2.5. I actually thought that was the most recent version until I recently saw otherwise. When I installed the new DarkRP gamemode it wouldnt accept my DarkRP modification addon. Why arent they compatible anymore and how can I fix this?
Can you put your code for your modification on pastebin? We could then see what your addon does and what functions it might use that aren't available in 2.6. Also, you could just download the workshop version of DarkRP, it's the most recent version
Well for example the jobs have MAJOR errors. Here are some of those. [CODE]TEAM_SS = AddExtraTeam("Secret Service", Color(0, 0, 0, 255), "models/humans/mafia/male_02.mdl", [[You get paid to protect the mayor. If he dies you may be demoted. Can Raid: NO]], {"m9k_deagle"}, "ss", 1, 90, 0, true, false, false) TEAM_SWAT = AddExtraTeam("SWAT", Color(0, 51, 255, 255), "models/player/swat.mdl", [[You help protect the town in extreme situations. Can Raid: NO]], {"weapon_arc_atmcard", "arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_m4a1", "stunstick", "door_ram", "weaponchecker"}, "swat", 2, 80, 0, true, false, false) TEAM_SWATLEADER = AddExtraTeam("SWAT Leader", Color(0, 51, 255, 255), "models/player/swat.mdl", [[You lead the other swat members to battle in extreme situations. Can Raid: NO]], {"weapon_arc_atmcard", "arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_m4a1", "stunstick", "door_ram", "weaponchecker"}, "swatleader", 1, 80, 0, true, false, false) TEAM_SWATSNIPER = AddExtraTeam("SWAT Sniper", Color(0, 51, 255, 255), "models/player/swat.mdl", [[You help the SWAT in extreme situations from afar Can Raid: NO]], {"weapon_arc_atmcard", "arrest_stick", "unarrest_stick", "m9k_deagle", "m9k_svu", "stunstick", "door_ram", "weaponchecker"}, "swatsniper", 2, 80, 0, true, false, false) TEAM_THIEF = AddExtraTeam("Thief", Color(0, 0, 0, 255), "models/player/arctic.mdl", [[You make a living stealing from others. Don\'t get caught using illegal tools though. Can Raid: NO]], {"lockpick"}, "thief", 3, 45, 0, false, false, false) TEAM_HITMAN = AddExtraTeam("Hitman", Color(0, 204, 0, 255), "models/player/leet.mdl", [[You make a living killing people. Can Raid: No]], {"m9k_usp"}, "hitman", 2, 45, 0, true, false, false) TEAM_BOG = AddExtraTeam("Body Guard", Color(0, 0, 255, 255), "models/player/odessa.mdl", [[You get paid to guard people. You are not allowed to use your equipment for anything else. Can Raid: NO]], {"m9k_usp","stunstick"}, "bog", 2, 45, 0, true, false, false) TEAM_BMD = AddExtraTeam("Black Market Dealer", Color(153, 204, 51, 255), "models/player/guerilla.mdl", [[You make your living selling illegal weapons to the public. Make sure that you don\'t get caught because all of your weapons are illegal. Can Raid: NO]], {}, "bmd", 2, 45, 0, false, false, false) TEAM_ATM = AddExtraTeam("ATM Hacker", Color(153, 0, 51, 255), "models/player/Kleiner.mdl", [[You earn your living by hacking ATMS. Make sure not to get caught! Can Raid: NO]], {"weapon_arc_atmhack"}, "atm", 2, 30, 0, false, false, false) TEAM_MUGGER = AddExtraTeam("Mugger", Color(0, 0, 0, 255), "models/player/arctic.mdl", [[You make your living mugging the innocent people of the city. Can Raid: NO]], {}, "mugger", 2, 45, 0, false, false, false) TEAM_DRUGDEALER = DarkRP.createJob('Drug Dealer', { color = Color(0, 0, 0, 255), model = 'models/player/eli.mdl', description = [[You make a living selling drugs. Just remember, they are illegal.]], weapons = {}, command = 'drug', max = 2, salary = 45, admin = 0, vote = false, hasLicense = false, }) TEAM_DJ = DarkRP.createJob('DJ', { color = Color(255, 132, 0, 255), model = 'models/player/alyx.mdl', description = [[You get paid to perform for people. You are the only job other than hobo allowed to play music through the microphone. Can Raid: NO]], weapons = {}, command = 'dj', max = 1, salary = 50, admin = 0, vote = false, hasLicense = false, }) TEAM_BANKER = DarkRP.createJob('Banker', { color = Color(102, 236, 254, 255), model = 'models/player/mossman.mdl', description = [[You are the only job allowed to own a money printer. You make loans to the public. You also have the highest paycheck of any job. Can Raid: NO]], weapons = {}, command = 'banker', max = 2, salary = 90, admin = 0, vote = false, hasLicense = false, }) TEAM_BG = AddExtraTeam("Bank Guard", Color(51, 102, 204, 255), "models/player/odessa.mdl", [[You earn your living protecting the city bank. Can Raid: NO]], {"m9k_colt1911"}, "bg", 2, 60, 0, false, true, false) TEAM_HM = DarkRP.createJob('Hotel Manager', { color = Color(112, 69, 181, 255), model = 'models/player/hostage/hostage_03.mdl', description = [[You own the hotel building and rent out the rooms Can Raid: NO]], weapons = {}, command = 'hm', max = 1, salary = 75, admin = 0, vote = false, hasLicense = false, })[/CODE]
What are the "major errors"? Are you getting errors in the server console? Post them here.
Sorry, you need to Log In to post a reply to this thread.