Config file
-- Zones for Menus
Config = Config or {}
Config.UseTarget = GetConvar('UseTarget', 'false') == 'true' -- Use qb-target interactions (don't change this, go to your server.cfg and add `setr UseTarget true` to use this and just that from true to false or the other way around)
--
-- Inventory
--
-- Set this to the inventory resource you want to use. Accepted values are
-- 'ps', 'qb', or 'ox'. You can also provide a table to define a priority
-- order (e.g. { 'ox', 'qb', 'ps' }). Any inventories not listed will fall
-- back to the default priority of ps -> qb -> ox.
Config.Inventory = 'qb'
--
-- Logging
--
-- qb-log requires the log "type" passed to CreateLog to be configured inside
-- its own resource. The default resource ships with a "bossmenu" channel, but
-- not one for gang management. Point this to an existing and configured
-- channel (or set it to false/nil to disable gang logging entirely) to avoid
-- qb-log printing warnings about unknown log names.
Config.GangLogType = 'bossmenu'
Config.BossMenus = {
police = {
vector3(447.16, -974.31, 30.47),
},
ambulance = {
vector3(311.21, -599.36, 43.29),
},
cardealer = {
vector3(-32.94, -1114.64, 26.42),
},
mechanic = {
vector3(-347.59, -133.35, 39.01),
},
}
Config.GangMenus = {
lostmc = {
vector3(449.78, -972.71, 30.63),
},
ballas = {
vector3(0, 0, 0),
},
vagos = {
vector3(0, 0, 0),
},
cartel = {
vector3(0, 0, 0),
},
families = {
vector3(0, 0, 0),
},
}Last updated