๐Ÿ†Items

๐Ÿ“ฆ Items

Item Configuration | Ready-to-Use for QB & OX Inventory ๐Ÿ› ๏ธ

FRKN-Camera comes with fully customizable items, including the Signal Cutter, used to disable or break surveillance cameras. You can easily add it to either QB-Inventory or OX-Inventory using the configurations below.


๐Ÿ“ QB-Inventory Item Config

signalcutter = {
    name = "signalcutter",
    label = "Signal Cutter",
    weight = 100,
    type = "item",
    image = "signalcutter.png",
    unique = true,
    useable = true,
    description = "Used to disrupt or disable camera systems."
}

โœ… Add this to your qb-core/shared/items.lua file. โœ… Ensure the image file signalcutter.png exists in your inventory images folder.


๐Ÿ“ OX-Inventory Item Config

For OX Inventory, use the following format inside your data/items.lua:

['signalcutter'] = {
    label = 'Signal Cutter',
    weight = 100,
    stack = false,
    close = true,
    description = 'Used to disrupt or disable camera systems.',
    client = {
        image = 'signalcutter.png'
    }
}

โœ… Place the signalcutter.png image inside your OX images directory (ox_inventory/web/images/items) โœ… Set stack = false to make it a unique-use tool (recommended)


๐ŸŽฏ Tips:

  • You can use metadata with signalcutter if you want to track serials or usage count

  • Rename item in the config if youโ€™re using a different internal name (e.g., "cutter_tool")

Last updated