Its open source just make it work with ox_inventory. It isnt hard
Go to server > server.lua
RegisterNetEvent('cure-notebook:updateMetadata:server', function(metadata, slot, title, desc)
local src = source
if Inventory == "ox_inventory" then
local searchResult = exports.ox_inventory:Search(src, 'slots', Config.ItemName)
if searchResult and type(searchResult) == 'table' then
for _, itemData in pairs(searchResult) do
if itemData.slot then
local updatedMetadata = itemData.metadata or {}
updatedMetadata.content = metadata
updatedMetadata.main = {title = title, description = desc}
exports.ox_inventory:SetMetadata(src, itemData.slot, updatedMetadata)
end
end
end
end
end)
Youre welcome
Posting this here also for any others that dont understand that you can edit open source scripts to work