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_settingsAlso check the server console for database errors during resource start.
Discord avatar is not showing
Discord avatar fetching requires a bot token:
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:
PrismConfig.clothing.command = {
name = 'clothingcreator',
restricted = 'group.admin',
}The player must have the configured permission group.
Clothing images are missing
Check the image config:
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_inventoryAlso 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-assetsThe 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.
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.