• Default DarkRP jobs will not disable.
    1 replies, posted
[code] /*--------------------------------------------------------------------------- DarkRP disabled defaults --------------------------------------------------------------------------- DarkRP comes with a bunch of default things: - a load of modules - default jobs - shipments and guns - entities (like the money printer) and many more If you want to disable or replace the default things, you should disable them here Note: if you want to have e.g. edit the official medic job, you MUST disable the default one in this file! You can copy the medic from DarkRP and paste it in darkrp_config/jobs.lua ---------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------- The list of modules that are disabled. Set to true to disable, false to enable. Modules that are not in this list are enabled by default. ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["modules"] = { ["afk"] = true, ["chatsounds"] = false, ["events"] = false, ["fpp"] = false, ["f1menu"] = false, ["f4menu"] = false, ["hitmenu"] = false, ["hud"] = false, ["hungermod"] = true, ["playerscale"] = false, ["sleep"] = false, ["fadmin"] = false, } /*--------------------------------------------------------------------------- The disabled default jobs. true to disable, false to enable. NOTE: If you disable a job and remake it, expect things that rely on the job to stop working e.g. you disable the gundealer and you make a new job as TEAM_GUN. If you want the shipments/door groups/etc. to work for your custom job, remake them to include your job as well. ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["jobs"] = { ["chief"] = true, ["citizen"] = true, ["cook"] = true, --Hungermod only ["cp"] = true, ["gangster"] = true, ["gundealer"] = true, ["hobo"] = true, ["mayor"] = true, ["medic"] = true, ["mobboss"] = true, } /*--------------------------------------------------------------------------- Shipments and pistols ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["shipments"] = { ["AK47"] = true, ["Desert eagle"] = true, ["Fiveseven"] = true, ["Glock"] = true, ["M4"] = true, ["Mac 10"] = true, ["MP5"] = true, ["P228"] = true, ["Pump shotgun"] = true, ["Sniper rifle"] = true, } /*--------------------------------------------------------------------------- Entities ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["entities"] = { ["Drug lab"] = true, ["Gun lab"] = true, ["Money printer"] = true, ["Microwave"] = true, --Hungermod only } /*--------------------------------------------------------------------------- Vehicles (at the moment there are no default vehicles) ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["vehicles"] = { } /*--------------------------------------------------------------------------- Food Food is only enabled when hungermod is enabled (see disabled modules above). ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["food"] = { ["Banana"] = true, ["Bunch of bananas"] = false, ["Melon"] = true, ["Glass bottle"] = false, ["Pop can"] = true, ["Plastic bottle"] = false, ["Milk"] = true, ["Bottle 1"] = true, ["Bottle 2"] = true, ["Bottle 3"] = true, ["Orange"] = true, } /*--------------------------------------------------------------------------- Door groups ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["doorgroups"] = { ["Cops and Mayor only"] = false, ["Gundealer only"] = false, } /*--------------------------------------------------------------------------- Ammo packets ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["ammo"] = { ["Pistol ammo"] = true, ["Rifle ammo"] = true, ["Shotgun ammo"] = true, } /*--------------------------------------------------------------------------- Agendas ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["agendas"] = { ["Gangster's agenda"] = false, ["Police agenda"] = false, } /*--------------------------------------------------------------------------- Chat groups (chat with /g) Chat groups do not have names, so their index is used instead. ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["groupchat"] = { [1] = false, -- Police group chat (mayor, cp, chief and/or your custom CP teams) [2] = false, -- Group chat between gangsters and the mobboss } /*--------------------------------------------------------------------------- Jobs that are hitmen set to true to disable ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["hitmen"] = { ["mobboss"] = true, } /*--------------------------------------------------------------------------- Demote groups When anyone is demote from any job in this group, they will be temporarily banned from every job in the group ---------------------------------------------------------------------------*/ DarkRP.disabledDefaults["demotegroups"] = { ["Cops"] = false, ["Gangsters"] = false, } [/code] My default jobs wont disable, did I do something wrong?
If you are using Notepad++ to edit this file, go to line 114 by Pump. You are missing a bracket and Quotation
Sorry, you need to Log In to post a reply to this thread.