Skip to Content

FAQ

Common Prism Inventory V2 setup and runtime issues.

UI does not look like Prism Inventory V2

Make sure only one ox_inventory resource is running.

Prism Inventory V2 is a custom replacement build of ox_inventory, not an addon that runs beside another inventory.

Settings are not saving

Check that oxmysql is started before ox_inventory.

The resource stores player settings in:

prism_inventory_settings

Also check the server console for database errors during resource start.

Discord avatar is not showing

Discord avatar fetching requires a bot token:

custom/serverConfig.lua
PrismServerConfig.discord.botToken = 'YOUR_BOT_TOKEN'

The player must also have a Discord identifier connected to their FiveM session.

Clothing creator command does not open

Check the configured command and restriction:

custom/config.lua
PrismConfig.clothing.command = { name = 'clothingcreator', restricted = 'group.admin', }

The player must have the configured permission group.

Clothing images are missing

Check the image config:

custom/config.lua
PrismConfig.clothing.images = { enabled = true, basePath = 'nui://ox_inventory/web/src/assets/clothing', type = 'webp', template = '{pedModel}_{component}_{number}.{type}', }

The image filename must match the template exactly.

Inventory errors on start

Confirm the required start order:

ensure oxmysql ensure ox_lib ensure ox_inventory

Also confirm your server build is 6116 or newer and OneSync is enabled.

Version checker says update available

Download the newest asset from the CFX portal:

https://portal.cfx.re/assets/granted-assets

The version checker is informational only. It does not auto-download updates.

Webhook logs are not sending

Check that webhooks are enabled and the URL is valid.

custom/serverConfig.lua
PrismServerConfig.webhooks.enabled = true PrismServerConfig.webhooks.clothingCreate = 'https://discord.com/api/webhooks/xxxxx/yyyyy'

Leave a webhook field empty only if you want that log type disabled.

Last updated on