For the complete documentation index, see llms.txt. This page is also available as Markdown.

Installation Handcuff

0Resmon Handcuff Installation Document and Basic Concepts

This installation guide covers both ESX and QBCore frameworks.

What is required for installation

Setup for Ox Inventory

Open the ox_inventory/data/items.lua file. And place the following code.

["cuffs"] = {
    label = "Cuffs",
    weight = 1,
    stack = true,
    close = true,
},

["cuffkeys"] = {
    label = "Cuff Keys",
    weight = 1,
    stack = true,
    close = true,
},

["electrocuff"] = {
    label = "Electro Cuffs",
    weight = 1,
    stack = true,
    close = true,
},

["electrocufftracker"] = {
    label = "Electro Cuff Tracker",
    weight = 1,
    stack = true,
    close = true,
},

["headbag"] = {
    label = "Head Bag",
    weight = 1,
    stack = true,
    close = true,
},

["rope"] = {
    label = "Rope",
    weight = 1,
    stack = true,
    close = true,
},

["mouthtape"] = {
    label = "Mouth Tape",
    weight = 1,
    stack = true,
    close = true,
},

Setup for QB Inventories

The best thing about these inventories is that their infrastructure is qb-inventory. That's why the installations are the same.

Place these items in items.lua in your inventories. (qb-inventory to qb-core/shared/items.lua)

Even though I'm handcuffed, I can raise my hands.

To prevent this, I'm making a small correction for those using qb. Open the qb-smallresources/client/handsup.lua file. Then replace this code

server.cfg

The server.cfg initialization order should be as follows.

ESX

QBCore

Last updated