Items
Items
🔵 QBCore (in shared.lua
or item export):
v_res_fh_laundrybasket = {
name = "v_res_fh_laundrybasket",
label = "Laundry Basket",
weight = 100,
type = "item",
image = "v_res_fh_laundrybasket.png",
unique = false,
useable = false,
description = "A portable laundry basket."
},
washmachine = {
name = "washmachine",
label = "Dryer Machine",
weight = 200,
type = "item",
image = "washmachine.png",
unique = false,
useable = false,
description = "A rotating dryer machine used in setups."
},
v_res_fa_fan = {
name = "v_res_fa_fan",
label = "Fan 1",
weight = 50,
type = "item",
image = "v_res_fa_fan.png",
unique = false,
useable = false,
description = "Basic fan prop for cooling effects or props."
},
prop_aircon_s_04a = {
name = "prop_aircon_s_04a",
label = "Fan 2",
weight = 50,
type = "item",
image = "prop_aircon_s_04a.png",
unique = false,
useable = false,
description = "Wall-mounted cooling prop unit."
},
v_ret_fh_fanltonbas = {
name = "v_ret_fh_fanltonbas",
label = "Fan 4",
weight = 50,
type = "item",
image = "v_ret_fh_fanltonbas.png",
unique = false,
useable = false,
description = "Box fan, useful for workshop setups or decorative environments."
},
🟢 OX Inventory (in data/items.lua
):
['v_res_fh_laundrybasket'] = {
label = 'Laundry Basket',
weight = 100,
stack = true,
close = true,
description = 'A portable laundry basket.'
},
['washmachine'] = {
label = 'Dryer Machine',
weight = 200,
stack = true,
close = true,
description = 'A rotating dryer machine for your station.'
},
['v_res_fa_fan'] = {
label = 'Fan 1',
weight = 50,
stack = true,
close = true,
description = 'A household fan to cool down the room.'
},
['prop_aircon_s_04a'] = {
label = 'Fan 2',
weight = 50,
stack = true,
close = true,
description = 'Industrial fan unit.'
},
['v_ret_fh_fanltonbas'] = {
label = 'Fan 4',
weight = 50,
stack = true,
close = true,
description = 'Boxed fan for ventilation.'
},
Last updated