For the complete documentation index, see llms.txt. This page is also available as Markdown.

Upgrades

Edit rcore_housing/configs/config.upgrades.lua to set upgrade prices, level features, and per-level limits.

🧹 Cleaning

Config.Upgrades[PROPERTY_UPGRADES.CLEANING] = {
    price = 5000,
    label = 'Cleaning service',
    description = 'Hire a professional cleaning service to keep your property spotless',
    features = { 'No dirt spawns in your property', 'Always clean floors', 'No manual cleaning required' },
}

Single tier. Disables the dirt system on this property.

📷 Cameras

Three tiers controlling the max camera count and the security video filter applied to live feeds:

Level
Price
Max Cameras
Filter

1

4000

2

CAMERA_secuirity_FUZZ (modifier 0.5)

2

6000

4

Island_CCTV_ChannelFuzz (modifier 0.3)

3

8000

6

secret_camera (modifier 0.5)

🚨 Alarm

Config.Upgrades[PROPERTY_UPGRADES.ALARM] = {
    price = 4000,
    label = 'Alarm',
    description = 'Be notified when robber get into your house!',
}

Single tier. See security configuration for what the alarm actually triggers.

👁️ Peephole

Peephole is disabled for MLO interiors because there is no door to look through. Only SHELL and IPL properties can buy it.

🔐 Anti-Burglary Door

Three tiers that raise lockpick difficulty (see raid configuration for the matching minigame difficulty per level):

Level
Price
Description

1

5000

Basic reinforced door - 20% harder to lockpick.

2

8000

Advanced security door - 50% harder.

3

12000

Maximum security door - 100% harder.

🌱 Eco

Three tiers that discount utility bills:

Level
Price
Discount
Modifier

1

6000

10%

0.9

2

10000

20%

0.8

3

15000

40%

0.6

The modifier is multiplied against the property's utilities bill before it is charged.

Last updated