Advanced Search
Search Results
113 total results found
Welcome · Nord Inventory v1.6.11
Nord Inventory is Nord Lab's production-ready, server-authoritative inventory system for FiveM. It combines a modern dual-inventory interface with a complete in-game administration workflow, persistent database-backed item definitions, vehicle storage manageme...
Quick Start
This is the shortest path to a working Nord Inventory installation. 1. Requirements FiveM server with OneSync. MySQL or MariaDB. oxmysql. Optional framework: ESX, QBCore, Qbox or Nord Core. 2. Install and start Place the resource as nord_inventory and use a s...
What’s New · v1.6.11
This page summarizes the important changes since the v1.6.8 prop-fallback release. v1.6.11 · Admin license fallback Added a server-only administrator access configuration in server/config.lua. Admin access now resolves console → ACE → FiveM license fallback. ...
Requirements & Installation
Requirements Requirement Status FiveM / OneSync Required MySQL or MariaDB Required oxmysql Required ESX / QBCore / Qbox / Nord Core Optional ox_lib Not required Target resource Optional Nord Inventory can use its own Text UI, so a target resource is not mandat...
Framework Detection
Set the framework mode in config.lua: Config.Framework = 'auto' -- auto | esx | qb | qbox | nord | standalone Auto-detection order When set to auto, Nord checks resources in this order: qbx_core → Qbox qb-core → QBCore es_extended → ESX nord-core → Nord Core...
Admin Access · ACE + License Fallback
Nord Inventory v1.6.11 supports two administrator authorization methods without exposing license identifiers to the client. Access order The server resolves admin access in this order: Console — server console commands are trusted. ACE — checks the configured ...
Admin Commands
All commands in Config.AdminCommands require Nord Inventory admin access. They can be renamed or have aliases removed in config.lua. Default command Purpose /giveitem / /nordgiveitem Give an item to a player /givecash / /nordgivecash Give cash currency ite...
Core Configuration
The complete configuration is in config.lua. The values below are the defaults shipped with v1.6.11. General Config.Framework = 'auto' Config.Locale = 'en' Config.Debug = false Config.OpenCommand = 'inventory' Config.OpenKey = 'TAB' Config.AdminCommand = 'nor...
Interaction Providers
Nord can use its own Text UI or a target resource for ground items, configured stashes and vehicle trunks. Built-in Text UI Default configuration: Config.Interaction = { Mode = 'textui', TextUI = 'default', Target = 'auto', Key = 'E', Contr...
Locales
Nord Inventory v1.6.11 ships with: locales/en.json locales/pt.json (Portuguese, PT-PT) Select the active locale: Config.Locale = 'en' -- Config.Locale = 'pt' Fallback behavior: Config.LocaleFallback = 'en' Config.LocalePath = 'locales' What the locale system c...
Inventory UI & Dual Inventory
Nord uses a dual-inventory layout. Left: the player's own inventory. Right: the currently active contextual inventory. The right side can represent: Type Typical use Ground Nearby world drops stash General persistent storage chest / safe Resource-defined stor...
Fast Slots & Hotbar
Nord reserves the first five inventory slots as Fast Slots when the default configuration is used. Config.UI.hotbarSlots = 5 Config.UI.hotbarKeybinds = true Pinning behavior Fast Slots are real player inventory slots. When an item is pinned there, Nord prevent...
Ground Items, Pickup & Throw
Items moved to Ground become real server-synchronized ground drops with local world props. Default distances Config.GroundOpenDistance = 3.0 Config.GroundDrawDistance = 15.0 Config.GroundPropDistance = 35.0 Config.ThrowMaxDistance = 8.0 Config.ThrowMaxHeightDi...
Container Items & Backpacks
An item definition can itself provide storage. ['backpack'] = { label = 'Backpack', weight = 900, type = 'container', stack = false, unique = true, container = { slots = 20, maxWeight = 25000 } } Important behavior C...
Metadata, Durability & Expiration
Nord stores arbitrary item metadata per item instance. Metadata defaults metadataDefaults = { battery = 100, ownerName = '', quality = 100 } Metadata can also be supplied when adding an item: exports.nord_inventory:AddItem(source, 'phone', 1, { ...
Personal Studio
Players can customize the presentation of their own inventory without changing Admin Studio or server item definitions. The customization UI includes areas such as: Appearance. Layout. Icon color. Border visibility. Fast Slots width. Lifecycle/condition bar vi...
Admin Studio Overview
Open Admin Studio with: /norditems The request is checked server-side using the configured ACE permission. Workspaces Admin Studio v1.6.11 includes: Dashboard — registry totals and quick actions. Items — folder/category-first item registry and item management....
Item Registry & Categories
The Items workspace uses a folder-style explorer. Built-in categories The package defines categories including: ID Label generic General food Food drink Drinks medical Medical weapon Weapons ammo Ammunition tool Tools document Documents evidence Evidence conta...