Advanced Search
Search Results
130 total results found
Nord Inventory
Official Nord Lab documentation for Nord Inventory v1.6.11, covering installation, secure admin access, Admin Studio, weapon magazine ammunition, vehicle storage, Nord Staff integration, developer API and production operations.
Welcome · Nord Inventory v1.6.11
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, v...
Quick Start
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...
What’s New · v1.6.11
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 → Fiv...
1 · Setup & Access
Install Nord Inventory, choose a framework, configure administrator access and set the core runtime options.
Requirements & Installation
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 t...
Framework Detection
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 n...
Admin Access · ACE + License Fallback
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...
Admin Commands
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 ca...
Core Configuration
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....
Interaction Providers
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', ...
Locales
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 ...
2 · Player Experience
Player inventory UI, hotbar, ground interactions, containers, metadata and Personal Studio.
Inventory UI & Dual Inventory
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...
Fast Slots & Hotbar
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...
Ground Items, Pickup & Throw
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 ...
Container Items & Backpacks
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 ...
Metadata, Durability & Expiration
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...