Furniture System

Config.FurnitureSystem = true -- Masterswitch for furniture system

Config.FurnitureCommand = 'furnitures' -- Command to open furniture menu
Config.OptimizeFurnitures = true -- Whether to optimize furnitures (despawn when player is far away)
Config.FurnituresLimit = 30 -- Maximum number of furnitures that player can have in one apartment
Config.ReturnFurnituresInRented = true -- Whether to add furnitures to player's inventory when his rent expire
Config.Furnitures = {
    ["benches"] = {
        label = "Ławki",
        iconFamily = "si",
        icon = "SiBlockbench",
        items = {
            {
                model = "prop_cs_folding_chair_01",
                label = "Armchair",
                price = 150
            },
            {
                model = "p_yacht_chair_01_s",
                label = "Fotel 1",
                price = 200
            },
            {
                model = "p_ilev_p_easychair_s",
                label = "Fotel 2",
                price = 200
            },
            {
                model = "apa_mp_h_stn_chairarm_01",
                label = "Fotel 3",
                price = 200
            },
            {
                model = "apa_mp_h_stn_chairarm_02",
                label = "Fotel 4",
                price = 150
            },
            {
                model = "apa_mp_h_stn_chairarm_03",
                label = "Fotel 5",
                price = 150
            },
            {
                model = "apa_mp_h_stn_chairarm_09",
                label = "Fotel 6",
                price = 200
            },
            {
                model = "apa_mp_h_stn_chairarm_11",
                label = "Fotel 7",
                price = 150
            },
            {
                model = "apa_mp_h_stn_chairarm_12",
                label = "Fotel 8",
                price = 200
            },
            {
                model = "apa_mp_h_stn_chairarm_13",
                label = "Fotel 9",
                price = 250
            },
            {
                model = "apa_mp_h_stn_chairarm_23",
                label = "Fotel 10",
                price = 200
            },
            {
                model = "apa_mp_h_stn_chairarm_26",
                label = "Fotel 11",
                price = 250
            },
            {
                model = "prop_yacht_seat_03",
                label = "Fotel 12",
                price = 150
            },
            {
                model = "apa_mp_h_yacht_armchair_01",
                label = "Fotel 13",
                price = 200
            },
            {
                model = "apa_mp_h_yacht_armchair_04",
                label = "Fotel 14",
                price = 200
            },
            {
                model = "v_res_d_armchair",
                label = "Fotel 15",
                price = 100
            },
            {
                model = "v_res_fh_easychair",
                label = "Fotel 16",
                price = 100
            },
            {
                model = "v_res_jarmchair",
                label = "Fotel 17",
                price = 50
            },
            {
                model = "v_res_mp_stripchair",
                label = "Fotel 18",
                price = 100
            },
            {
                model = "prop_couch_sm2_07",
                label = "Fotel 19",
                price = 100
            },
            {
                model = "ex_prop_offchair_exec_04",
                label = "Fotel 20",
                price = 500
            },
            {
                model = "hei_heist_stn_chairarm_04",
                label = "Fotel 21",
                price = 250
            },
            {
                model = "hei_heist_stn_chairarm_06",
                label = "Fotel 22",
                price = 250
            },
            {
                model = "hei_heist_stn_chairstrip_01",
                label = "Fotel 23",
                price = 300
            }
        }
    }
}

Last updated