But I don't blame you, you're on a leak site to get it for free while I make money, come on, kisses
[attachment removed]
your also in leak site dont forget that
here is the rename option in free scorce :
https://github.com/NikXpro/ox_inventory
for blacklist item
local renameBlacklist = { "item1", "item2", "item3" }
function attemptRename(player, slotId, newName)
local item = exports.ox_inventory:GetSlotWithItem(player, slotId)
if not item then
lib.notify({ title = "Error", description = "Item not found!", type = "error" })
return
end
if table.contains(renameBlacklist, item.name) or item.metadata.allowRename == false then
lib.notify({ title = "Error", description = "You cannot rename this item!", type = "error" })
return
end
local success = MySQL.update.await('UPDATE items_table SET name = ? WHERE id = ?', { newName, item.id })
if success then
lib.notify({ title = "Success", description = "Item renamed successfully!", type = "success" })
else
lib.notify({ title = "Error", description = "Failed to rename the item!", type = "error" })
end
end
[attachment removed][/attachment][/attachment]