#ox_inventory [Redesign, W.I.P, Inspired]

1 messages · Page 1 of 1 (latest)

opal needle
#

!! NOT DONE W.I.P !!

This redesign is a work in progress, released so that people can continue working on it. I have added a custom shop system as prod, and a crafting system (work in progress). Use common sense, and feel free to join my Discord so we can share ideas and create more things together.

Do not resell, I have chosen to make it available to everyone so you don't have to pay a lot for a redesign that doesn't even work. Remember to build the inventory before use, otherwise it's just plug n' play. (few items have been added)

Missing items & bugs

  • Crafting (ui is done) - feel free to fork and make crafting so we can all enjoy it. 🙂
  • Utility (ui is done) - feel free to fork and make crafting so we can all enjoy it. 🙂
  • Searchbar may have a problem with movement.
  • Target error inside client.lua with limitless-targeting (convert it to ox_target)
  • Delete all items if you get errors and make your own.
  • If there are more errors, as this version is for a custom framework, please let us know.

✨ Features

  • Drag n' Drop shop.
  • Custom crafting system (wip)
  • Inspired and perfected design.
  • Rarity system.
  • Utility System (ui only so far) -hidden.

Videos & Screenshots:
https://cdn.discordapp.com/attachments/1409183788092751994/1419851581364637806/2025-09-23_03-01-26.mp4?ex=68ff6d94&is=68fe1c14&hm=c20ce21162dcddfa2f96c28ed5afa0ab7913f3c26bbf41adf212443fb19f2483&
https://cdn.discordapp.com/attachments/1409183788092751994/1419853591190962257/2025-09-23_03-10-39.mp4?ex=68ff6f73&is=68fe1df3&hm=02b676404687f635ceab5d451eb107327a6d08ce6ea0e25a430287f8577c824e&
https://cdn.discordapp.com/attachments/1409183788092751994/1420037840695464076/image.png?ex=68ff724c&is=68fe20cc&hm=ce95295dee2b8fafd00e7958500ab2776a90ab30b49cea7a0b52f3ed69a1e1f8&

Released:
https://github.com/imnotcap/ox-inventory-redesign

GitHub

Casper's official redesign of ox-inventory, with heavy inspiration. - imnotcap/ox-inventory-redesign

opal needle
#

Some lua parts needs to be changed as it was for a custom framework. ^ Search for limitless in the lua files, to change it.

bronze rivet
#

change it to latest version so to install in the server

opal needle
bronze rivet
#

can i know how to update it to latest version so that i can do it myself

jovial raft
past leaf
rustic hemlock
#

what madness

opal needle
past leaf
#

ah i see, also when you pay with cash it doesnt remove the item (just saying for future devs)

cold axle
#

is there any plan for backpacks?

opal needle
cold axle
#

Really cool

haughty mantle
#

Awesome ❤️‍🔥

rocky ingot
#

legends👏

wanton flint
#

I'm not a fan of the gradients

opaque fulcrum
#

Hi everyone, has anyone managed to get this working on qbox?

ashen swift
#

it works perfectly with qbox

#

Just as simple as dragging, and dropping.

#

Or does this just not have compatibility with qbox?

past leaf
ashen swift
#

gotcha

orchid rampart
#

https://youtu.be/QH-MwzTx0Ps?si=5VagMm6hTV9_w9U9 Now someone is selling re-design that has really similar design for fucking 35€ + tax. cringe

Links

Documentation: https://devmosaic.gitbook.io/devmosaic/devmosaic/ox-inventory

Tebex: https://devmosaic.tebex.io/package/7106237

discord:https://discord.gg/CWyTmCU3Ht

A complete rework of the original ox_inventory — rebuilt for performance, realism, and full modular compatibility.
Just drag, drop, and replace your old inventory syste...

▶ Play video
#

The shop looks the same with just few buttons and a search bar added, this has been releases yesterday…

#

Ofc advertising it in qbus discord, where else?

opal needle
#

I just dont get why people are selling open source projects… Like whats the point, just make your own inventory and sell that instead of ox.

upbeat citrus
opal needle
#

Thanks!clappi
That’s not done, you’ll have to wait and see if anyone actually fixes it - or you can try and hire someone to fix it.

Never had time to work any further on this..

upbeat citrus
livid hull
#

That said, curious why OP didn't separate the Crafting + Shopping cart into it's own component.

#

Don't hate, just interested in the thought process.

#

Specially since I've been working on my won for the last month and have similar concepts.

opal needle
rich plank
novel zealot
#

For qbx-core easy code snippets
In modules/shops.lua - line 165-201: (Server Side )

Thanks for edit this fantastic inv

local function canAffordItem(inv, currency, price)
if price < 0 then
return {
type = 'error',
description = locale('cannot_afford', 'invalid price')
}
end

if currency == 'cash' then
    local count = Inventory.GetItemCount(inv, 'money')
    if count >= price then return true end

    return {
        type = 'error',
        description = locale('cannot_afford', locale('$') .. math.groupdigits(price))
    }
elseif currency == 'bank' then
    local user = exports.qbx_core:GetMoney(inv.id, 'bank')
    if user and user >= price then return true end

    return {
        type = 'error',
        description = locale('cannot_afford', math.groupdigits(price) .. ' Bank')
    }
end

end

local function removeCurrency(inv, currency, amount)
if currency == 'money' then
Inventory.RemoveItem(inv, 'money', amount)
elseif currency == 'bank' then
exports.qbx_core:RemoveMoney(inv.id, "bank", amount, "INV SHOP REMOVE")
end
end

ripe thicket
opal needle
#

It’s released for the community to take care of, as stated.

torpid void
#

awesome dude

#

i cant see the tab thing up in the right though. Is that maybe not done?

ashen swift
torpid void
opal needle
valid tundra
#

dang this is sweet!

valid tundra
opal needle
#

I stopped working on it, but someone on our discord already made crafting work and utility

#

So yes, to answer on the question it is for people to do whatever they want with it. 🙂

valid tundra
opal needle
clever crow
#

@opal needle you made the hud or?

opal needle
clever crow
#

great job on the hud looking great do you plan relesing it someday

brittle minnow
#

who has the crafting and utility working ive been trying too figure it out but havent got anywhere

opal needle
opal needle
lapis mist
#

a good redesing but i cant buy anything from the store

little birch
opal needle
pale python
#

@opal needle Where’s the hud from

undone arrow
#

is this build yet ? cuz i try to drag and drop it crash

#

@opal needle

cold axle
#

Hello. what hud do you use?

opal needle
opal needle
opal needle
glossy marten
#

not support evidence?

pure lodge
thin shuttle
#

@hidden root

mint jay
# opal needle Selfmade.

Just wondering cause i wanted to make the rarity more like the prod one where should i look to change that