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

Core Configuration

Nord Crafting 1 · Setup & Auto Installation

Core Configuration 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', t...

section
setup

Smart Database Initialization

Nord Crafting 1 · Setup & Auto Installation

Smart Database Initialization 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 def...

section
setup

Admin Access

Nord Crafting 1 · Setup & Auto Installation

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

section
setup

Locales & Resource Logs

Nord Crafting 1 · Setup & Auto Installation

Locales & Resource Logs 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...

section
setup

2 · Crafting Core

Nord Crafting

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

section
crafting

Crafting Flow

Nord Crafting 2 · Crafting Core

Crafting Flow 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. Requi...

section
crafting

Recipes · Config + Database

Nord Crafting 2 · Crafting Core

Recipes · Config + Database 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...

section
crafting

Level & XP Progression

Nord Crafting 2 · Crafting Core

Level & XP Progression Config.LevelSystem = { Enabled = true, DefaultCraftXp = 25, DefaultLevels = { { level = 1, xp_required = 0, label = 'Iniciante' }, { level = 2, xp_required = 150, label = 'Aprendiz' }, { level = 3,...

section
crafting

Level-Based Craft Failure

Nord Crafting 2 · Crafting Core

Level-Based Craft Failure 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 fa...

section
crafting

Stashes

Nord Crafting 2 · Crafting Core

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

section
crafting

Crafting Security Model

Nord Crafting 2 · Crafting Core

Crafting Security Model 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. R...

section
crafting

3 · Benches & Access

Nord Crafting

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

section
benches

Bench Types

Nord Crafting 3 · Benches & Access

Bench Types 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 mi...

section
benches

Fixed Benches

Nord Crafting 3 · Benches & Access

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

section
benches

Portable Benches

Nord Crafting 3 · Benches & Access

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

section
benches

Access Control · Public, Job & Gang

Nord Crafting 3 · Benches & Access

Access Control · Public, Job & Gang 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...

section
benches

Organization Access · Nord Crime / OpCrimes

Nord Crafting 3 · Benches & Access

Organization Access · Nord Crime / OpCrimes 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 s...

section
benches

Bench Props & Placement

Nord Crafting 3 · Benches & Access

Bench Props & Placement 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-...

section
benches