Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

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.

product
Nord Inventory
version
1.6.11
platform
FiveM
publisher
Nord Lab
integration
Nord Staff

Welcome · Nord Inventory v1.6.11

Nord Inventory

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...

version
1.6.11
product
Nord Inventory
publisher
Nord Lab

Quick Start

Nord Inventory

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

Nord Inventory

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

Nord Inventory

Install Nord Inventory, choose a framework, configure administrator access and set the core runtime options.

section
setup

Requirements & Installation

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory 1 · Setup & Access

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

Nord Inventory

Player inventory UI, hotbar, ground interactions, containers, metadata and Personal Studio.

section
player

Inventory UI & Dual Inventory

Nord Inventory 2 · Player Experience

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

Nord Inventory 2 · Player Experience

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

Nord Inventory 2 · Player Experience

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

Nord Inventory 2 · Player Experience

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

Nord Inventory 2 · Player Experience

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...