๐Ÿ‘œAdd Item

Add this item to your inventory Script

QB Based Inventory

If you are using qb based inventory then Navigate to qb-core/shared/items.lua and add this:

['cardoc'] = {
    ["name"] = "cardoc",
    ["label"] = "Vehicle Document",
    ["weight"] = 100,
    ["type"] = "item",
    ["image"] = "cardoc.png",
    ["unique"] = true,
    ["useable"] = false,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Document Paper of Vehicle Token"
}

OX Inventory

If you are using ox inventory then Navigate to ox_inventory/data/items.lua and add this:

['cardoc'] = {
    label = 'Vehicle Document',
    weight = 100,
    stack = false,
    description = "Document Paper of Vehicle Token"
},

Last updated