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

113 total results found

Downloadable Reference Files

Nord Inventory v1.6.11 7 · Database, Security & Operations

The following original v1.6.11 resource files are attached to this BookStack import for quick reference: Main config.lua. Server-only server/config.lua. server.cfg.example. sql/nord_inventory.sql. README.md. Full CHANGELOG.md. docs/INTEGRATION.md. DB item p...

Welcome · Nord Crafting v6.2.0

Nord Crafting v6.2.0

Nord Crafting is Nord Lab's advanced crafting, workbench and blueprint system for FiveM. It combines fixed and portable benches, player progression, blueprint-based unlocks, weapon/component workbenches, access control, stashes, database-backed administration ...

section
overview

Quick Start · Nord Inventory Recommended

Nord Crafting v6.2.0

This is the cleanest setup when you use the Nord ecosystem. 1. Start the required resources ensure oxmysql ensure ox_lib # Framework when used ensure qb-core # or: ensure es_extended ensure nord_inventory ensure nord_crafting # Optional Nord integration ensure...

section
overview

Compatibility Matrix

Nord Crafting v6.2.0

Core dependencies System Status FiveM / OneSync Required oxmysql Required ox_lib Required QBCore Supported ESX Supported Inventory Inventory Crafting bridge Automatic installation nord_inventory Recommended Nord ecosystem path Yes ox_inventory Supported No — m...

section
overview

Requirements & Installation

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Required resources Nord Crafting declares these dependencies: dependencies { 'ox_lib', 'oxmysql' } Install the resource at: resources/[nord]/nord_crafting Add it to server.cfg after its dependencies and framework/inventory resources. ensure oxmysql en...

section
setup

Automatic Installation · Nord Inventory Only

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Nord Crafting now includes an automatic installation path designed specifically for nord_inventory. What this means When your server uses Nord Inventory, the Crafting setup can use the automatic installer instead of asking the server owner to manually edit th...

section
setup

Manual Inventory Setup · OX, QS, QB & ESX

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Use this workflow whenever the active inventory is not Nord Inventory. Blueprint item The package includes manual definitions under: install/itens/item.lua install/itens/item_qs.lua install/itens/blueprint.png OX-style definition ['blueprint'] = { label = ...

section
setup

Framework Detection

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Config.Framework = 'auto' -- auto | qb | esx In automatic mode, Crafting checks: qb-core es_extended The active framework is used for player data, citizen/identifier resolution, jobs and QBCore gangs. QBCore Player identity: citizenid where required by Crafti...

section
setup

Core Configuration

Nord Crafting v6.2.0 1 · Setup & Auto Installation

The primary configuration is config/config.lua. Core providers Config.Framework = 'auto' Config.Locale = 'pt' Config.Inventory = 'auto' Config.Target = 'auto' Config.Progress = 'auto' Notifications Config.Notify = { type = 'auto', title = 'Nord Crafti...

section
setup

Smart Database Initialization

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Nord Crafting includes a database initializer and migration system. First start When automatic creation is enabled, the resource: Waits for oxmysql. Ensures the settings table exists. Creates required Crafting tables. Inserts default data where required. Runs...

section
setup

Admin Access

Nord Crafting v6.2.0 1 · Setup & Auto Installation

Administrator access is based on FiveM license identifiers. Config.AdminLicenses = { ['license:YOUR_LICENSE'] = true } The Admin Manager also supports runtime administrators, which can be added or removed without editing the base config. Open Admin Studio ...

section
setup

Locales & Resource Logs

Nord Crafting v6.2.0 1 · Setup & Auto Installation

The package ships with: locales/en.lua locales/pt.lua Select the locale: Config.Locale = 'pt' Runtime debug Config.DebugLogs = false Console/txAdmin can also toggle blueprint/crafting debug at runtime: bpdebug on bpdebug off The command is console-only. TX con...

section
setup

Crafting Flow

Nord Crafting v6.2.0 2 · Crafting Core

A standard craft is validated server-side. Flow Player opens a bench. Server resolves the bench instance and access policy. The selected recipe must be assigned to that bench. Distance is validated. Required level is validated when enabled. Required blueprint ...

section
crafting

Recipes · Config + Database

Nord Crafting v6.2.0 2 · Crafting Core

Recipes can come from two sources. Default recipes Defined in: config/config_recipes.lua Example: lockpick = { label = 'Lockpick', item = 'lockpick', amount = 1, time = 6000, use_blueprint = 0, blueprint_type = '', ingredients = { ...

section
crafting

Level & XP Progression

Nord Crafting v6.2.0 2 · Crafting Core

Config.LevelSystem = { Enabled = true, DefaultCraftXp = 25, DefaultLevels = { { level = 1, xp_required = 0, label = 'Iniciante' }, { level = 2, xp_required = 150, label = 'Aprendiz' }, { level = 3, xp_required = 450, la...

section
crafting

Level-Based Craft Failure

Nord Crafting v6.2.0 2 · Crafting Core

Nord Crafting can apply a failure chance based on the player's crafting level. Config.CraftFailure = { EnabledByDefault = true, MinChance = 0.02, MaxChance = 0.20 } Lower levels receive the higher side of the configured failure range, while higher ...

section
crafting

Stashes

Nord Crafting v6.2.0 2 · Crafting Core

Benches can include a storage area. Typical fixed-bench defaults: Config.AdminFixedDefault = { stash = { enabled = false, slots = 30, weight = 40000 } } Portable default: stash = { enabled = true, slots = 20, weight ...

section
crafting

Crafting Security Model

Nord Crafting v6.2.0 2 · Crafting Core

Nord Crafting keeps the important decisions server-side. Validations The server checks: Valid request payload. Existing bench instance. Player distance from bench. Bench access policy. Recipe assignment to the bench. Recipe existence. Required crafting level. ...

section
crafting