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

Prop Manager

Nord Crafting 6 · Admin Studio

Prop Manager The Prop Manager combines default and custom bench prop catalogs. Custom prop records are stored in: nord_crafting_props Admin actions include: Create prop entry. Update prop entry. Delete prop entry. Load merged prop list into the bench creation ...

section
admin

Blueprint Manager

Nord Crafting 6 · Admin Studio

Blueprint Manager Admin Studio can create and delete blueprint definitions stored in the database. A blueprint definition can include: ID. Label. Drafting materials. Output/reference item fields. Maximum uses. Image. The blueprint list is synchronized to the N...

section
admin

Update Checker & Security

Nord Crafting 6 · Admin Studio

Update Checker & Security Nord Crafting contains a GitHub release checker for private/public repository workflows. Console command: nordcrafting:update The Admin Studio can also request update status. Recommended token handling The updater supports providing t...

section
admin

7 · Integrations & Bridges

Nord Crafting

Connect Nord Crafting to Nord Inventory, Nord Staff, targets, notifications, crime organizations and Nord VIP.

section
integrations

Nord Inventory Integration

Nord Crafting 7 · Integrations & Bridges

Nord Inventory Integration Nord Inventory is the recommended inventory for the Nord Crafting ecosystem because it is the target of the new automatic installation workflow. Recommended startup ensure nord_inventory ensure nord_crafting Automatic installation Us...

section
integrations

Nord Staff Integration

Nord Crafting 7 · Integrations & Bridges

Nord Staff Integration Nord Crafting exposes its Admin Studio to nord_staff. The manifest declares: nord_staff_admin_export 'OpenAdminInterface' and the client provides: exports('OpenAdminInterface', function(options) if type(options) == 'table' and optio...

section
integrations

Inventory Bridge

Nord Crafting 7 · Integrations & Bridges

Inventory Bridge Crafting centralizes inventory operations in server/bridge/inventory.lua. Public operations include: Get item count. Add item. Remove item. Search slots/items. Read inventory. Read item registry. Set metadata where supported. Register/open st...

section
integrations

Target Bridge

Nord Crafting 7 · Integrations & Bridges

Target Bridge Config.Target = 'auto' Automatic detection order: ox_target qb-target qtarget no target provider The bridge exposes internal helpers to add/remove local entity targets and a safe-add routine that waits briefly for the entity to exist. Interaction...

section
integrations

Notifications, Text UI & Progress

Nord Crafting 7 · Integrations & Bridges

Notifications, Text UI & Progress Notification auto-detection When Config.Notify.type = 'auto', the current bridge checks: nord_textui codem-supreme-notification ox_lib QBCore ESX console print fallback Text UI Text UI prefers: nord_textui ox_lib Progress Cra...

section
integrations

Nord Crime & OpCrimes

Nord Crafting 7 · Integrations & Bridges

Nord Crime & OpCrimes Config.CrimeBridge = 'auto' Automatic provider choice The intended automatic behavior is to use nord_crime when started and fall back to op-crime when appropriate. Organization-aware benches read organization state from the player and v...

section
integrations

Nord VIP Integration

Nord Crafting 7 · Integrations & Bridges

Nord VIP Integration Nord VIP support is optional. Config.NordVIP = { Enabled = false, MissionKey = 'crafts', MissionProgressPerCraft = 1, PassXpPerCraft = 50, } When enabled and nord_vip is started, a successful craft can call: exports['nord_...

section
integrations

8 · Developer API & Operations

Nord Crafting

Use public exports safely, understand the database, diagnose common issues and prepare the resource for production.

section
api

Client Exports

Nord Crafting 8 · Developer API & Operations

Client Exports Admin Studio exports['nord_crafting']:OpenAdminInterface() Probe support used by integrations: local supported = exports['nord_crafting']:OpenAdminInterface({ probe = true }) Bench UI exports['nord_crafting']:OpenBench('fixed_1') exports['nord_c...

section
api

Server Exports · Benches

Nord Crafting 8 · Developer API & Operations

Server Exports · Benches exports['nord_crafting']:GetFixedBenches() exports['nord_crafting']:GetPlacedBenches() exports['nord_crafting']:GetAllBenches() exports['nord_crafting']:GetBench('fixed_1') exports['nord_crafting']:ReloadBenches() Add a placed bench: e...

section
api

Server Exports · Inventory

Nord Crafting 8 · Developer API & Operations

Server Exports · Inventory These exports expose Crafting's active inventory bridge to other server resources. local invType = exports['nord_crafting']:GetInventoryType() local count = exports['nord_crafting']:GetItemCount(source, 'iron') local ok = exports['no...

section
api

Server Exports · Blueprints & Organizations

Nord Crafting 8 · Developer API & Operations

Server Exports · Blueprints & Organizations Blueprint API exports['nord_crafting']:GetPlayerBlueprintRecipes(source) exports['nord_crafting']:GetBlueprintDefinition('pistol') exports['nord_crafting']:BuildBlueprintMetadata(row, 85) exports['nord_crafting']:Cre...

section
api

Server Exports · Admin Runtime

Nord Crafting 8 · Developer API & Operations

Server Exports · Admin Runtime local ok, identifier = exports['nord_crafting']:AddAdmin(value) local ok, identifier = exports['nord_crafting']:RemoveAdmin(value) local isAdmin = exports['nord_crafting']:IsAdmin(value) local runtimeAdmins = exports['nord_crafti...

section
api

Database Tables

Nord Crafting 8 · Developer API & Operations

Database Tables Nord Crafting creates/manages the following tables in this package: Table Purpose nord_crafting_settings Schema version and runtime options nord_crafting_meta Crafting metadata/version compatibility nord_crafting_blueprints Blueprint definition...

section
api