๐Inventory
Configure the script inventory dependency
Step 1: Navigate to mm_dealership/shared/init.lua
Step 2: If you have renamed the core folder, then change the name. Ex: I have renamed qb-inventory to mm_inventory
if GetResourceState('ox_inventory') == 'started' then
Shared.Inventory = 'ox_inventory'
elseif GetResourceState('mm_inventory') == 'started' then
Shared.Inventory = 'mm_inventory'
else
Shared.Inventory = false
Shared.Ready = false
warn('No inventory found')
end
Last updated