Configuration
Configuration
Open the config.lua
file to configure the script:
Config = {}
Config.Framework = 'qb' -- 'qb' or 'qbx'
Config.Inventory = 'qb-inventory' -- 'qb-inventory' or 'ox_inventory'
Config.NotifyScript = 'b2_notify' -- 'b2_notify' or 'ox' or 'qb_notify' or 'qbx_notify'
Config.GangTags = {
['gang1'] = 'tag_gang1',
['gang2'] = 'tag_gang2',
-- Add more gangs and their corresponding tags - these should be the same as in the gangs.lua file
}
Config.DropOnDeath = true -- Enable or disable the drop mechanism on death
Config.PickUpAvailability = true -- Enable or disable the pick-up availability
Config.Debugging = true -- Enable or disable debugging
Config.CivPlayersDropTags = false -- Enable or disable the drop of tags when a civilian player dies - false means only gang members will drop tags
Config.PoliceDropTags = true -- Enable or disable the drop of tags when a police officer dies - done via Job
Config.PoliceJob = 'police' -- Define the police job name
Last updated