Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- DR_DEMENT_CFG = DR_DEMENT_CFG or {}
- DR_DEMENT_CFG.Price = 350 -- Dismantling costs
- DR_DEMENT_CFG.Job = { -- Garage job (darkrp_modules/sr_dismantling_module/sh_dismantling_dr.lua)
- ["Garagist"] = true,
- }
- DR_DEMENT_CFG.AdminGroup = { -- Admin group that can use the tool
- ["superadmin"] = true,
- }
- DR_DEMENT_CFG.ChatMSG = true -- If set to TRUE, the player will receive a message in the chat instead of a notification (if you are not in the DarkRP gamemode, do not touch) else, the player will receive a notification..
- DR_DEMENT_CFG.MinMoney = 350 -- Minimum profit ( necessary only if : DR_DEMENT_CFG.SpawnMoney = true )
- DR_DEMENT_CFG.MaxMoney = 670 -- Maximum profit ( necessary only if : DR_DEMENT_CFG.SpawnMoney = true )
- DR_DEMENT_CFG.SpawnMoney = true -- If set to TRUE, after the dismantling will appear directly the money
- DR_DEMENT_CFG.DemantTime = 10 -- Dismantling time (in seconds) (default : 10)
- DR_DEMENT_CFG.CompatibilityVcMod = false -- Compatibility VcMod (MAIN) : If you have VcMod addon, set this to true
- DR_DEMENT_CFG.RepairSimfphys = false -- Compatibility Simfphys : If set to TRUE, the vehicle part can repair simfphys vehicle's
- DR_DEMENT_CFG.NotifyOwner = true -- If set to TRUE, the vehicle owner receive a notify if her vehicle is dismantled
- DR_DEMENT_CFG.SpawnModel = "models/props_vehicles/car002a_physics.mdl" -- Model of the vehicle body
- DR_DEMENT_CFG.Lang = "en" -- Addon language
- -- "en" = English
- -- "fr" = French
- -- "es" = Spanish
- -- "de" = German
- -- "ru" = Russian
- ------------------------------------------------------------------------------------------------------------
- -- You can change the resale price of parts for particular vehicles (optional)
- DR_DEMENT_CFG.VehicleSell = {}
- DR_DEMENT_CFG.VehicleSell["Jeep"] = { -- Vehicle class
- PriceMin = 1000, -- Minimum price
- PriceMax = 5000, -- Maximum price
- }
- ------------------------------------------------------------------------------------------------------------
- -- Blacklist, follow the example : ["MODEL OF VEHICLE"] = true :
- DR_DEMENT_CFG.Blacklist = {
- ["models/airboat.mdl"] = true,
- ["models/buggy.mdl"] = true,
- }
- ------------------------------------------------------------------------------------------------------------
- -- Vehicle parts ( necessary only if : DR_DEMENT_CFG.SpawnMoney = false ) : Don't touch :
- DR_DEMENT_CFG.Entity = {}
- DR_DEMENT_CFG.Entity[1] = { -- Don't touch
- Model = "models/props_vehicles/carparts_tire01a.mdl",
- PriceMax = 200,
- PriceMin = 100,
- }
- DR_DEMENT_CFG.Entity[2] = { -- Don't touch
- Model = "models/gibs/airboat_broken_engine.mdl",
- PriceMax = 500,
- PriceMin = 180,
- }
- DR_DEMENT_CFG.Entity[3] = { -- Don't touch
- Model = "models/props_vehicles/carparts_muffler01a.mdl",
- PriceMax = 300,
- PriceMin = 80,
- }
- DR_DEMENT_CFG.Entity[4] = { -- Don't touch
- Model = "models/props_vehicles/carparts_door01a.mdl",
- PriceMax = 90,
- PriceMin = 20,
- }
- DR_DEMENT_CFG.Entity[5] = { -- Don't touch
- Model = "models/props_junk/gascan001a.mdl",
- PriceMax = 50,
- PriceMin = 100,
- }
- ------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement