2025-06-13 01:23:53 +02:00
Config = Config or { }
-- For more info check: https://mt-scripts-documentations.gitbook.io/mt-script-documentation/
2025-06-24 22:46:46 +02:00
Config.debug = true -- if true it'll print some debug on F8/console and active all zones debug
2025-06-23 20:30:24 +02:00
Config.framework = ' qb ' -- qb, qbx, esx (need to change the export on the Config.core)
2025-06-13 01:23:53 +02:00
Config.core = exports [ ' qb-core ' ] : GetCoreObject ( ) -- Your core export (for qb is exports['qb-core']:GetCoreObject()) (for esx is exports.es_extended:getSharedObject()) (for qbx you can just delete this line and add '@qbx_core/modules/playerdata.lua', to the fxmanifest.lua client_scripts)
2025-06-23 20:19:27 +02:00
Config.target = ' qb-target ' -- ox_target, qb-target, interact, ...
2025-06-23 20:30:24 +02:00
Config.banking = ' okokBanking ' -- qb-banking, Renewed-Banking, (can change at server/functions.lua) ...
2025-06-23 20:28:52 +02:00
Config.keys = ' sn_vehicleKey ' -- qb-vehiclekeys, qbx_vehiclekeys, mk_vehiclekeys, qs-vehiclekeys
2025-06-23 20:21:23 +02:00
Config.locale = ' en '
2025-06-13 01:23:53 +02:00
Config.useTabletAnimation = true
Config.mInsurance = {
2025-06-23 20:30:24 +02:00
enable = false , -- Enable use m-Insurance?
2025-06-13 01:23:53 +02:00
inventory = " qb " , -- "qb" or "ox" | If you use esx leave this "ox"
}
Config.webhooks = {
vehicleImported = ' ' ,
vehicleBought = ' ' ,
adminCommand = ' '
}
Config.commands = {
addStock = { command = ' addstock ' , restricted = ' group.admin ' } ,
removeStock = { command = ' removestock ' , restricted = ' group.admin ' } ,
}