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

73 total results found

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

2 · Crafting Core

Nord Crafting v6.2.0

Understand recipes, progression, failure behavior, stashes and the server-authoritative crafting flow.

section
crafting

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

3 · Benches & Access

Nord Crafting v6.2.0

Create fixed and portable benches, control access, manage props and integrate organization ownership.

section
benches

Bench Types

Nord Crafting v6.2.0 3 · Benches & Access

The runtime normalizes benches into four main modes: Type Purpose craft Standard item crafting blueprint Blueprint drafting/creation stash Storage-focused bench weapon Weapon preview/component workflow Older labels such as general, illegal or military can s...

section
benches

Fixed Benches

Nord Crafting v6.2.0 3 · Benches & Access

Fixed benches are persistent world benches stored in: nord_crafting_fixed They contain: Label. Prop/model. Coordinates and heading. Bench type. Access JSON. Assigned recipe/blueprint IDs. Stash configuration. Creator and creation timestamp. Admin Studio provid...

section
benches

Portable Benches

Nord Crafting v6.2.0 3 · Benches & Access

Portable benches are enabled in: Config.Portable = { Enabled = true, ItemName = 'craft_bench', Default = { label = 'Bancada Portátil', model = `prop_tool_bench02`, access = { type = 'public' }, recipes = { ... }, ...

section
benches

Access Control · Public, Job & Gang

Nord Crafting v6.2.0 3 · Benches & Access

Public access = { type = 'public' } Any player can use the bench, subject to normal distance and recipe validation. Job access = { type = 'job', jobs = { 'police', 'mechanic' }, minGrade = 2 } Supported on QBCore and ESX. Gang access = { type =...

section
benches

Organization Access · Nord Crime / OpCrimes

Nord Crafting v6.2.0 3 · Benches & Access

Config.CrimeBridge = 'auto' In automatic mode, Crafting prefers nord_crime when available and can fall back to op-crime. Organization access access = { type = 'org', orgId = 12 } The player's organization state is checked server-side. Nord Crime-spec...

section
benches

Bench Props & Placement

Nord Crafting v6.2.0 3 · Benches & Access

Nord Crafting loads bench prop catalogs from: models/default_props.json models/custom_props.json The Admin Studio can also manage custom prop entries stored in: nord_crafting_props Placement Admin placement spawns the selected model in-world and stores coordin...

section
benches

4 · Blueprints

Nord Crafting v6.2.0

Install blueprint items, create technical drawings, manage quality/uses and gate recipes through metadata.

section
blueprints

Blueprint System Overview

Nord Crafting v6.2.0 4 · Blueprints

Blueprints are metadata-rich inventory items used to unlock or authorize recipes. A blueprint definition is stored in: nord_crafting_blueprints Each definition can include: Stable blueprint ID. Label. Item/material requirements for drafting. Maximum uses. Imag...

section
blueprints

Blueprint Item Installation

Nord Crafting v6.2.0 4 · Blueprints

The blueprint system requires the inventory item: blueprint Nord Inventory Use Nord Crafting's automatic installation workflow. The auto-installer is intended only for nord_inventory. After first boot, verify blueprint is present in the Nord Inventory item r...

section
blueprints