Skip to main content

Adding Furnitures

If you want to add more furniture on your own you can follow this guide.

Categories​

There are 5 main categories which includes

  • bathroom
  • bedroom
  • kitchen
  • living_room
  • others

Others you can add as many subcategories and can be custom.

For the first 4 categories you can add the subcategories based on these subcategories

Subcategories​

  1. bathroom

    • bathub
    • box
    • light
    • mirror
    • plant
    • shelf
    • shower
    • sink
    • tissue
    • toilet
    • towel
    • washing_machine
  2. bedroom

    • bed
    • bookshelf
    • chair
    • light
    • mirror
    • painting
    • plant
    • shelf
    • sleeplamp
    • wardrobe
    • window
  3. kitchen

    • cabinets
    • clock
    • exhaust
    • fridge
    • plant
    • shelf
    • sink
    • stove
    • table
    • table_dinner
  4. living_room

    • chair
    • cupboard
    • light
    • painting
    • plant
    • shelf
    • shelf_wall
    • sofa
    • table
    • tv
    • window

Steps​

  1. Add the subcategory within the category folder. Example bcs_housing/furnitures/bathroom/shower.lua
  2. Then inside the file you at minimum add this keys
return {
label = 'Bathroom', -- can be whatever you want
hidden = false, -- ONLY EFFECTIVE ON OTHERS CATEGORY, you can hide the furniture from the furniture shop
list = {
... -- this will be the furniture item
}
}
  1. Add the furniture item inside the list
{
label = "Locker",
model = "p_cs_locker_01_s",
price = 300,
-- slots = 10, -- This is optional (it will turn this furniture into a storage)
-- weight = 1000000 -- this is optional (it will turn this furniture into a storage))
},