Returns true or false depending if the inventory can carry the specified item.
The function checks for inventory weight and available slots.
exports.ox_inventory:CanCarryItem(inv, item, count, metadata)
- inv:
table
orstring
ornumber
- item
table
orstring
- Can be array of items.
- count:
number
- metadata?:
table
orstring
- If metadata is passed as string then
metadata.type
will be checked.
- If metadata is passed as string then
Example:
-- Checks if the player calling the event can carry 3 water items
if exports.ox_inventory:CanCarryItem(source, 'water', 3) then
-- Do stuff if can carry
else
-- Do stuff if can't carry
end