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​
bathroom
- bathub
- box
- light
- mirror
- plant
- shelf
- shower
- sink
- tissue
- toilet
- towel
- washing_machine
bedroom
- bed
- bookshelf
- chair
- light
- mirror
- painting
- plant
- shelf
- sleeplamp
- wardrobe
- window
kitchen
- cabinets
- clock
- exhaust
- fridge
- plant
- shelf
- sink
- stove
- table
- table_dinner
living_room
- chair
- cupboard
- light
- painting
- plant
- shelf
- shelf_wall
- sofa
- table
- tv
- window
Steps​
- Add the subcategory within the category folder. Example
bcs_housing/furnitures/bathroom/shower.lua
- 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
}
}
- 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))
},