config.lua
--[[
All script settings are found and edited in this file.
Make sure to configure everything properly before running the script.
]]
Config = {}
---[[ The images folder path of your inventory script ]]
--- So that item names and images will match your inventory - images only PNG !
Config.InventoryImagesFolder = 'ox_inventory/web/images/'
--[[ Level ]]
-- Level requirement for crafting, if set to false, everything can now be crafted.
Config.LevelSystem = true
-- Experience experience for each level. You can adjust or expand as needed.
Config.Levels = { 0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000 }
---[[ Money Configuration ]]
Config.Money = {
isItem = true, -- If set to true, money will be treated as an item.
itemName = 'cash', -- The name of the money item (if isItem is true).
accountName = 'bank', -- The account name used for money.
}
--[[ Debug Mode ]]
Config.debug = false -- Enable (true) or disable (false) debug mode for development/testing.
Last updated