51 lines
1.8 KiB
Lua
51 lines
1.8 KiB
Lua
|
Config = {}
|
||
|
|
||
|
-- Core Config
|
||
|
Config.CoreName = 'qb-core'
|
||
|
|
||
|
-- Target Config
|
||
|
Config.TargetName = 'qb-target'
|
||
|
Config.TargetIcon = 'fab fa-dropbox'
|
||
|
Config.TargetLabel = 'Åben kasse'
|
||
|
|
||
|
-- Police Config
|
||
|
Config.RequiredCops = 3 -- How many cops are required to drop a gun?
|
||
|
Config.PoliceJobs = {"police"} -- All types of police job in server.
|
||
|
|
||
|
-- Other Config
|
||
|
Config.TimeUntilDrop = 3 -- How long does it take to drop a gun? (in minutes)
|
||
|
Config.Cooldown = 10 -- Global Cooldown
|
||
|
|
||
|
-- Objects and models Config
|
||
|
Config.LoadModels = {"w_am_flare", "p_cargo_chute_s", "ex_prop_adv_case_sm", "cuban800", "s_m_m_pilot_02"} -- Models to pre-load.
|
||
|
Config.FlareName = "weapon_flare" -- Name of the flare weapon.
|
||
|
Config.FlareModel = "w_am_flare" -- Model of the flare weapon.
|
||
|
Config.PlaneModel = "cuban800" -- Model of the plane. original plane cuban800
|
||
|
Config.PlanePilotModel = "s_m_m_pilot_02" -- Model of the plane pilot.
|
||
|
Config.ParachuteModel = "p_cargo_chute_s" -- Model of the parachute.
|
||
|
Config.CrateModel = "ex_prop_adv_case_sm" -- Model of the crate
|
||
|
|
||
|
-- Item Drops Config
|
||
|
Config.ItemDrops = {
|
||
|
["goldenphone"] = {
|
||
|
[1] = {name = "weapon_smg", description = "Nøgle", amount = 1},
|
||
|
},
|
||
|
["redphone"] = {
|
||
|
[1] = {name = "coke_brick", description = "Coke klods", amount = 5},
|
||
|
},
|
||
|
["greenphone"] = {
|
||
|
[1] = {name = "weapon_heavypistol", description = "Heavy Pistol", amount = 6},
|
||
|
[2] = {name = "ifak", description = "iFaks", amount = 20},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
-- Locale Config
|
||
|
Config.Lang = {
|
||
|
["pilot_contact"] = "Du vil blive kontaktet snarest",
|
||
|
["no_cops"] = "Der er ikke nok betjente...",
|
||
|
["pilot_dropping_soon"] = "Flyet er snart i luften, og kassen smides snart.",
|
||
|
["pilot_crashed"] = "Fuck! Flyet styrtede ned! Levering fejlet!",
|
||
|
["crate_dropping"] = "Kassen er på vej ned.",
|
||
|
["item_recieved"] = "Du modtog godterne",
|
||
|
}
|