Main config
This is the main configuration file. (sh_main.lua)
Config.DeliveryPrice = 0.05 --1 dollar per meterConfig.UIImageSource = "ox_inventory/web/images"--Path of your inventory item images, examples:
--QBCore: qb-inventory/html/images
--Ox: ox_inventory/web/images
Robbery config
Config.Robbery = {
enabled = true,
progressTime = 5000,--Time in milliseconds it takes to rob a player
handsUp = true, --If the player being robbed needs to have their hands up for the robbery to work
unarmed = {--What weapon types count as being unarmed
[`WEAPON_UNARMED`] = true,
[`WEAPON_PETROLCAN`] = true,
[`WEAPON_KNIFE`] = true,
[`WEAPON_BAT`] = true,
[`WEAPON_CROWBAR`] = true,
[`WEAPON_GOLFCLUB`] = true,
[`WEAPON_HAMMER`] = true,
[`WEAPON_HATCHET`] = true,
[`WEAPON_FLASHLIGHT`] = true,
[`WEAPON_BOTTLE`] = true,
}
}
Blips config
Last updated