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

7 · Integrations & Bridges

Nord Crafting v6.2.0

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

section
integrations

Nord Inventory Integration

Nord Crafting v6.2.0 7 · Integrations & Bridges

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 Use the Nord Inventory auto-i...

section
integrations

Nord Staff Integration

Nord Crafting v6.2.0 7 · Integrations & Bridges

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 options.probe == true then ...

section
integrations

Inventory Bridge

Nord Crafting v6.2.0 7 · Integrations & Bridges

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 stashes where suppo...

section
integrations

Target Bridge

Nord Crafting v6.2.0 7 · Integrations & Bridges

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

section
integrations

Notifications, Text UI & Progress

Nord Crafting v6.2.0 7 · Integrations & Bridges

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 Craft progress supports: Nord Text UI...

section
integrations

Nord Crime & OpCrimes

Nord Crafting v6.2.0 7 · Integrations & Bridges

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 validate access server-...

section
integrations

Nord VIP Integration

Nord Crafting v6.2.0 7 · Integrations & Bridges

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_vip']:AddPassXpAndMis...

section
integrations

8 · Developer API & Operations

Nord Crafting v6.2.0

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

section
api

Client Exports

Nord Crafting v6.2.0 8 · Developer API & Operations

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_crafting']:Close...

section
api

Server Exports · Benches

Nord Crafting v6.2.0 8 · Developer API & Operations

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: exports['nord_crafting']:A...

section
api

Server Exports · Inventory

Nord Crafting v6.2.0 8 · Developer API & Operations

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['nord_crafting']:AddItem(sourc...

section
api

Server Exports · Blueprints & Organizations

Nord Crafting v6.2.0 8 · Developer API & Operations

Blueprint API exports['nord_crafting']:GetPlayerBlueprintRecipes(source) exports['nord_crafting']:GetBlueprintDefinition('pistol') exports['nord_crafting']:BuildBlueprintMetadata(row, 85) exports['nord_crafting']:CreateBlueprintItem(source, 'pistol', 85) Organ...

section
api

Server Exports · Admin Runtime

Nord Crafting v6.2.0 8 · Developer API & Operations

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_crafting']:GetRuntimeAdmins() These a...

section
api

Database Tables

Nord Crafting v6.2.0 8 · Developer API & Operations

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

section
api

Discord Logging

Nord Crafting v6.2.0 8 · Developer API & Operations

Config.DiscordLogs = { Enabled = false, Webhooks = { Craft = '', Admin = '', Blueprint = '', Recipe = '', Stash = '' } } Enable only the destinations you actually use and keep webhook URLs private. Typical lo...

section
api

Troubleshooting

Nord Crafting v6.2.0 8 · Developer API & Operations

blueprint item not found Nord Inventory: run/verify the Nord Inventory-only automatic installation flow, then confirm the item exists. Other inventories: install the item definition/image manually from install/itens/. Portable bench cannot be used Verify the ...

section
api

Production Checklist

Nord Crafting v6.2.0 8 · Developer API & Operations

Before release: oxmysql and ox_lib start before Crafting. Framework auto-detection reports the expected framework. Inventory integration is tested. Nord Inventory auto-installer is verified when using nord_inventory. Third-party inventory item setup is...

section
api